diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-10-15 11:36:42 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-10-15 11:36:42 +0000 |
commit | dee5e521ba626cb8412edb5cd3b02f4cd3de841f (patch) | |
tree | c2d1cf808aee16cd2327166cac5fefbdda7a9047 /ui | |
parent | fd1e9489280539ec1961ee2bcd3ea01adb1c740c (diff) | |
download | jquery-ui-dee5e521ba626cb8412edb5cd3b02f4cd3de841f.tar.gz jquery-ui-dee5e521ba626cb8412edb5cd3b02f4cd3de841f.zip |
core: fixed chaining in lazy loading mechanism
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.core.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/ui.core.js b/ui/ui.core.js index 41486529f..40776fa91 100644 --- a/ui/ui.core.js +++ b/ui/ui.core.js @@ -29,6 +29,8 @@ $.each( ("accordion,colorpicker,datepicker,dialog,draggable,droppable,magnifier, $.getScript(uiPath+'ui.'+name+'.js', function() { selector[name].apply(selector, args); }); + + return this; }; }); |