I'm trying to import SlickGrid into my application...but its attaching itself to the window even though I'm using AMD to load the module
Is there a way to use the Shim configuration to avoid polluting the namespace. Another problem might be that SlickGrid dependencies will be looking for it in the global namespace.
Ideas would be great.
shim:
'grid/slick.core':
deps: ["jquery"]
'grid/slick.grid':
deps: ["jquery"]
'grid/jquery.event.drag-2.0.min':
deps: ["jquery"]
'grid/jquery.event.drop-2.0.min':
deps: ["jquery"]
define [
"grid/jquery.event.drag-2.0.min"
"grid/jquery.event.drop-2.0.min"
"grid/slick.core"
"grid/slick.grid"
], () ->
There is my current Shim config as well as a module I'm using the grid in