blob: 3f043f8948860bfa9cea3e1daa1d078d3a29fc1f [file] [log] [blame]
Thomas Vachuska54dc3522015-09-09 00:11:45 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska54dc3522015-09-09 00:11:45 -07003 *
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/*
18 ONOS GUI -- DHCP Server View Module
19 */
20
21(function () {
22 'use strict';
23
24 // injected refs
25 var $log, $scope;
26
27 angular.module('ovDhcp', [])
28 .controller('OvDhcpCtrl',
29 ['$log', '$scope', 'TableBuilderService',
30
31 function (_$log_, _$scope_, tbs) {
32 $log = _$log_;
33 $scope = _$scope_;
34
35 function selCb($event, row) {
36 $log.debug('Got a click on:', row);
37 }
38
39 tbs.buildTable({
40 scope: $scope,
41 tag: 'dhcp',
42 selCb: selCb
43 });
44
45 $scope.$on('$destroy', function () {
46 $log.debug('OvDhcpCtrl has been destroyed');
47 });
48
49 $log.log('OvDhcpCtrl has been created');
50 }]);
51}());