From e2aefda183de4f1c1256d97f7ce09f8bee5477db Mon Sep 17 00:00:00 2001 From: "Christopher Lott (cl778h)" Date: Tue, 9 May 2017 14:24:20 -0400 Subject: [ONAP-rebase] Rebase as 1.1.0-SNAPSHOT Consolidate into a single maven project; no more separate model and client jars. Change-Id: Ibbba982250b74c0dfd09ee1c65c0fb6c158dd632 Signed-off-by: Christopher Lott Signed-off-by: Christopher Lott (cl778h) --- .../src/main/webapp/static/fusion/sample/js/eye.js | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 dcae_dmaapbc_webapp/src/main/webapp/static/fusion/sample/js/eye.js (limited to 'dcae_dmaapbc_webapp/src/main/webapp/static/fusion/sample/js/eye.js') diff --git a/dcae_dmaapbc_webapp/src/main/webapp/static/fusion/sample/js/eye.js b/dcae_dmaapbc_webapp/src/main/webapp/static/fusion/sample/js/eye.js deleted file mode 100644 index 8a281dc..0000000 --- a/dcae_dmaapbc_webapp/src/main/webapp/static/fusion/sample/js/eye.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * - * Zoomimage - * Author: Stefan Petre www.eyecon.ro - * - */ -(function($){ - var EYE = window.EYE = function() { - var _registered = { - init: [] - }; - return { - init: function() { - $.each(_registered.init, function(nr, fn){ - fn.call(); - }); - }, - extend: function(prop) { - for (var i in prop) { - if (prop[i] != undefined) { - this[i] = prop[i]; - } - } - }, - register: function(fn, type) { - if (!_registered[type]) { - _registered[type] = []; - } - _registered[type].push(fn); - } - }; - }(); - $(EYE.init); -})(jQuery); -- cgit 1.2.3-korg