diff --git a/README.md b/README.md index 8f94a3bbb..131e7a8e2 100644 --- a/README.md +++ b/README.md @@ -71,29 +71,29 @@ Things might work in Edge 15-18, Firefox 47-62 and Chrome 54-68 due to one polyf |js/* |1.14.0 |native |gzip 1.14 |gzip | |----------- |--------: |--------: |--------: |--------: | -|admin.js |2.130.942 |1.220.345 | 485.481 | 299.073 | -|app.js |4.184.455 |2.984.455 | 932.725 | 697.869 | -|boot.js | 671.522 | 94.230 | 169.502 | 28.386 | +|admin.js |2.130.942 |1.218.984 | 485.481 | 298.296 | +|app.js |4.184.455 |2.967.562 | 932.725 | 692.269 | +|boot.js | 671.522 | 94.230 | 169.502 | 28.385 | |libs.js | 647.614 | 507.015 | 194.728 | 153.918 | |polyfills.js | 325.834 | 0 | 71.825 | 0 | -|TOTAL js |7.960.367 |4.806.045 |1.854.261 |1.179.246 | +|TOTAL js |7.960.367 |4.787.791 |1.854.261 |1.172.868 | |js/min/* |1.14.0 |native |gzip 1.14 |gzip | |--------------- |--------: |--------: |--------: |--------: | -|admin.min.js | 252.147 | 157.387 | 73.657 | 45.136 | -|app.min.js | 511.202 | 389.269 |140.462 |102.945 | -|boot.min.js | 66.007 | 11.575 | 22.567 | 4.461 | +|admin.min.js | 252.147 | 157.158 | 73.657 | 45.007 | +|app.min.js | 511.202 | 385.507 |140.462 |101.762 | +|boot.min.js | 66.007 | 11.575 | 22.567 | 4.463 | |libs.min.js | 572.545 | 464.161 |176.720 |143.916 | |polyfills.min.js | 32.452 | 0 | 11.312 | 0 | -|TOTAL js/min |1.434.353 |1.022.392 |424.718 |296.458 | +|TOTAL js/min |1.434.353 |1.018.401 |424.718 |295.148 | 411.755 bytes (128.260 gzip) is not much, but it feels faster. |css/* |1.14.0 |native | |-------------- |--------: |--------: | -|app.css | 340.334 | 292.608 | -|app.min.css | 274.791 | 231.864 | +|app.css | 340.334 | 292.716 | +|app.min.css | 274.791 | 231.956 | ### PHP73 branch diff --git a/dev/View/Popup/AdvancedSearch.js b/dev/View/Popup/AdvancedSearch.js index d4748a9c1..c67152be0 100644 --- a/dev/View/Popup/AdvancedSearch.js +++ b/dev/View/Popup/AdvancedSearch.js @@ -121,7 +121,6 @@ class AdvancedSearchPopupView extends AbstractViewNext { if (-1 < this.selectedDateValue()) { let d = new Date(), pad2 = v => 10 > v ? '0' + v : v; d.setDate(d.getDate() - this.selectedDateValue()); -// d.format('Y.m.d'); result.push('date:' + d.getFullYear()+'.'+pad2(d.getMonth()+1)+'.'+pad2(d.getDate()) + '/'); } diff --git a/vendors/jquery-ui/js/jquery-ui-1.12.1.custom.js b/vendors/jquery-ui/js/jquery-ui-1.12.1.custom.js index a5cfc8081..d60f492d9 100644 --- a/vendors/jquery-ui/js/jquery-ui-1.12.1.custom.js +++ b/vendors/jquery-ui/js/jquery-ui-1.12.1.custom.js @@ -257,13 +257,13 @@ $.widget.bridge = function( name, object ) { } if ( !instance ) { - return $.error( "cannot call methods on " + name + + throw new Error( "cannot call methods on " + name + " prior to initialization; " + "attempted to call method '" + options + "'" ); } if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) { - return $.error( "no such method '" + options + "' for " + name + + throw new Error( "no such method '" + options + "' for " + name + " widget instance" ); }