app/assets/javascripts/jqr-helpers.js in jqr-helpers-1.0.7 vs app/assets/javascripts/jqr-helpers.js in jqr-helpers-1.0.8

- old
+ new

@@ -205,10 +205,13 @@ function ujsLoadPlugins(event) { $('.ujs-date-picker', event.target).each(function() { var options = $(this).data('date-options'); $(this).datepicker(options); }); + $('.ujs-button-set', event.target).each(function() { + $(this).buttonset(); + }); $('.ujs-tab-container', event.target).each(function() { var options = $(this).data('tab-options'); options = $.extend(options, { beforeLoad: function(event, ui) { if (ui.tab.data('loaded')) { @@ -238,10 +241,10 @@ $(document).on('ajax:success', '.ujs-ajax', ujsAjaxSuccess); $(document).on('ajax:error', '.ujs-ajax', ujsAjaxError); $(document).on('click', '[data-ujs-confirm=true]', ujsConfirmClick); } else { - $(document).live('jrq.load', ujsLoadPlugins); + $('body').live('jqr.load', ujsLoadPlugins); $('.ujs-dialog').live('click', ujsDialogClick); $('.ujs-dialog-close, .ujs-dialog-x').live('click', ujsDialogCloseClick); $('.ujs-ajax').live('ajax:beforeSend', ujsAjaxBeforeSend); $('.ujs-ajax').live('ajax:success', ujsAjaxSuccess); $('.ujs-ajax').live('ajax:error', ujsAjaxError);