From 18ff57a183ac141f70164be481ef703729bcdf0d Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Tue, 18 Aug 2015 19:22:46 -0700 Subject: js tests passing + eslint --- js/tests/unit/phantom.js | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'js/tests') diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js index 2791bd841..525aea002 100644 --- a/js/tests/unit/phantom.js +++ b/js/tests/unit/phantom.js @@ -76,29 +76,26 @@ // shoutout mdn: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind#Polyfill if (!Function.prototype.bind) { - Function.prototype.bind = function(oThis) { + Function.prototype.bind = function (oThis) { if (typeof this !== 'function') { // closest thing possible to the ECMAScript 5 // internal IsCallable function throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable'); } - var aArgs = Array.prototype.slice.call(arguments, 1), - fToBind = this, - fNOP = function() {}, - fBound = function() { - return fToBind.apply(this instanceof fNOP - ? this - : oThis, - aArgs.concat(Array.prototype.slice.call(arguments))); - }; + var aArgs = Array.prototype.slice.call(arguments, 1) + var fToBind = this + var FNOP = function () {} + var fBound = function () { + return fToBind.apply(this instanceof FNOP ? this : oThis, aArgs.concat(Array.prototype.slice.call(arguments))) + } if (this.prototype) { // native functions don't have a prototype - fNOP.prototype = this.prototype; + FNOP.prototype = this.prototype } - fBound.prototype = new fNOP(); + fBound.prototype = new FNOP() - return fBound; - }; + return fBound + } } -- cgit v1.2.3 From efae761c39905a7d36a710d236a987151c34314b Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Tue, 18 Aug 2015 19:42:27 -0700 Subject: fix dropdown js visual example --- js/tests/visual/dropdown.html | 120 ++++++++++++++++++++++-------------------- 1 file changed, 62 insertions(+), 58 deletions(-) (limited to 'js/tests') diff --git a/js/tests/visual/dropdown.html b/js/tests/visual/dropdown.html index f9df5d07e..5ade9dd18 100644 --- a/js/tests/visual/dropdown.html +++ b/js/tests/visual/dropdown.html @@ -22,68 +22,72 @@

Dropdown Bootstrap Visual Test

-