Jian Meng

Results 3 issues of Jian Meng

The bellow in gl-util.js file code maybe wrong. ``` javascript loadedCallback(self); if(self.callback) { self.callback(self.texture); } ``` right one should be : ``` javascript if(self.callback) { self.callback(self.texture); } loadedCallback(self); ``` The...

Is there any plan to support web worker in noVNC? Currently, noVNC run in single javascript thread which do RFB protocol analysis, UI update, and keyboard listener works. This work...

feature
patchwelcome

In README, I see this: Set the location of the Wrangler tool: (default: "/usr/share/wrangler/") g:erlangWranglerPath Do you mean i add a line like this to ~/.vimrc. g:erlangWranglerPath = path/to/wrangler.