Skip to content

Commit

Permalink
Updated YUI to version 0.12.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyshane committed Jan 8, 2007
1 parent a2f6a09 commit 464f76a
Show file tree
Hide file tree
Showing 81 changed files with 11,078 additions and 9,310 deletions.
1 change: 1 addition & 0 deletions lib/yui/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ from:

Added to Moodle 13 July 2006
Updated to YUI 0.12.0, 23 November 2006
Updated to YUI 0.12.1, 8 January 2007
3 changes: 3 additions & 0 deletions lib/yui/animation/README
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Animation Release Notes

*** version 0.12.1 ***
* minified version no longer strips line breaks

*** version 0.12.0 ***

* added boolean finish argument to Anim.stop()
Expand Down
8 changes: 4 additions & 4 deletions lib/yui/animation/animation-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 0.12.0
version: 0.12.1
*/

/**
Expand Down Expand Up @@ -640,6 +640,7 @@ YAHOO.util.Bezier = new function()

};
};
(function() {
/**
* Anim subclass for color transitions.
* <p>Usage: <code>var myAnim = new Y.ColorAnim(el, { backgroundColor: { from: '#FF0000', to: '#FFFFFF' } }, 1, Y.Easing.easeOut);</code> Color values can be specified with either 112233, #112233,
Expand All @@ -662,7 +663,6 @@ YAHOO.util.Bezier = new function()
* @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
* @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
*/
(function() {
YAHOO.util.ColorAnim = function(el, attributes, duration, method) {
YAHOO.util.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
};
Expand Down Expand Up @@ -1040,6 +1040,7 @@ YAHOO.util.Easing = {
}
};

(function() {
/**
* Anim subclass for moving elements along a path defined by the "points"
* member of "attributes". All "points" are arrays with x, y coordinates.
Expand All @@ -1063,7 +1064,6 @@ YAHOO.util.Easing = {
* @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
* @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
*/
(function() {
YAHOO.util.Motion = function(el, attributes, duration, method) {
if (el) { // dont break existing subclasses not using YAHOO.extend
YAHOO.util.Motion.superclass.constructor.call(this, el, attributes, duration, method);
Expand Down Expand Up @@ -1192,6 +1192,7 @@ YAHOO.util.Easing = {
return (typeof prop !== 'undefined');
};
})();
(function() {
/**
* Anim subclass for scrolling elements to a position defined by the "scroll"
* member of "attributes". All "scroll" members are arrays with x, y scroll positions.
Expand All @@ -1215,7 +1216,6 @@ YAHOO.util.Easing = {
* @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
* @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
*/
(function() {
YAHOO.util.Scroll = function(el, attributes, duration, method) {
if (el) { // dont break existing subclasses not using YAHOO.extend
YAHOO.util.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
Expand Down
51 changes: 50 additions & 1 deletion lib/yui/animation/animation-min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions lib/yui/animation/animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 0.12.0
version: 0.12.1
*/

/**
Expand Down Expand Up @@ -637,6 +637,7 @@ YAHOO.util.Bezier = new function()

};
};
(function() {
/**
* Anim subclass for color transitions.
* <p>Usage: <code>var myAnim = new Y.ColorAnim(el, { backgroundColor: { from: '#FF0000', to: '#FFFFFF' } }, 1, Y.Easing.easeOut);</code> Color values can be specified with either 112233, #112233,
Expand All @@ -659,7 +660,6 @@ YAHOO.util.Bezier = new function()
* @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
* @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
*/
(function() {
YAHOO.util.ColorAnim = function(el, attributes, duration, method) {
YAHOO.util.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
};
Expand Down Expand Up @@ -1036,6 +1036,7 @@ YAHOO.util.Easing = {
}
};

(function() {
/**
* Anim subclass for moving elements along a path defined by the "points"
* member of "attributes". All "points" are arrays with x, y coordinates.
Expand All @@ -1059,7 +1060,6 @@ YAHOO.util.Easing = {
* @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
* @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
*/
(function() {
YAHOO.util.Motion = function(el, attributes, duration, method) {
if (el) { // dont break existing subclasses not using YAHOO.extend
YAHOO.util.Motion.superclass.constructor.call(this, el, attributes, duration, method);
Expand Down Expand Up @@ -1188,6 +1188,7 @@ YAHOO.util.Easing = {
return (typeof prop !== 'undefined');
};
})();
(function() {
/**
* Anim subclass for scrolling elements to a position defined by the "scroll"
* member of "attributes". All "scroll" members are arrays with x, y scroll positions.
Expand All @@ -1211,7 +1212,6 @@ YAHOO.util.Easing = {
* @param {Number} duration (optional, defaults to 1 second) Length of animation (frames or seconds), defaults to time-based
* @param {Function} method (optional, defaults to YAHOO.util.Easing.easeNone) Computes the values that are applied to the attributes per frame (generally a YAHOO.util.Easing method)
*/
(function() {
YAHOO.util.Scroll = function(el, attributes, duration, method) {
if (el) { // dont break existing subclasses not using YAHOO.extend
YAHOO.util.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
Expand Down
6 changes: 6 additions & 0 deletions lib/yui/autocomplete/README
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
AutoComplete Release Notes

*** version 0.12.1 ***

* No longer trigger typeAhead feature when user is backspacing on input text.



*** version 0.12.0 ***

* The following constants must be defined as static class properties and are no longer
Expand Down
Loading

0 comments on commit 464f76a

Please sign in to comment.