Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update to version 1.13.3 + dartsass-rails ready#153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
dima4p wants to merge4 commits intojquery-ui-rails:master
base:master
Choose a base branch
Loading
fromdima4p:master
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletionsRakefile
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -221,11 +221,10 @@ task :stylesheets => :submodule do
# Be cute: collapse multiple require comment blocks into one
source_code.gsub!(/^( \*= require .*)\n \*\/(\n+)\/\*\n(?= \*= require )/, '\1\2')
source_code.gsub!(/\A(\/\*!.+?\*\/\s)/m, "\\1\n/*\n#{build_image_dependencies(source_code)} */\n\n") unless build_image_dependencies(source_code).empty?
#Replace hard-codedimage URLs with asset path helpers
#Fiximage URLs
image_re = /url\("?images\/([-_.a-zA-Z0-9]+)"?\)/
extname = source_code =~ image_re ? ".erb" : ""
source_code.gsub!(image_re, 'url(<%= image_path("jquery-ui/\1") %>)')
File.open("#{target_ui_dir}/#{basename}#{extname}", "w") do |out|
source_code.gsub!(image_re, 'url("jquery-ui/\1")')
File.open("#{target_ui_dir}/#{basename}", "w") do |out|
out.write(source_code)
end
end
Expand Down
1 change: 1 addition & 0 deletionsVERSIONS.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,7 @@

| Gem | jQuery UI |
|--------|-----------|
| 7.0.3 | 1.13.3 |
| 7.0.0 | 1.13.0 |
| 6.0.1 | 1.12.1 |
| 6.0.0 | 1.12.1 |
Expand Down
10 changes: 5 additions & 5 deletionsapp/assets/javascripts/jquery-ui/data.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
//= require jquery-ui/version

/*!
* jQuery UI :data 1.13.0
*http://jqueryui.com
* jQuery UI :data 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
10 changes: 5 additions & 5 deletionsapp/assets/javascripts/jquery-ui/disable-selection.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
//= require jquery-ui/version

/*!
* jQuery UI Disable Selection 1.13.0
*http://jqueryui.com
* jQuery UI Disable Selection 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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 ) {
Expand Down
18 changes: 9 additions & 9 deletionsapp/assets/javascripts/jquery-ui/effect.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,21 +3,21 @@
//= require jquery-ui/version

/*!
* jQuery UI Effects 1.13.0
*http://jqueryui.com
* jQuery UI Effects 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS Foundation and other contributors
* Released under the MIT license.
*http://jquery.org/license
*https://jquery.org/license
*/

//>>label: Effects Core
//>>group: Effects
/* 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";
Expand DownExpand Up@@ -406,7 +406,7 @@ if ( $.uiBackCompat !== false ) {
}

$.extend( $.effects, {
version: "1.13.0",
version: "1.13.3",

define: function( name, mode, effect ) {
if ( !effect ) {
Expand DownExpand Up@@ -529,7 +529,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" ),
Expand DownExpand Up@@ -923,7 +923,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 = {};

Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-blind.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Blind 1.13.0
*http://jqueryui.com
* jQuery UI Effects Blind 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-bounce.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Bounce 1.13.0
*http://jqueryui.com
* jQuery UI Effects Bounce 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-clip.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Clip 1.13.0
*http://jqueryui.com
* jQuery UI Effects Clip 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-drop.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Drop 1.13.0
*http://jqueryui.com
* jQuery UI Effects Drop 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-explode.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,21 +2,21 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Explode 1.13.0
*http://jqueryui.com
* jQuery UI Effects Explode 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS Foundation and other contributors
* Released under the MIT license.
*http://jquery.org/license
*https://jquery.org/license
*/

//>>label: Explode Effect
//>>group: Effects
/* 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-fade.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Fade 1.13.0
*http://jqueryui.com
* jQuery UI Effects Fade 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-fold.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Fold 1.13.0
*http://jqueryui.com
* jQuery UI Effects Fold 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-highlight.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Highlight 1.13.0
*http://jqueryui.com
* jQuery UI Effects Highlight 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-puff.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -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.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
12 changes: 6 additions & 6 deletionsapp/assets/javascripts/jquery-ui/effects/effect-pulsate.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,19 +2,19 @@
//= require jquery-ui/effect

/*!
* jQuery UI Effects Pulsate 1.13.0
*http://jqueryui.com
* jQuery UI Effects Pulsate 1.13.3
*https://jqueryui.com
*
* CopyrightjQuery Foundation and other contributors
* CopyrightOpenJS 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";
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp