Forked from ritesh83/controllers.application.js
Last active
November 27, 2016 11:56
-
-
Save danielspaniel/8afc87088bab71d0d2fb71f20151bb83 to your computer and use it in GitHub Desktop.
New Twiddle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
import FactoryGuy, {manualSetup} from 'ember-data-factory-guy'; | |
export default Ember.Controller.extend({ | |
data: { fg: FactoryGuy, | |
text: 'Single child node (has tooltip)', | |
type: 'single-child', | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
import FactoryGuy from 'ember-data-factory-guy'; | |
import Grid from 'ember-collection/layouts/grid'; | |
export default Ember.Helper.helper(function (params, hash) { | |
//return new Grid(params[0], params[1]); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.10.1", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.9.0", | |
"ember-data": "2.9.0" | |
}, | |
"addons": { | |
"ember-collection": "1.0.0-alpha.7", | |
"ember-data-factory-guy": "2.9.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment