ember-cli-copyable icon indicating copy to clipboard operation
ember-cli-copyable copied to clipboard

Deeply copies your records including their relations. The mixin is smart enough to resolve not loaded relations and is configurable to what should be shallow/deeply copied or excluded entirely.

Results 11 ember-cli-copyable issues
Sort by recently updated
recently updated
newest added

DEPRECATION: Addon files were detected in `../node_modules/ember-cli-copyable/addon`, but no JavaScript preprocessors were found for `ember-cli-copyable`. Please make sure to add a preprocessor (most likely `ember-cli-babel`) to in `dependencies` (NOT `devDependencies`)...

Due to changes in my work environment during the last year I was - and most likely will be - unable to foster this addon any longer. I hope that...

Would be cool to have a new version with all the fixes :).

Takes care of the deprecation warning: > DEPRECATION: Addon files were detected in `/Users/milindalvares/dev/invoicesapp-frontend-ember/node_modules/ember-cli-copyable/addon`, but no JavaScript preprocessors were found for `ember-cli-copyable`. Please make sure to add a preprocessor (most...

If you define inverses of your relationship, the mixin hangs and finally crashes. The Merging of a circular reference fix takes since 2015.

Hi, My browser becomes stuck with 100% CPU usage on object copy: This is my action: ``` javascript actions: { selectSurvey(id, component) { let store = this.store; let campaign =...

I ran the following: `ember install ember-cli-copyable` ``` App Info: "devDependencies": { "ember-cli": "0.2.5", "ember-cli-copyable": "0.9.6" }, "dependencies": { "ember-cli": "0.2.5" ..... rest omitted } ``` #### Model ``` coffee...

This allows user to specify whether to skip copying attributes, skip copying relationships, and/or to copy only some kinds of relationships (e.g. only belongsTo or hasMany). This will "allow user...

Might as well support copying to existing instance, since all the logic is already there. Useful e.g. after copying a model for buffered form editing to copy updates back to...