Skip to content

Commit aa16ee7

Browse files
author
daniel-lundin
committed
Bumped version
1 parent 4f4b045 commit aa16ee7

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Fast animations with Javascript and CSS transforms
1919
## Releases
2020
The initial release is out. Would love some feedback on things that can be improved. The release(and future ones) can be found in the release section
2121

22+
- **0.6.1** - Fixed UMD-build
2223
- **0.6.0** - ES6, test suite, life cycle events, new demos
2324
- **0.5.8** - Add new tweenable property scalePost/fromScalePost
2425
- **0.5.7** - Fix issues manual mode and spring easings

docs/snabbt.min.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "snabbt.js",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Fast animations with javascript and CSS-transforms",
55
"main": "snabbt.js",
66
"files": [

snabbt.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* snabbt.js Version: 0.6.1 Build date: 2015-12-12 (c) 2015 Daniel Lundin @license MIT */
12
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.snabbt = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
23
'use strict';
34
var utils = require('./utils.js');
@@ -484,8 +485,7 @@ var Engine = {
484485
var endState = stateFromOptions(options, previousState, false);
485486

486487
this.runningAnimations = this.runningAnimations.filter(function (animation) {
487-
var animationElement = animation[0];
488-
return element !== animationElement;
488+
return element !== animation[0];
489489
});
490490
var animation = Animation.createAnimation(startState, endState, options, this.transformProperty);
491491
return animation;

snabbt.min.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)