Nathan Rosquist

Results 6 comments of Nathan Rosquist

Also the use of Array.isArray in page.js necessitates the use of a polyfill below ie9. ``` javascript if(!Array.isArray) { Array.isArray = function (vArg) { return Object.prototype.toString.call(vArg) === "[object Array]"; };...

+1 I would also love to know (specifically ie8/ie9)

I would like to see this too.

for example: ``` :AICommand "Replace all '' with '' in lines 13 to 18" ``` would then do: ``` :13,18s///g Execute command? [y/N]: ``` Which would allow you to keep...