Skip to content

Commit 9992d46

Browse files
committed
Merge branch 'master' into selectmenu
2 parents ab72fd1 + fe9f6ca commit 9992d46

50 files changed

Lines changed: 389 additions & 387 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- "0.8"
4+
before_script:
5+
- npm install -g grunt-cli

AUTHORS.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,8 @@ Zaven Muradyan <megalivoithos@gmail.com>
243243
Woody Gilk <shadowhand@deviantart.com>
244244
Zbigniew Motyka <zbigniew.motyka@gmail.com>
245245
Suhail Alkowaileet <xsoh.k7@gmail.com>
246+
Toshi MARUYAMA <marutosijp2@yahoo.co.jp>
247+
David Hansen <hansede@gmail.com>
248+
Brian Grinstead <briangrinstead@gmail.com>
249+
Christian Klammer <christian314159@gmail.com>
250+
Steven Luscher <jquerycla@steveluscher.com>

build/effect.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,23 @@
2323
"highlight": {
2424
"description": "Highlights the background of an element in a defined color for a custom duration."
2525
},
26+
"puff": {
27+
"dependencies": [ "effect-scale" ],
28+
"description": "Creates a puff effect by scaling the element up and hiding it at the same time."
29+
},
2630
"pulsate": {
2731
"description": "Pulsates an element n times by changing the opacity to zero and back."
2832
},
2933
"scale": {
34+
"dependencies": [ "effect-size" ],
3035
"description": "Grows or shrinks an element and its content. Restores an elemnt to its original size."
3136
},
3237
"shake": {
3338
"description": "Shakes an element horizontally or vertically n times."
3439
},
40+
"size": {
41+
"description": "Resize an element to a specified width and height."
42+
},
3543
"slide": {
3644
"description": "Slides an element in and out of the viewport."
3745
}

demos/addClass/index.html

Lines changed: 0 additions & 14 deletions
This file was deleted.

demos/animate/index.html

Lines changed: 0 additions & 14 deletions
This file was deleted.

demos/effect/default.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
<script src="../../ui/jquery.ui.effect-fade.js"></script>
1515
<script src="../../ui/jquery.ui.effect-fold.js"></script>
1616
<script src="../../ui/jquery.ui.effect-highlight.js"></script>
17+
<script src="../../ui/jquery.ui.effect-puff.js"></script>
1718
<script src="../../ui/jquery.ui.effect-pulsate.js"></script>
1819
<script src="../../ui/jquery.ui.effect-scale.js"></script>
1920
<script src="../../ui/jquery.ui.effect-shake.js"></script>
21+
<script src="../../ui/jquery.ui.effect-size.js"></script>
2022
<script src="../../ui/jquery.ui.effect-slide.js"></script>
2123
<script src="../../ui/jquery.ui.effect-transfer.js"></script>
2224
<link rel="stylesheet" href="../demos.css">

demos/effect/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@
99
<ul>
1010
<li><a href="default.html">Effect showcase</a></li>
1111
<li><a href="easing.html">Easing showcase</a></li>
12+
<li><a href="addClass.html">.addClass()</a></li>
13+
<li><a href="animate.html">.animate()</a></li>
14+
<li><a href="hide.html">.hide()</a></li>
15+
<li><a href="removeClass.html">.removeClass()</a></li>
16+
<li><a href="show.html">.show()</a></li>
17+
<li><a href="switchClass.html">.switchClass()</a></li>
18+
<li><a href="toggle.html">.toggle()</a></li>
19+
<li><a href="toggleClass.html">.toggleClass()</a></li>
1220
</ul>
1321

1422
</body>

0 commit comments

Comments
 (0)