0

see this fiddle. This upon running gives an error in console. I'm currently on chrome. Is this a bug?

doing require(["dijit/tree" ] should load .../digit/tree.js but it gives a 404

GET http://ajax.googleapis.com/ajax/libs/dojo/1.7.2/dijit//tree.js 404 (Not Found)   

there should be only one / but there are two!

prongs
  • 9,422
  • 21
  • 67
  • 105

1 Answers1

1

You need to capitalize tree

require(["dijit/Tree"]
Craig Swing
  • 8,152
  • 2
  • 30
  • 43
  • I'm accepting this because I meanwhile found an alternate way so didn't try this, I'm assuming it's correct – prongs Jun 26 '12 at 16:58