From 41d851644918b8a755ef4e6f7d1db447f53deab2 Mon Sep 17 00:00:00 2001 From: Arnavion Date: Sat, 10 Sep 2016 12:48:38 -0700 Subject: [PATCH] Fixed uglify script to not remove the wrong nodes when shuffling around the TS built-ins. --- build/uglify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/uglify.js b/build/uglify.js index 59e54d7..c0c354d 100644 --- a/build/uglify.js +++ b/build/uglify.js @@ -95,7 +95,7 @@ var Run = (function () { } insertionParent.splice(-1, 0, node); - this._toInsert.pop(); + this._toInsert.splice(i, 1); } }