Skip to content

Commit

Permalink
Fix for a problem where widgetManager is only called for the first el…
Browse files Browse the repository at this point in the history
…ement in the jquery context.
  • Loading branch information
mworrell committed Apr 12, 2011
1 parent 5f9be4e commit 20babd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/mod_base/lib/js/apps/z.widgetmanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ limitations under the License.

$.fn.widgetManager = function()
{
$.widgetManager(this[0]);
this.each(function() { $.widgetManager(this); });
return this;
};

})(jQuery);

0 comments on commit 20babd6

Please sign in to comment.