Created
June 2, 2009 00:53
-
-
Save henrypoydar/121914 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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