Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add npm test for wercker
- Loading branch information
Showing
with
8 additions
and
3 deletions.
-
+5
−3
build/framer.js
-
+3
−0
package.json
|
|
@@ -1,7 +1,7 @@ |
|
|
// Framer 2.0-12-g2322236 (c) 2013 Koen Bok |
|
|
// Framer 2.0-13-g150f969 (c) 2013 Koen Bok |
|
|
// https://github.com/koenbok/Framer |
|
|
|
|
|
window.FramerVersion = "2.0-12-g2322236"; |
|
|
window.FramerVersion = "2.0-13-g150f969"; |
|
|
|
|
|
|
|
|
(function(){var require = function (file, cwd) { |
|
@@ -4064,14 +4064,16 @@ require.define("/src/animation.coffee",function(require,module,exports,__dirname |
|
|
|
|
|
Animation.prototype.stop = function() { |
|
|
if (this.debug) { |
|
|
return console.log("Animation[" + this.animationId + "].stop " + this.animationName); |
|
|
console.log("Animation[" + this.animationId + "].stop " + this.animationName); |
|
|
} |
|
|
return this._cleanup(false); |
|
|
}; |
|
|
|
|
|
Animation.prototype._finalize = function() { |
|
|
if (this.debug) { |
|
|
console.log("Animation[" + this.animationId + "].end " + this.animationName); |
|
|
} |
|
|
this._cleanup(true); |
|
|
return typeof callback === "function" ? callback() : void 0; |
|
|
}; |
|
|
|
|
|
|
@@ -7,6 +7,9 @@ |
|
|
"type": "git", |
|
|
"url": "https://github.com/koenbok/Framer.git" |
|
|
}, |
|
|
"scripts": { |
|
|
"test": "make test" |
|
|
}, |
|
|
"dependencies": { |
|
|
"underscore": "1.x", |
|
|
"browserify": "1.x", |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.