diff options
author | Stefan Parviainen <saparvia@caterva.eu> | 2015-01-05 20:27:01 +0100 |
---|---|---|
committer | Stefan Parviainen <saparvia@caterva.eu> | 2015-01-05 20:27:01 +0100 |
commit | 749aef7172f938019321ec1d43d65ab8d2a34cca (patch) | |
tree | 6de19a009f285627efc84fa527528c1d60c73a7b /library/colorpicker/js/eye.js | |
parent | b320b8cbf35e84df76e236a7bc2cbd53047e4654 (diff) | |
download | volse-hubzilla-749aef7172f938019321ec1d43d65ab8d2a34cca.tar.gz volse-hubzilla-749aef7172f938019321ec1d43d65ab8d2a34cca.tar.bz2 volse-hubzilla-749aef7172f938019321ec1d43d65ab8d2a34cca.zip |
Remove some unneeded libraries
Diffstat (limited to 'library/colorpicker/js/eye.js')
-rw-r--r-- | library/colorpicker/js/eye.js | 34 |
1 files changed, 0 insertions, 34 deletions
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);
|