Ticket #5921 (closed bug: fixed)
Problem with JavaScriptPacker
| Reported by: | juergen.furrer | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.8.5 |
| Component: | [meta] ui.dev | Version: | 1.8.4 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
I hade some errors while packing the UI:
jquery.ui.core.js:
There is a whitespace that makes it impossible to pack the script finding after "module"
27: var proto = $.ui[ module ].prototype;
jquery.ui.tab.js:
Problem with the whitespace after "index"
606: load: function( index ) {
jquery.ui.resizable.js:
On line 598 is a semicolon missing
var _reset = function (exp) {
$(exp).each(function() {
var el = $(this);
// reset position for Opera - no need to verify it was changed
el.css({ position: el.data("resizable-alsoresize").position });
});
};
After removing these problems the JavaScriptPacker worked out of the box.
Change History
Note: See
TracTickets for help on using
tickets.


Thanks. Fixed in 04347e5.