blob: ef6049c6be9c5d61129e452bf16f39c76b7feeaa [file] [log] [blame]
Simon Hunt737c89f2015-01-28 12:23:19 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 -- SVG -- Util Service
19 */
20
21/*
22 The SVG Util Service provides a miscellany of utility functions.
23 */
24
25(function () {
26 'use strict';
27
28 // injected references
29 var $log, fs;
30
31 angular.module('onosSvg')
32 .factory('SvgUtilService', ['$log', 'FnService',
33 function (_$log_, _fs_) {
34 $log = _$log_;
35 fs = _fs_;
36
37 function createDragBehavior() {
38 $log.warn('SvgUtilService: createDragBehavior -- To Be Implemented');
39 }
40
41 function loadGlow() {
42 $log.warn('SvgUtilService: loadGlow -- To Be Implemented');
43 }
44
45 function cat7() {
46 $log.warn('SvgUtilService: cat7 -- To Be Implemented');
47 }
48
49 return {
50 createDragBehavior: createDragBehavior,
51 loadGlow: loadGlow,
52 cat7: cat7
53 };
54 }]);
55}());