ember-cli-sortable
ember-cli-sortable copied to clipboard
Ember CLI addon for RubaXa's sortable plugin
Maybe related to having Ember moved away from bower_components, but it's throwing this error: ``` Error: Cannot find module '/bower_components/ember/ember-template-compiler' ``` ``` at Class.module.exports.htmlbarsOptions (/node_modules/ember-cli-sortable/node_modules/ember-cli-htmlbars/ember-addon-main.js:70:25) ```
1. Upgraded the addon to version 2.12.3 2. Changed the index.js to include _findHost, so this addon can support ember-engine. 3. Replaced removeAt, insertAt methods with Array methods.
I have a situation where I want to make a list of images sortable. The collection of images is using `sortBy` to maintain order using a position property. This gets...
First off, thanks for converting this to Ember. I used this library outside of Ember and it was able to do everything that I needed it to, but I am...