From 749aef7172f938019321ec1d43d65ab8d2a34cca Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Mon, 5 Jan 2015 20:27:01 +0100 Subject: Remove some unneeded libraries --- library/colorpicker/js/eye.js | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 library/colorpicker/js/eye.js (limited to 'library/colorpicker/js/eye.js') diff --git a/library/colorpicker/js/eye.js b/library/colorpicker/js/eye.js deleted file mode 100644 index ea70e643f..000000000 --- a/library/colorpicker/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 v1.2.3