Last active
November 27, 2016 00:45
-
-
Save ritesh83/82809a6f7b4570b4de8416260fbb59db 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'; | |
export default Ember.Controller.extend({ | |
data: [ | |
'Simple root node', | |
{ | |
'text': 'Single child node (has tooltip)', | |
'type': 'single-child', | |
'children': [ | |
'one child' | |
], | |
'a_attr': {'class': 'hint--top', 'data-hint': 'Use a_attr to add tooltips'} | |
}, | |
{ | |
'id': 'rn2', | |
'text' : 'Opened node (has tooltip)', | |
'state' : { | |
'opened' : true, | |
'selected' : true | |
}, | |
'a_attr': {'class': 'hint--bottom', 'data-hint': 'This is a bottom mounted node tooltip'}, | |
'children' : [ | |
{ | |
'text' : 'Child 1' | |
}, | |
'Child 2' | |
] | |
} | |
] | |
}); |
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.6.0", | |
"ember-data": "2.6.1", | |
"ember-template-compiler": "2.6.0" | |
}, | |
"addons": { | |
"ember-cli-jstree": "1.0.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment