vkiryukhin / vkBeautify

vkBeautify is a small, simple and powerfull javascript plugin to beautify XML, JSON, CSS and SQL text.
http://www.eslinstructor.net/vkbeautify/
Other
316 stars 97 forks source link

Removed window reference in library to enable usage with web workers #9

Open ratpik opened 9 years ago

ratpik commented 9 years ago

Just changing the way the library is globally available by removing window reference during initialization. My use case required me to offload some text processing to web workers which is a fairly common thing these days wherein large text is processed asynchronously. By removing the reference to window, this library can be used with web workers or any other context that breaks when the DOM is referenced.

ratpik commented 9 years ago

This closes issue #8