blob: bdb3e671c8f541c3375c5f0fccecd7fbf493c5a1 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 Open Networking Laboratory
Simon Huntc2202d52014-12-16 13:30:15 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
Simon Huntdc6362a2014-12-18 19:55:23 -080018 ONOS GUI -- Masthead Module
Simon Huntc2202d52014-12-16 13:30:15 -080019 */
20(function () {
21 'use strict';
22
Simon Hunta11b4eb2015-01-28 16:20:50 -080023 // injected services
Simon Hunt86388b12015-01-09 14:23:26 -080024 var $log;
25
Simon Hunta11b4eb2015-01-28 16:20:50 -080026 // configuration
27 var mastHeight = 36;
28
Simon Hunt86388b12015-01-09 14:23:26 -080029 angular.module('onosMast', ['onosNav'])
30 .controller('MastCtrl', ['$log', 'NavService', function (_$log_, ns) {
31 var self = this;
32
33 $log = _$log_;
Simon Huntdc6362a2014-12-18 19:55:23 -080034
35 // initialize mast controller here...
36 self.radio = null;
37
Simon Hunt86388b12015-01-09 14:23:26 -080038 // delegate to NavService
39 self.toggleNav = function () {
40 ns.toggleNav();
41 };
42
Simon Huntdc6362a2014-12-18 19:55:23 -080043 $log.log('MastCtrl has been created');
Simon Hunta11b4eb2015-01-28 16:20:50 -080044 }])
45
46 // also define a service to allow lookup of mast height.
47 .factory('MastService', [function () {
48 return {
49 mastHeight: function () { return mastHeight; }
50 }
Simon Huntc2202d52014-12-16 13:30:15 -080051 }]);
52
53}());