This README outlines the details of collaborating on this Ember addon.
git clone
this repositorynpm install
bower install
ember serve
- Visit your app at http://localhost:4200.
There are a number of callbacks that can be passed to the editor:
onBlockContentUpdatedLocally
: Receives a block withprevContent
andcontent
properties when a block's content was updated locally.onNewBlockInsertedLocally
: Receives an index and a new block object when a new block was inserted locally.onBlockDeletedLocally
: Receives an index and a block after the block was deleted locally.
To release a new version of CanvasEditor:
npm run version major|minor|patch
to increment the versiongit push origin master
to push the increment commitgit push origin master --tags
to push the increment tagnpm publish
to release to NPM
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://ember-cli.com/.