chiasm-project / chiasm

A browser based environment for interactive data visualizations.
MIT License
184 stars 27 forks source link

Rename chiasm/runtime to chiasm #25

Closed curran closed 9 years ago

curran commented 9 years ago

After separating out the server side code into a separate repository, the file "runtime.js" should be moved into the "main.js" file within the Chiasm RequireJS package. This way, users of the library will see

require(["chiasm"], function(Chiasm){
  var chiasm = Chiasm(someDiv);
});

rather than what it is currently:

require(["chiasm/runtime"], function(Runtime){
  var runtime = Runtime(someDiv);
});
curran commented 9 years ago

Done in 1f2ce4c002dc08a60865eb25a5cd8e8743470aa9