Created
February 26, 2012 19:28
-
-
Save hughfdjackson/1918471 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
void function(root){ | |
function georender(can, obj){ | |
renderFunctions[obj.type](can,obj); | |
} | |
var renderFunctions = georender.fn = { | |
// handle actual rendering here | |
point: function(can, obj){}, | |
circle: function(can, obj{}, | |
poly: function(can, obj){} | |
}; | |
// export georender | |
root['georender'] = georender | |
}(this) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment