Skip to content

Commit

Permalink
Merge branch 'release-3.15.0' into live-docs
Browse files Browse the repository at this point in the history
Conflicts:
	build/model-sync-local/model-sync-local-coverage.js
  • Loading branch information
Ezequiel Rodriguez committed Feb 25, 2014
2 parents 33a9646 + 834026e commit 119faf6
Show file tree
Hide file tree
Showing 701 changed files with 11,882 additions and 4,117 deletions.
6 changes: 5 additions & 1 deletion .yeti.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"basedir": ".",
"glob": "**/tests/unit/*.html"
"glob": "**/tests/unit/*.html",
"coverageOptions": {
"instrument": false,
"query": "filter=coverage"
}
}
25 changes: 25 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ list of third party contributions to YUI.
[Handlebars.js](https://github.com/wycats/handlebars.js) by Yehuda Katz. It
is distributed with YUI under the terms of the MIT License below.

* **asap.js**: The timers component includes the Asap.js module by Kris Kowal.
It is distributed with YUI under the terms of the MIT License below.


Handlebars.js MIT License
-------------------------
Expand Down Expand Up @@ -118,3 +121,25 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Asap.js MIT License
-------------------
Copyright 2009–2013 Contributors. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The YUI source tree includes the following directories:

## Initial Setup

1. Fork the project on GitHub (https://github.com/yui/yui3).
1. Fork the project on GitHub (http://www.github.com/yui/yui3).
1. Clone the fork to your local environment for development.

## Do Good Stuff
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yui",
"version": "3.14.1",
"version": "3.15.0",
"devDependencies": {
"pure": "0.3.0"
}
Expand Down
2 changes: 1 addition & 1 deletion build/anim-curve/anim-curve-coverage.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/anim-curve/anim-curve-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ Y.Anim.behaviors.curve = {
* @for Anim
* @method getBezier
* @static
* @param {Array} points An array containing Bezier points
* @param {Number[]} points An array containing Bezier points
* @param {Number} t A number between 0 and 1 which is the basis for determining current position
* @return {Array} An array containing int x and y member data
* @return {Number[]} An array containing int x and y member data
*/
Y.Anim.getBezier = function(points, t) {
var n = points.length,
Expand Down
4 changes: 2 additions & 2 deletions build/anim-curve/anim-curve.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ Y.Anim.behaviors.curve = {
* @for Anim
* @method getBezier
* @static
* @param {Array} points An array containing Bezier points
* @param {Number[]} points An array containing Bezier points
* @param {Number} t A number between 0 and 1 which is the basis for determining current position
* @return {Array} An array containing int x and y member data
* @return {Number[]} An array containing int x and y member data
*/
Y.Anim.getBezier = function(points, t) {
var n = points.length,
Expand Down
4 changes: 2 additions & 2 deletions build/async-queue/async-queue-coverage.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion build/async-queue/async-queue-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ Y.extend(Queue, Y.EventTarget, {

if (!callback) {
/**
* Event fired after the last queued callback is executed.
* Event fired when there is no remaining callback in the running queue. Also fired after stop().
* @event complete
*/
this.fire('complete');
Expand Down Expand Up @@ -398,6 +398,12 @@ Y.extend(Queue, Y.EventTarget, {
// currenty running needs to call run() one more time for the 'complete'
// event to be fired.

// if stop is called from outside a callback, we need to explicitely call
// run() once again to fire the 'complete' event.
if (!this._executing) {
this.run();
}

return this;
},

Expand Down
2 changes: 1 addition & 1 deletion build/async-queue/async-queue-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 119faf6

Please sign in to comment.