diff --git a/CHANGELOG.md b/CHANGELOG.md index d6273b066..9057af739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -523,7 +523,7 @@ - [#804](https://github.com/less/less.js/pull/804) Fix for unnamed parameters test fail & failing test for import-once (@jreading) - [#796](https://github.com/less/less.js/pull/796) fixed issue #795 (@comfuture) - [#268](https://github.com/less/less.js/pull/268) Implemented named arguments (@jamesfoster) - + ### v1.3.0 (2012-03-10) - [#673](https://github.com/less/less.js/pull/673) mocha found a couple global variable leaks. Here's the fix. (@andrewjstone) - [#634](https://github.com/less/less.js/pull/634) Add @media bubbling/nesting/merging (@NDMarcel) diff --git a/packages/less/src/less-browser/index.js b/packages/less/src/less-browser/index.js index d2ab24a77..d64c8f6ef 100644 --- a/packages/less/src/less-browser/index.js +++ b/packages/less/src/less-browser/index.js @@ -46,14 +46,14 @@ export default (window, options) => { return cloned; } - // only really needed for phantom - function bind(func, thisArg) { - const curryArgs = Array.prototype.slice.call(arguments, 2); - return function() { - const args = curryArgs.concat(Array.prototype.slice.call(arguments, 0)); - return func.apply(thisArg, args); - }; - } + // // only really needed for phantom + // function bind(func, thisArg) { + // const curryArgs = Array.prototype.slice.call(arguments, 2); + // return function() { + // const args = curryArgs.concat(Array.prototype.slice.call(arguments, 0)); + // return func.apply(thisArg, args); + // }; + // } function loadStyles(modifyVars) { const styles = document.getElementsByTagName('style');