Skip to content

Commit feb894c

Browse files
committed
Merge remote-tracking branch 'origin/dev'
2 parents 8ccddd8 + 866e017 commit feb894c

38 files changed

+12
-49
lines changed

History.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 2.2.4 - *April 14 2017*
2+
3+
* [Reverted adding 'use strict' to source files.](https://github.com/web-animations/web-animations-next/pull/124)
4+
15
### 2.2.3 - *April 13 2017*
26

37
* [Added HTML import targets.](https://github.com/web-animations/web-animations-js/pull/94)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "git",
66
"url": "https://github.com/web-animations/web-animations-js.git"
77
},
8-
"version": "2.2.3",
8+
"version": "2.2.4",
99
"keywords": [
1010
"animations",
1111
"polyfill"

src/animation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(shared, scope, testing) {
1716

1817
shared.sequenceNumber = 0;
@@ -192,6 +191,7 @@
192191
this._inEffect = false;
193192
this._idle = true;
194193
this._paused = false;
194+
this._isFinished = true;
195195
this._finishedFlag = true;
196196
this._currentTime = 0;
197197
this._startTime = null;

src/apply-preserving-inline-style.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
var styleAttributes = {

src/apply.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
scope.apply = function(element, property, value) {

src/box-handler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716
function consumeLengthPercentOrAuto(string) {
1817
return scope.consumeLengthOrPercent(string) || scope.consumeToken(/^auto/, string);

src/color-handler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
var canvas = document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas');

src/deprecation.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(shared) {
1716

1817
var silenced = {};

src/dev.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
var WEB_ANIMATIONS_TESTING = false;
1716
var webAnimationsTesting = null;

src/dimension-handler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
function parseDimension(unitRegExp, string) {

0 commit comments

Comments
 (0)