summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorshadlaws <shad@shadlaws.com>2013-02-23 18:57:54 +0100
committershadlaws <shad@shadlaws.com>2013-02-23 18:57:54 +0100
commit0b7f9ef7dd059e550240237f171a1431eacf29b5 (patch)
tree8136370b3e79520f2b8b6394bddd13bdcf7edee0 /lib
parent53e6df0b95e3abf58bf88f84b9d9bc68e25ca9a5 (diff)
#2012 - Clean up gallery.in_place_edit.js.
- removed extend similar to previous jQuery updates (doesn't work the same with jQuery 1.4+)
Diffstat (limited to 'lib')
-rw-r--r--lib/gallery.in_place_edit.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/gallery.in_place_edit.js b/lib/gallery.in_place_edit.js
index 5a815dac..48c86739 100644
--- a/lib/gallery.in_place_edit.js
+++ b/lib/gallery.in_place_edit.js
@@ -1,5 +1,7 @@
(function($) {
$.widget("ui.gallery_in_place_edit", {
+ options: {},
+
_init: function() {
var self = this;
this.element.click(function(event) {
@@ -68,8 +70,4 @@
});
}
});
-
- $.extend($.ui.gallery_in_place_edit, {
- defaults: {}
- });
})(jQuery);