diff --git a/History.md b/History.md index 31e7fec..9811ba9 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,9 @@ # master +# 8.0.0 + +* Update to jQuery UI 1.14.1 + # 7.0.0 * Update to jQuery UI 1.13.0 diff --git a/VERSIONS.md b/VERSIONS.md index 5cf4d77..f9d7d53 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -2,6 +2,7 @@ | Gem | jQuery UI | |--------|-----------| +| 8.0.0 | 1.14.1 | | 7.0.0 | 1.13.0 | | 6.0.1 | 1.12.1 | | 6.0.0 | 1.12.1 | diff --git a/app/assets/javascripts/jquery-ui.js b/app/assets/javascripts/jquery-ui.js index ba93277..7e472de 100644 --- a/app/assets/javascripts/jquery-ui.js +++ b/app/assets/javascripts/jquery-ui.js @@ -1,19 +1,14 @@ -//= require jquery-ui/core //= require jquery-ui/data //= require jquery-ui/disable-selection //= require jquery-ui/effect //= require jquery-ui/focusable //= require jquery-ui/form-reset-mixin -//= require jquery-ui/form -//= require jquery-ui/ie //= require jquery-ui/jquery-patch //= require jquery-ui/jquery-var-for-color //= require jquery-ui/keycode //= require jquery-ui/labels //= require jquery-ui/plugin //= require jquery-ui/position -//= require jquery-ui/safe-active-element -//= require jquery-ui/safe-blur //= require jquery-ui/scroll-parent //= require jquery-ui/tabbable //= require jquery-ui/unique-id diff --git a/app/assets/javascripts/jquery-ui/core.js b/app/assets/javascripts/jquery-ui/core.js deleted file mode 100644 index 1832703..0000000 --- a/app/assets/javascripts/jquery-ui/core.js +++ /dev/null @@ -1,15 +0,0 @@ -//= require jquery-ui/data -//= require jquery-ui/disable-selection -//= require jquery-ui/focusable -//= require jquery-ui/form -//= require jquery-ui/ie -//= require jquery-ui/keycode -//= require jquery-ui/labels -//= require jquery-ui/jquery-patch -//= require jquery-ui/plugin -//= require jquery-ui/safe-active-element -//= require jquery-ui/safe-blur -//= require jquery-ui/scroll-parent -//= require jquery-ui/tabbable -//= require jquery-ui/unique-id -//= require jquery-ui/version diff --git a/app/assets/javascripts/jquery-ui/data.js b/app/assets/javascripts/jquery-ui/data.js index 46ea691..cca24b0 100644 --- a/app/assets/javascripts/jquery-ui/data.js +++ b/app/assets/javascripts/jquery-ui/data.js @@ -1,18 +1,18 @@ //= require jquery-ui/version /*! - * jQuery UI :data 1.13.0 - * http://jqueryui.com + * jQuery UI :data 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: :data Selector //>>group: Core //>>description: Selects elements which have data stored under the specified key. -//>>docs: http://api.jqueryui.com/data-selector/ +//>>docs: https://api.jqueryui.com/data-selector/ ( function( factory ) { "use strict"; @@ -30,16 +30,10 @@ "use strict"; return $.extend( $.expr.pseudos, { - data: $.expr.createPseudo ? - $.expr.createPseudo( function( dataName ) { - return function( elem ) { - return !!$.data( elem, dataName ); - }; - } ) : - - // Support: jQuery <1.8 - function( elem, i, match ) { - return !!$.data( elem, match[ 3 ] ); - } + data: $.expr.createPseudo( function( dataName ) { + return function( elem ) { + return !!$.data( elem, dataName ); + }; + } ) } ); } ); diff --git a/app/assets/javascripts/jquery-ui/disable-selection.js b/app/assets/javascripts/jquery-ui/disable-selection.js index f4561f6..ca7a453 100644 --- a/app/assets/javascripts/jquery-ui/disable-selection.js +++ b/app/assets/javascripts/jquery-ui/disable-selection.js @@ -1,18 +1,18 @@ //= require jquery-ui/version /*! - * jQuery UI Disable Selection 1.13.0 - * http://jqueryui.com + * jQuery UI Disable Selection 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: disableSelection //>>group: Core //>>description: Disable selection of text content within the set of matched elements. -//>>docs: http://api.jqueryui.com/disableSelection/ +//>>docs: https://api.jqueryui.com/disableSelection/ // This file is deprecated ( function( factory ) { diff --git a/app/assets/javascripts/jquery-ui/effect.js b/app/assets/javascripts/jquery-ui/effect.js index 711c7ae..6b7b02e 100644 --- a/app/assets/javascripts/jquery-ui/effect.js +++ b/app/assets/javascripts/jquery-ui/effect.js @@ -3,12 +3,12 @@ //= require jquery-ui/version /*! - * jQuery UI Effects 1.13.0 - * http://jqueryui.com + * jQuery UI Effects 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Effects Core @@ -16,8 +16,8 @@ /* eslint-disable max-len */ //>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects. /* eslint-enable max-len */ -//>>docs: http://api.jqueryui.com/category/effects-core/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/category/effects-core/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; @@ -85,26 +85,14 @@ function camelCase( string ) { function getElementStyles( elem ) { var key, len, - style = elem.ownerDocument.defaultView ? - elem.ownerDocument.defaultView.getComputedStyle( elem, null ) : - elem.currentStyle, + style = elem.ownerDocument.defaultView.getComputedStyle( elem ), styles = {}; - if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) { - len = style.length; - while ( len-- ) { - key = style[ len ]; - if ( typeof style[ key ] === "string" ) { - styles[ camelCase( key ) ] = style[ key ]; - } - } - - // Support: Opera, IE <9 - } else { - for ( key in style ) { - if ( typeof style[ key ] === "string" ) { - styles[ key ] = style[ key ]; - } + len = style.length; + while ( len-- ) { + key = style[ len ]; + if ( typeof style[ key ] === "string" ) { + styles[ camelCase( key ) ] = style[ key ]; } } @@ -129,15 +117,6 @@ function styleDifference( oldStyle, newStyle ) { return diff; } -// Support: jQuery <1.8 -if ( !$.fn.addBack ) { - $.fn.addBack = function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - }; -} - $.effects.animateClass = function( value, duration, easing, callback ) { var o = $.speed( duration, easing, callback ); @@ -277,7 +256,7 @@ if ( $.expr && $.expr.pseudos && $.expr.pseudos.animated ) { } )( $.expr.pseudos.animated ); } -if ( $.uiBackCompat !== false ) { +if ( $.uiBackCompat === true ) { $.extend( $.effects, { // Saves a set of properties in a data storage @@ -406,7 +385,7 @@ if ( $.uiBackCompat !== false ) { } $.extend( $.effects, { - version: "1.13.0", + version: "1.14.1", define: function( name, mode, effect ) { if ( !effect ) { @@ -529,7 +508,7 @@ $.extend( $.effects, { // Lock in margins first to account for form elements, which // will change margin if you explicitly set height - // see: http://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380 + // see: https://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380 // Support: Safari element.css( { marginTop: element.css( "marginTop" ), @@ -763,7 +742,7 @@ $.fn.extend( { // as toggle can be either show or hide depending on element state args.mode = modes.shift(); - if ( $.uiBackCompat !== false && !defaultMode ) { + if ( $.uiBackCompat === true && !defaultMode ) { if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) { // Call the core method to track "olddisplay" properly @@ -923,7 +902,7 @@ $.fx.step.clip = function( fx ) { ( function() { -// Based on easing equations from Robert Penner (http://www.robertpenner.com/easing) +// Based on easing equations from Robert Penner (http://robertpenner.com/easing) var baseEasings = {}; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-blind.js b/app/assets/javascripts/jquery-ui/effects/effect-blind.js index f442f01..b9002f6 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-blind.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-blind.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Blind 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Blind 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Blind Effect //>>group: Effects //>>description: Blinds the element. -//>>docs: http://api.jqueryui.com/blind-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/blind-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-bounce.js b/app/assets/javascripts/jquery-ui/effects/effect-bounce.js index 7325966..107ccb7 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-bounce.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-bounce.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Bounce 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Bounce 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Bounce Effect //>>group: Effects //>>description: Bounces an element horizontally or vertically n times. -//>>docs: http://api.jqueryui.com/bounce-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/bounce-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-clip.js b/app/assets/javascripts/jquery-ui/effects/effect-clip.js index c6653b2..d096d2c 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-clip.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-clip.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Clip 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Clip 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Clip Effect //>>group: Effects //>>description: Clips the element on and off like an old TV. -//>>docs: http://api.jqueryui.com/clip-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/clip-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-drop.js b/app/assets/javascripts/jquery-ui/effects/effect-drop.js index 963d5db..e84ee3b 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-drop.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-drop.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Drop 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Drop 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Drop Effect //>>group: Effects //>>description: Moves an element in one direction and hides it at the same time. -//>>docs: http://api.jqueryui.com/drop-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/drop-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-explode.js b/app/assets/javascripts/jquery-ui/effects/effect-explode.js index 5e2bd2d..b39f713 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-explode.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-explode.js @@ -2,12 +2,12 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Explode 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Explode 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Explode Effect @@ -15,8 +15,8 @@ /* eslint-disable max-len */ //>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness. /* eslint-enable max-len */ -//>>docs: http://api.jqueryui.com/explode-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/explode-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-fade.js b/app/assets/javascripts/jquery-ui/effects/effect-fade.js index f3be78b..ba4c3ee 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-fade.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-fade.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Fade 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Fade 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Fade Effect //>>group: Effects //>>description: Fades the element. -//>>docs: http://api.jqueryui.com/fade-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/fade-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-fold.js b/app/assets/javascripts/jquery-ui/effects/effect-fold.js index 2b04670..314fe9e 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-fold.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-fold.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Fold 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Fold 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Fold Effect //>>group: Effects //>>description: Folds an element first horizontally and then vertically. -//>>docs: http://api.jqueryui.com/fold-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/fold-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-highlight.js b/app/assets/javascripts/jquery-ui/effects/effect-highlight.js index 6de44cb..ad2d287 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-highlight.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-highlight.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Highlight 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Highlight 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Highlight Effect //>>group: Effects //>>description: Highlights the background of an element in a defined color for a custom duration. -//>>docs: http://api.jqueryui.com/highlight-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/highlight-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-puff.js b/app/assets/javascripts/jquery-ui/effects/effect-puff.js index 58550cc..a27dd6f 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-puff.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-puff.js @@ -3,19 +3,19 @@ //= require jquery-ui/effects/effect-scale /*! - * jQuery UI Effects Puff 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Puff 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Puff Effect //>>group: Effects //>>description: Creates a puff effect by scaling the element up and hiding it at the same time. -//>>docs: http://api.jqueryui.com/puff-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/puff-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-pulsate.js b/app/assets/javascripts/jquery-ui/effects/effect-pulsate.js index 112e831..7e9fbe0 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-pulsate.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-pulsate.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Pulsate 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Pulsate 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Pulsate Effect //>>group: Effects //>>description: Pulsates an element n times by changing the opacity to zero and back. -//>>docs: http://api.jqueryui.com/pulsate-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/pulsate-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-scale.js b/app/assets/javascripts/jquery-ui/effects/effect-scale.js index 828cb53..3f11fc8 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-scale.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-scale.js @@ -3,19 +3,19 @@ //= require jquery-ui/effects/effect-size /*! - * jQuery UI Effects Scale 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Scale 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Scale Effect //>>group: Effects //>>description: Grows or shrinks an element and its content. -//>>docs: http://api.jqueryui.com/scale-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/scale-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-shake.js b/app/assets/javascripts/jquery-ui/effects/effect-shake.js index 7fe519b..9857564 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-shake.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-shake.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Shake 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Shake 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Shake Effect //>>group: Effects //>>description: Shakes an element horizontally or vertically n times. -//>>docs: http://api.jqueryui.com/shake-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/shake-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-size.js b/app/assets/javascripts/jquery-ui/effects/effect-size.js index 6477053..269b420 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-size.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-size.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Size 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Size 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Size Effect //>>group: Effects //>>description: Resize an element to a specified width and height. -//>>docs: http://api.jqueryui.com/size-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/size-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-slide.js b/app/assets/javascripts/jquery-ui/effects/effect-slide.js index d971381..92e8018 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-slide.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-slide.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Slide 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Slide 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Slide Effect //>>group: Effects //>>description: Slides an element in and out of the viewport. -//>>docs: http://api.jqueryui.com/slide-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/slide-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/effects/effect-transfer.js b/app/assets/javascripts/jquery-ui/effects/effect-transfer.js index 4f5d80b..0ec494c 100644 --- a/app/assets/javascripts/jquery-ui/effects/effect-transfer.js +++ b/app/assets/javascripts/jquery-ui/effects/effect-transfer.js @@ -2,19 +2,19 @@ //= require jquery-ui/effect /*! - * jQuery UI Effects Transfer 1.13.0 - * http://jqueryui.com + * jQuery UI Effects Transfer 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Transfer Effect //>>group: Effects //>>description: Displays a transfer effect from one element to another. -//>>docs: http://api.jqueryui.com/transfer-effect/ -//>>demos: http://jqueryui.com/effect/ +//>>docs: https://api.jqueryui.com/transfer-effect/ +//>>demos: https://jqueryui.com/effect/ ( function( factory ) { "use strict"; @@ -36,7 +36,7 @@ "use strict"; var effect; -if ( $.uiBackCompat !== false ) { +if ( $.uiBackCompat === true ) { effect = $.effects.define( "transfer", function( options, done ) { $( this ).transfer( options, done ); } ); diff --git a/app/assets/javascripts/jquery-ui/focusable.js b/app/assets/javascripts/jquery-ui/focusable.js index 8114340..5fd3132 100644 --- a/app/assets/javascripts/jquery-ui/focusable.js +++ b/app/assets/javascripts/jquery-ui/focusable.js @@ -1,18 +1,18 @@ //= require jquery-ui/version /*! - * jQuery UI Focusable 1.13.0 - * http://jqueryui.com + * jQuery UI Focusable 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: :focusable Selector //>>group: Core //>>description: Selects elements which can be focused. -//>>docs: http://api.jqueryui.com/focusable-selector/ +//>>docs: https://api.jqueryui.com/focusable-selector/ ( function( factory ) { "use strict"; @@ -64,20 +64,10 @@ $.ui.focusable = function( element, hasTabindex ) { focusableIfVisible = hasTabindex; } - return focusableIfVisible && $( element ).is( ":visible" ) && visible( $( element ) ); + return focusableIfVisible && $( element ).is( ":visible" ) && + $( element ).css( "visibility" ) === "visible"; }; -// Support: IE 8 only -// IE 8 doesn't resolve inherit to visible/hidden for computed values -function visible( element ) { - var visibility = element.css( "visibility" ); - while ( visibility === "inherit" ) { - element = element.parent(); - visibility = element.css( "visibility" ); - } - return visibility === "visible"; -} - $.extend( $.expr.pseudos, { focusable: function( element ) { return $.ui.focusable( element, $.attr( element, "tabindex" ) != null ); diff --git a/app/assets/javascripts/jquery-ui/form-reset-mixin.js b/app/assets/javascripts/jquery-ui/form-reset-mixin.js index df8c38f..fc3c9ba 100644 --- a/app/assets/javascripts/jquery-ui/form-reset-mixin.js +++ b/app/assets/javascripts/jquery-ui/form-reset-mixin.js @@ -1,19 +1,18 @@ -//= require jquery-ui/form //= require jquery-ui/version /*! - * jQuery UI Form Reset Mixin 1.13.0 - * http://jqueryui.com + * jQuery UI Form Reset Mixin 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Form Reset Mixin //>>group: Core //>>description: Refresh input widgets when their form is reset -//>>docs: http://api.jqueryui.com/form-reset-mixin/ +//>>docs: https://api.jqueryui.com/form-reset-mixin/ ( function( factory ) { "use strict"; @@ -23,7 +22,6 @@ // AMD. Register as an anonymous module. define( [ "jquery", - "./form", "./version" ], factory ); } else { @@ -48,7 +46,7 @@ return $.ui.formResetMixin = { }, _bindFormResetHandler: function() { - this.form = this.element._form(); + this.form = $( this.element.prop( "form" ) ); if ( !this.form.length ) { return; } diff --git a/app/assets/javascripts/jquery-ui/form.js b/app/assets/javascripts/jquery-ui/form.js deleted file mode 100644 index 95b4783..0000000 --- a/app/assets/javascripts/jquery-ui/form.js +++ /dev/null @@ -1,25 +0,0 @@ -//= require jquery-ui/version - -( function( factory ) { - "use strict"; - - if ( typeof define === "function" && define.amd ) { - - // AMD. Register as an anonymous module. - define( [ "jquery", "./version" ], factory ); - } else { - - // Browser globals - factory( jQuery ); - } -} )( function( $ ) { -"use strict"; - -// Support: IE8 Only -// IE8 does not support the form attribute and when it is supplied. It overwrites the form prop -// with a string, so we need to find the proper form. -return $.fn._form = function() { - return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form ); -}; - -} ); diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ar-DZ.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ar-DZ.js index 8dc8059..2bcdf47 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ar-DZ.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ar-DZ.js @@ -20,8 +20,8 @@ datepicker.regional[ "ar-DZ" ] = { closeText: "إغلاق", - prevText: "<السابق", - nextText: "التالي>", + prevText: "السابق", + nextText: "التالي", currentText: "اليوم", monthNames: [ "جانفي", "فيفري", "مارس", "أفريل", "ماي", "جوان", "جويلية", "أوت", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ar.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ar.js index 31d7ee5..0776841 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ar.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ar.js @@ -20,8 +20,8 @@ datepicker.regional.ar = { closeText: "إغلاق", - prevText: "<السابق", - nextText: "التالي>", + prevText: "السابق", + nextText: "التالي", currentText: "اليوم", monthNames: [ "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-az.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-az.js index d02d356..8d59547 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-az.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-az.js @@ -17,8 +17,8 @@ datepicker.regional.az = { closeText: "Bağla", - prevText: "<Geri", - nextText: "İrəli>", + prevText: "Geri", + nextText: "İrəli", currentText: "Bugün", monthNames: [ "Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-be.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-be.js index 51ddd6e..125ed0f 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-be.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-be.js @@ -17,8 +17,8 @@ datepicker.regional.be = { closeText: "Зачыніць", - prevText: "←Папяр.", - nextText: "Наст.→", + prevText: "Папяр.", + nextText: "Наст.", currentText: "Сёньня", monthNames: [ "Студзень", "Люты", "Сакавік", "Красавік", "Травень", "Чэрвень", "Ліпень", "Жнівень", "Верасень", "Кастрычнік", "Лістапад", "Сьнежань" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-bg.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-bg.js index 0344de4..62be734 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-bg.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-bg.js @@ -1,5 +1,5 @@ /* Bulgarian initialisation for the jQuery UI date picker plugin. */ -/* Written by Stoyan Kyosev (http://svest.org). */ +/* Written by Stoyan Kyosev. */ ( function( factory ) { "use strict"; @@ -17,8 +17,8 @@ datepicker.regional.bg = { closeText: "затвори", - prevText: "<назад", - nextText: "напред>", + prevText: "назад", + nextText: "напред", nextBigText: ">>", currentText: "днес", monthNames: [ "Януари", "Февруари", "Март", "Април", "Май", "Юни", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-bs.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-bs.js index a5c145a..3ee9db4 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-bs.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-bs.js @@ -17,8 +17,8 @@ datepicker.regional.bs = { closeText: "Zatvori", - prevText: "<", - nextText: ">", + prevText: "Prethodno", + nextText: "Sljedeći", currentText: "Danas", monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-cs.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-cs.js index 201fac7..6e5552c 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-cs.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-cs.js @@ -17,8 +17,8 @@ datepicker.regional.cs = { closeText: "Zavřít", - prevText: "<Dříve", - nextText: "Později>", + prevText: "Dříve", + nextText: "Později", currentText: "Nyní", monthNames: [ "leden", "únor", "březen", "duben", "květen", "červen", "červenec", "srpen", "září", "říjen", "listopad", "prosinec" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-da.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-da.js index 90409c0..d2de755 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-da.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-da.js @@ -17,8 +17,8 @@ datepicker.regional.da = { closeText: "Luk", - prevText: "<Forrige", - nextText: "Næste>", + prevText: "Forrige", + nextText: "Næste", currentText: "I dag", monthNames: [ "Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-de-AT.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-de-AT.js index 814e74f..4a8b781 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-de-AT.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-de-AT.js @@ -18,8 +18,8 @@ datepicker.regional[ "de-AT" ] = { closeText: "Schließen", - prevText: "<Zurück", - nextText: "Vor>", + prevText: "Zurück", + nextText: "Vor", currentText: "Heute", monthNames: [ "Jänner", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-de.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-de.js index 5baf6d1..8a08ebf 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-de.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-de.js @@ -17,8 +17,8 @@ datepicker.regional.de = { closeText: "Schließen", - prevText: "<Zurück", - nextText: "Vor>", + prevText: "Zurück", + nextText: "Vor", currentText: "Heute", monthNames: [ "Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-el.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-el.js index 054a5e2..9716e41 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-el.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-el.js @@ -1,5 +1,5 @@ /* Greek (el) initialisation for the jQuery UI date picker plugin. */ -/* Written by Alex Cicovic (http://www.alexcicovic.com) */ +/* Written by Alex Cicovic (https://alexcicovic.com) */ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-eo.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-eo.js index 3867a62..08aa96e 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-eo.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-eo.js @@ -17,8 +17,8 @@ datepicker.regional.eo = { closeText: "Fermi", - prevText: "<Anta", - nextText: "Sekv>", + prevText: "Anta", + nextText: "Sekv", currentText: "Nuna", monthNames: [ "Januaro", "Februaro", "Marto", "Aprilo", "Majo", "Junio", "Julio", "Aŭgusto", "Septembro", "Oktobro", "Novembro", "Decembro" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-es.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-es.js index 9a74577..dbb1f0a 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-es.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-es.js @@ -17,8 +17,8 @@ datepicker.regional.es = { closeText: "Cerrar", - prevText: "<Ant", - nextText: "Sig>", + prevText: "Ant", + nextText: "Sig", currentText: "Hoy", monthNames: [ "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-eu.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-eu.js index 754a172..0de057c 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-eu.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-eu.js @@ -16,8 +16,8 @@ datepicker.regional.eu = { closeText: "Egina", - prevText: "<Aur", - nextText: "Hur>", + prevText: "Aur", + nextText: "Hur", currentText: "Gaur", monthNames: [ "urtarrila", "otsaila", "martxoa", "apirila", "maiatza", "ekaina", "uztaila", "abuztua", "iraila", "urria", "azaroa", "abendua" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js index 193a3dc..ac30752 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-fa.js @@ -18,8 +18,8 @@ datepicker.regional.fa = { closeText: "بستن", - prevText: "<قبلی", - nextText: "بعدی>", + prevText: "قبلی", + nextText: "بعدی", currentText: "امروز", monthNames: [ "ژانویه", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-fi.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-fi.js index dd4ca59..d355e9e 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-fi.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-fi.js @@ -17,8 +17,8 @@ datepicker.regional.fi = { closeText: "Sulje", - prevText: "«Edellinen", - nextText: "Seuraava»", + prevText: "Edellinen", + nextText: "Seuraava", currentText: "Tänään", monthNames: [ "Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kesäkuu", "Heinäkuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-fo.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-fo.js index f024ac6..d2ec9d7 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-fo.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-fo.js @@ -17,8 +17,8 @@ datepicker.regional.fo = { closeText: "Lat aftur", - prevText: "<Fyrra", - nextText: "Næsta>", + prevText: "Fyrra", + nextText: "Næsta", currentText: "Í dag", monthNames: [ "Januar", "Februar", "Mars", "Apríl", "Mei", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CH.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CH.js index b75c683..7221d14 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CH.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-fr-CH.js @@ -17,8 +17,8 @@ datepicker.regional[ "fr-CH" ] = { closeText: "Fermer", - prevText: "<Préc", - nextText: "Suiv>", + prevText: "Préc", + nextText: "Suiv", currentText: "Courant", monthNames: [ "janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-gl.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-gl.js index f3ebc46..27abb02 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-gl.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-gl.js @@ -17,8 +17,8 @@ datepicker.regional.gl = { closeText: "Pechar", - prevText: "<Ant", - nextText: "Seg>", + prevText: "Ant", + nextText: "Seg", currentText: "Hoxe", monthNames: [ "Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-he.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-he.js index c487e78..fbe3c40 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-he.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-he.js @@ -17,8 +17,8 @@ datepicker.regional.he = { closeText: "סגור", - prevText: "<הקודם", - nextText: "הבא>", + prevText: "הקודם", + nextText: "הבא", currentText: "היום", monthNames: [ "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-hr.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-hr.js index 23ea414..2898d5c 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-hr.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-hr.js @@ -17,8 +17,8 @@ datepicker.regional.hr = { closeText: "Zatvori", - prevText: "<", - nextText: ">", + prevText: "Prethodno", + nextText: "Sljedeći", currentText: "Danas", monthNames: [ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-hy.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-hy.js index 2cc74da..7d4da5a 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-hy.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-hy.js @@ -17,8 +17,8 @@ datepicker.regional.hy = { closeText: "Փակել", - prevText: "<Նախ.", - nextText: "Հաջ.>", + prevText: "Նախ.", + nextText: "Հաջ.", currentText: "Այսօր", monthNames: [ "Հունվար", "Փետրվար", "Մարտ", "Ապրիլ", "Մայիս", "Հունիս", "Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-id.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-id.js index 52f709c..17082e9 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-id.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-id.js @@ -1,5 +1,6 @@ /* Indonesian initialisation for the jQuery UI date picker plugin. */ /* Written by Deden Fathurahman (dedenf@gmail.com). */ +/* Fixed by Denny Septian Panggabean (xamidimura@gmail.com) */ ( function( factory ) { "use strict"; @@ -17,16 +18,16 @@ datepicker.regional.id = { closeText: "Tutup", - prevText: "<mundur", - nextText: "maju>", - currentText: "hari ini", + prevText: "Mundur", + nextText: "Maju", + currentText: "Hari ini", monthNames: [ "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "Nopember", "Desember" ], monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agus", "Sep", "Okt", "Nop", "Des" ], dayNames: [ "Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu" ], - dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "kam", "Jum", "Sab" ], - dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "jm", "Sb" ], + dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab" ], + dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "Jm", "Sb" ], weekHeader: "Mg", dateFormat: "dd/mm/yy", firstDay: 0, diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-is.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-is.js index 0ebffd3..c453fa4 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-is.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-is.js @@ -17,8 +17,8 @@ datepicker.regional.is = { closeText: "Loka", - prevText: "< Fyrri", - nextText: "Næsti >", + prevText: "Fyrri", + nextText: "Næsti ", currentText: "Í dag", monthNames: [ "Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-it-CH.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-it-CH.js index 8c6d105..73b7918 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-it-CH.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-it-CH.js @@ -17,8 +17,8 @@ datepicker.regional[ "it-CH" ] = { closeText: "Chiudi", - prevText: "<Prec", - nextText: "Succ>", + prevText: "Prec", + nextText: "Succ", currentText: "Oggi", monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-it.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-it.js index 0210e41..d1d4980 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-it.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-it.js @@ -17,8 +17,8 @@ datepicker.regional.it = { closeText: "Chiudi", - prevText: "<Prec", - nextText: "Succ>", + prevText: "Prec", + nextText: "Succ", currentText: "Oggi", monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ja.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ja.js index 404bbfd..95fa6fd 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ja.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ja.js @@ -17,8 +17,8 @@ datepicker.regional.ja = { closeText: "閉じる", - prevText: "<前", - nextText: "次>", + prevText: "前", + nextText: "次", currentText: "今日", monthNames: [ "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ka.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ka.js index fd740da..d347de8 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ka.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ka.js @@ -17,8 +17,8 @@ datepicker.regional.ka = { closeText: "დახურვა", - prevText: "< წინა", - nextText: "შემდეგი >", + prevText: "წინა", + nextText: "შემდეგი ", currentText: "დღეს", monthNames: [ "იანვარი", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-kk.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-kk.js index c40391d..20a8486 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-kk.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-kk.js @@ -17,8 +17,8 @@ datepicker.regional.kk = { closeText: "Жабу", - prevText: "<Алдыңғы", - nextText: "Келесі>", + prevText: "Алдыңғы", + nextText: "Келесі", currentText: "Бүгін", monthNames: [ "Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ky.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ky.js index e74c927..05dc5dd 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ky.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ky.js @@ -17,8 +17,8 @@ datepicker.regional.ky = { closeText: "Жабуу", - prevText: "<Мур", - nextText: "Кий>", + prevText: "Мур", + nextText: "Кий", currentText: "Бүгүн", monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-lt.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-lt.js index 279af0c..5f45734 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-lt.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-lt.js @@ -17,8 +17,8 @@ datepicker.regional.lt = { closeText: "Uždaryti", - prevText: "<Atgal", - nextText: "Pirmyn>", + prevText: "Atgal", + nextText: "Pirmyn", currentText: "Šiandien", monthNames: [ "Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-mk.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-mk.js index f7999ba..6f430e9 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-mk.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-mk.js @@ -17,8 +17,8 @@ datepicker.regional.mk = { closeText: "Затвори", - prevText: "<", - nextText: ">", + prevText: "Претходна", + nextText: "Следно", currentText: "Денес", monthNames: [ "Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ms.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ms.js index 344b768..4170519 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ms.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ms.js @@ -17,8 +17,8 @@ datepicker.regional.ms = { closeText: "Tutup", - prevText: "<Sebelum", - nextText: "Selepas>", + prevText: "Sebelum", + nextText: "Selepas", currentText: "hari ini", monthNames: [ "Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-nb.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-nb.js index b4fd237..19bb0bc 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-nb.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-nb.js @@ -17,8 +17,8 @@ datepicker.regional.nb = { closeText: "Lukk", - prevText: "«Forrige", - nextText: "Neste»", + prevText: "Forrige", + nextText: "Neste", currentText: "I dag", monthNames: [ "januar", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-nl-BE.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-nl-BE.js index ae57473..1b37288 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-nl-BE.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-nl-BE.js @@ -17,8 +17,8 @@ datepicker.regional[ "nl-BE" ] = { closeText: "Sluiten", - prevText: "←", - nextText: "→", + prevText: "Vorig", + nextText: "Volgende", currentText: "Vandaag", monthNames: [ "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-nl.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-nl.js index 19df79c..6ac5d07 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-nl.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-nl.js @@ -1,5 +1,5 @@ /* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */ -/* Written by Mathias Bynens */ +/* Written by Mathias Bynens */ ( function( factory ) { "use strict"; @@ -17,8 +17,8 @@ datepicker.regional.nl = { closeText: "Sluiten", - prevText: "←", - nextText: "→", + prevText: "Vorig", + nextText: "Volgende", currentText: "Vandaag", monthNames: [ "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-nn.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-nn.js index 967351c..5eccb4a 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-nn.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-nn.js @@ -17,8 +17,8 @@ datepicker.regional.nn = { closeText: "Lukk", - prevText: "«Førre", - nextText: "Neste»", + prevText: "Førre", + nextText: "Neste", currentText: "I dag", monthNames: [ "januar", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-no.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-no.js index 4b1b54f..becc8bf 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-no.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-no.js @@ -18,8 +18,8 @@ datepicker.regional.no = { closeText: "Lukk", - prevText: "«Forrige", - nextText: "Neste»", + prevText: "Forrige", + nextText: "Neste", currentText: "I dag", monthNames: [ "januar", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-pl.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-pl.js index 60f9fbb..4d31086 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-pl.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-pl.js @@ -17,8 +17,8 @@ datepicker.regional.pl = { closeText: "Zamknij", - prevText: "<Poprzedni", - nextText: "Następny>", + prevText: "Poprzedni", + nextText: "Następny", currentText: "Dziś", monthNames: [ "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-pt-BR.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-pt-BR.js index 1c84bf3..3c3984f 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-pt-BR.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-pt-BR.js @@ -17,8 +17,8 @@ datepicker.regional[ "pt-BR" ] = { closeText: "Fechar", - prevText: "<Anterior", - nextText: "Próximo>", + prevText: "Anterior", + nextText: "Próximo", currentText: "Hoje", monthNames: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-rm.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-rm.js index 439e8c8..4f150c5 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-rm.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-rm.js @@ -17,8 +17,8 @@ datepicker.regional.rm = { closeText: "Serrar", - prevText: "<Suandant", - nextText: "Precedent>", + prevText: "Suandant", + nextText: "Precedent", currentText: "Actual", monthNames: [ "Schaner", diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ro.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ro.js index f03ee15..60f56ae 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ro.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ro.js @@ -20,8 +20,8 @@ datepicker.regional.ro = { closeText: "Închide", - prevText: "« Luna precedentă", - nextText: "Luna următoare »", + prevText: "Luna precedentă", + nextText: "Luna următoare ", currentText: "Azi", monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-ru.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-ru.js index 61d1151..5a8b3b7 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-ru.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-ru.js @@ -17,8 +17,8 @@ datepicker.regional.ru = { closeText: "Закрыть", - prevText: "<Пред", - nextText: "След>", + prevText: "Пред", + nextText: "След", currentText: "Сегодня", monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-sk.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-sk.js index c28750c..826dfcb 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-sk.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-sk.js @@ -17,8 +17,8 @@ datepicker.regional.sk = { closeText: "Zavrieť", - prevText: "<Predchádzajúci", - nextText: "Nasledujúci>", + prevText: "Predchádzajúci", + nextText: "Nasledujúci", currentText: "Dnes", monthNames: [ "január", "február", "marec", "apríl", "máj", "jún", "júl", "august", "september", "október", "november", "december" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-sl.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-sl.js index 15aa9e4..4b329e2 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-sl.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-sl.js @@ -18,8 +18,8 @@ datepicker.regional.sl = { closeText: "Zapri", - prevText: "<Prejšnji", - nextText: "Naslednji>", + prevText: "Prejšnji", + nextText: "Naslednji", currentText: "Trenutni", monthNames: [ "Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-sq.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-sq.js index 470a030..9952fb1 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-sq.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-sq.js @@ -17,8 +17,8 @@ datepicker.regional.sq = { closeText: "mbylle", - prevText: "<mbrapa", - nextText: "Përpara>", + prevText: "mbrapa", + nextText: "Përpara", currentText: "sot", monthNames: [ "Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-sr-SR.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-sr-SR.js index 2b75c40..b28ceed 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-sr-SR.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-sr-SR.js @@ -17,8 +17,8 @@ datepicker.regional[ "sr-SR" ] = { closeText: "Zatvori", - prevText: "<", - nextText: ">", + prevText: "Prethodno", + nextText: "Sljedeći", currentText: "Danas", monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-sr.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-sr.js index c64069a..8b04d9b 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-sr.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-sr.js @@ -17,8 +17,8 @@ datepicker.regional.sr = { closeText: "Затвори", - prevText: "<", - nextText: ">", + prevText: "Претходна", + nextText: "Следећи", currentText: "Данас", monthNames: [ "Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-sv.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-sv.js index 6fe51e3..ee9296e 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-sv.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-sv.js @@ -17,8 +17,8 @@ datepicker.regional.sv = { closeText: "Stäng", - prevText: "«Förra", - nextText: "Nästa»", + prevText: "Förra", + nextText: "Nästa", currentText: "Idag", monthNames: [ "januari", "februari", "mars", "april", "maj", "juni", "juli", "augusti", "september", "oktober", "november", "december" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-th.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-th.js index 10c2833..41cef52 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-th.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-th.js @@ -17,8 +17,8 @@ datepicker.regional.th = { closeText: "ปิด", - prevText: "« ย้อน", - nextText: "ถัดไป »", + prevText: "ย้อน", + nextText: "ถัดไป", currentText: "วันนี้", monthNames: [ "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-tj.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-tj.js index bdc71f1..a3669da 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-tj.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-tj.js @@ -17,8 +17,8 @@ datepicker.regional.tj = { closeText: "Идома", - prevText: "<Қафо", - nextText: "Пеш>", + prevText: "Қафо", + nextText: "Пеш", currentText: "Имрӯз", monthNames: [ "Январ", "Феврал", "Март", "Апрел", "Май", "Июн", "Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-tr.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-tr.js index 220d66e..32eb3ed 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-tr.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-tr.js @@ -17,8 +17,8 @@ datepicker.regional.tr = { closeText: "kapat", - prevText: "<geri", - nextText: "ileri>", + prevText: "geri", + nextText: "ileri", currentText: "bugün", monthNames: [ "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-uk.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-uk.js index 0834628..c273fd6 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-uk.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-uk.js @@ -18,8 +18,8 @@ datepicker.regional.uk = { closeText: "Закрити", - prevText: "<", - nextText: ">", + prevText: "Попередній", + nextText: "найближчий", currentText: "Сьогодні", monthNames: [ "Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-vi.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-vi.js index e06b702..8664c4f 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-vi.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-vi.js @@ -17,8 +17,8 @@ datepicker.regional.vi = { closeText: "Đóng", - prevText: "<Trước", - nextText: "Tiếp>", + prevText: "Trước", + nextText: "Tiếp", currentText: "Hôm nay", monthNames: [ "Tháng Một", "Tháng Hai", "Tháng Ba", "Tháng Tư", "Tháng Năm", "Tháng Sáu", "Tháng Bảy", "Tháng Tám", "Tháng Chín", "Tháng Mười", "Tháng Mười Một", "Tháng Mười Hai" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-CN.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-CN.js index 8409290..a00553e 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-CN.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-CN.js @@ -17,8 +17,8 @@ datepicker.regional[ "zh-CN" ] = { closeText: "关闭", - prevText: "<上月", - nextText: "下月>", + prevText: "上月", + nextText: "下月", currentText: "今天", monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-HK.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-HK.js index 80d5c76..e61bf66 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-HK.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-HK.js @@ -17,8 +17,8 @@ datepicker.regional[ "zh-HK" ] = { closeText: "關閉", - prevText: "<上月", - nextText: "下月>", + prevText: "上月", + nextText: "下月", currentText: "今天", monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], diff --git a/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-TW.js b/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-TW.js index 9e79a45..f5e02a6 100644 --- a/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-TW.js +++ b/app/assets/javascripts/jquery-ui/i18n/datepicker-zh-TW.js @@ -17,8 +17,8 @@ datepicker.regional[ "zh-TW" ] = { closeText: "關閉", - prevText: "<上個月", - nextText: "下個月>", + prevText: "上個月", + nextText: "下個月", currentText: "今天", monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ], diff --git a/app/assets/javascripts/jquery-ui/ie.js b/app/assets/javascripts/jquery-ui/ie.js deleted file mode 100644 index a758a1b..0000000 --- a/app/assets/javascripts/jquery-ui/ie.js +++ /dev/null @@ -1,20 +0,0 @@ -//= require jquery-ui/version - -( function( factory ) { - "use strict"; - - if ( typeof define === "function" && define.amd ) { - - // AMD. Register as an anonymous module. - define( [ "jquery", "./version" ], factory ); - } else { - - // Browser globals - factory( jQuery ); - } -} )( function( $ ) { -"use strict"; - -// This file is deprecated -return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() ); -} ); diff --git a/app/assets/javascripts/jquery-ui/jquery-patch.js b/app/assets/javascripts/jquery-ui/jquery-patch.js index e86f70b..34fe8e1 100644 --- a/app/assets/javascripts/jquery-ui/jquery-patch.js +++ b/app/assets/javascripts/jquery-ui/jquery-patch.js @@ -1,18 +1,18 @@ //= require jquery-ui/version /*! - * jQuery UI Support for jQuery core 1.8.x and newer 1.13.0 - * http://jqueryui.com + * jQuery UI Legacy jQuery Core patches 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license * */ -//>>label: jQuery 1.8+ Support +//>>label: Legacy jQuery Core patches //>>group: Core -//>>description: Support version 1.8.x and newer of jQuery core +//>>description: Backport `.even()`, `.odd()` and `$.escapeSelector` to older jQuery Core versions (deprecated) ( function( factory ) { "use strict"; @@ -29,45 +29,12 @@ } )( function( $ ) { "use strict"; -// Support: jQuery 1.9.x or older -// $.expr[ ":" ] is deprecated. -if ( !$.expr.pseudos ) { - $.expr.pseudos = $.expr[ ":" ]; -} - -// Support: jQuery 1.11.x or older -// $.unique has been renamed to $.uniqueSort -if ( !$.uniqueSort ) { - $.uniqueSort = $.unique; -} - // Support: jQuery 2.2.x or older. // This method has been defined in jQuery 3.0.0. // Code from https://github.com/jquery/jquery/blob/e539bac79e666bba95bba86d690b4e609dca2286/src/selector/escapeSelector.js if ( !$.escapeSelector ) { - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; - - var fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }; - - $.escapeSelector = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); + $.escapeSelector = function( id ) { + return CSS.escape( id + "" ); }; } diff --git a/app/assets/javascripts/jquery-ui/keycode.js b/app/assets/javascripts/jquery-ui/keycode.js index a9bdecf..e2dfe97 100644 --- a/app/assets/javascripts/jquery-ui/keycode.js +++ b/app/assets/javascripts/jquery-ui/keycode.js @@ -1,18 +1,18 @@ //= require jquery-ui/version /*! - * jQuery UI Keycode 1.13.0 - * http://jqueryui.com + * jQuery UI Keycode 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: Keycode //>>group: Core //>>description: Provide keycodes as keynames -//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/ +//>>docs: https://api.jqueryui.com/jQuery.ui.keyCode/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/labels.js b/app/assets/javascripts/jquery-ui/labels.js index 6795b13..9f0aad5 100644 --- a/app/assets/javascripts/jquery-ui/labels.js +++ b/app/assets/javascripts/jquery-ui/labels.js @@ -1,18 +1,18 @@ //= require jquery-ui/version /*! - * jQuery UI Labels 1.13.0 - * http://jqueryui.com + * jQuery UI Labels 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license */ //>>label: labels //>>group: Core //>>description: Find all the labels associated with a given input -//>>docs: http://api.jqueryui.com/labels/ +//>>docs: https://api.jqueryui.com/labels/ ( function( factory ) { "use strict"; @@ -41,9 +41,8 @@ return $.fn.labels = function() { return this.pushStack( this[ 0 ].labels ); } - // Support: IE <= 11, FF <= 37, Android <= 2.3 only - // Above browsers do not support control.labels. Everything below is to support them - // as well as document fragments. control.labels does not work on document fragments + // If `control.labels` is empty - e.g. inside of document fragments - find + // the labels manually labels = this.eq( 0 ).parents( "label" ); // Look for the label based on the id @@ -58,7 +57,7 @@ return $.fn.labels = function() { ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() ); // Create a selector for the label based on the id - selector = "label[for='" + $.escapeSelector( id ) + "']"; + selector = "label[for='" + CSS.escape( id ) + "']"; labels = labels.add( ancestors.find( selector ).addBack( selector ) ); diff --git a/app/assets/javascripts/jquery-ui/position.js b/app/assets/javascripts/jquery-ui/position.js index 4724c22..d653932 100644 --- a/app/assets/javascripts/jquery-ui/position.js +++ b/app/assets/javascripts/jquery-ui/position.js @@ -1,21 +1,21 @@ //= require jquery-ui/version /*! - * jQuery UI Position 1.13.0 - * http://jqueryui.com + * jQuery UI Position 1.14.1 + * https://jqueryui.com * - * Copyright jQuery Foundation and other contributors + * Copyright OpenJS Foundation and other contributors * Released under the MIT license. - * http://jquery.org/license + * https://jquery.org/license * - * http://api.jqueryui.com/position/ + * https://api.jqueryui.com/position/ */ //>>label: Position //>>group: Core //>>description: Positions elements relative to other elements. -//>>docs: http://api.jqueryui.com/position/ -//>>demos: http://jqueryui.com/position/ +//>>docs: https://api.jqueryui.com/position/ +//>>demos: https://jqueryui.com/position/ ( function( factory ) { "use strict"; diff --git a/app/assets/javascripts/jquery-ui/safe-active-element.js b/app/assets/javascripts/jquery-ui/safe-active-element.js deleted file mode 100644 index 101fe1f..0000000 --- a/app/assets/javascripts/jquery-ui/safe-active-element.js +++ /dev/null @@ -1,46 +0,0 @@ -//= require jquery-ui/version - -( function( factory ) { - "use strict"; - - if ( typeof define === "function" && define.amd ) { - - // AMD. Register as an anonymous module. - define( [ "jquery", "./version" ], factory ); - } else { - - // Browser globals - factory( jQuery ); - } -} )( function( $ ) { -"use strict"; - -return $.ui.safeActiveElement = function( document ) { - var activeElement; - - // Support: IE 9 only - // IE9 throws an "Unspecified error" accessing document.activeElement from an