From d37ec3ddfd467f4b268086828440757133d0457e Mon Sep 17 00:00:00 2001 From: patdenice Date: Fri, 11 Feb 2011 15:57:04 +0000 Subject: Update jQuery to 1.5 and jQuery UI to 1.8.9 git-svn-id: http://piwigo.org/svn/trunk@9172 68402e56-0260-453c-a942-63ccdbb3a9ee --- themes/default/js/ui/effects.highlight.js | 48 ------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 themes/default/js/ui/effects.highlight.js (limited to 'themes/default/js/ui/effects.highlight.js') diff --git a/themes/default/js/ui/effects.highlight.js b/themes/default/js/ui/effects.highlight.js deleted file mode 100644 index 828d059ab..000000000 --- a/themes/default/js/ui/effects.highlight.js +++ /dev/null @@ -1,48 +0,0 @@ -/* - * jQuery UI Effects Highlight 1.7.2 - * - * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT (MIT-LICENSE.txt) - * and GPL (GPL-LICENSE.txt) licenses. - * - * http://docs.jquery.com/UI/Effects/Highlight - * - * Depends: - * effects.core.js - */ -(function($) { - -$.effects.highlight = function(o) { - - return this.queue(function() { - - // Create element - var el = $(this), props = ['backgroundImage','backgroundColor','opacity']; - - // Set options - var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode - var color = o.options.color || "#ffff99"; // Default highlight color - var oldColor = el.css("backgroundColor"); - - // Adjust - $.effects.save(el, props); el.show(); // Save & Show - el.css({backgroundImage: 'none', backgroundColor: color}); // Shift - - // Animation - var animation = {backgroundColor: oldColor }; - if (mode == "hide") animation['opacity'] = 0; - - // Animate - el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() { - if(mode == "hide") el.hide(); - $.effects.restore(el, props); - if (mode == "show" && $.browser.msie) this.style.removeAttribute('filter'); - if(o.callback) o.callback.apply(this, arguments); - el.dequeue(); - }}); - - }); - -}; - -})(jQuery); -- cgit v1.2.3