Skip to content

Instantly share code, notes, and snippets.

@henrypoydar
Created June 2, 2009 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henrypoydar/121914 to your computer and use it in GitHub Desktop.
Save henrypoydar/121914 to your computer and use it in GitHub Desktop.
// Code from processing-js that's failing in webkit only, FF runs it fine
function buildProcessing( curElement ){
// ...
var p = {};
p.import = function import(lib) {
//...
}
// ...
}
// A quick name change fixes it ...
function buildProcessing( curElement ){
// ...
var p = {};
p.importLibrary = function importLibrary(lib) {
//...
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment