Created
July 14, 2016 14:50
-
-
Save willrax/95cd8933fa6a28f98347df08d085e3c6 to your computer and use it in GitHub Desktop.
composable-helpers
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({ | |
appName: 'Ember Twiddle', | |
actions: { | |
myAction() { | |
// do big action! | |
return true; | |
} | |
} | |
}); |
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
body { | |
margin: 12px 16px; | |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
font-size: 12pt; | |
} | |
.ember-basic-dropdown { | |
position: relative; } | |
.ember-basic-dropdown, .ember-basic-dropdown-content, .ember-basic-dropdown-content * { | |
box-sizing: border-box; } | |
.ember-basic-dropdown-content { | |
position: absolute; | |
width: auto; | |
z-index: 1000; | |
background-color: #FFF; } | |
.ember-basic-dropdown-content--left { | |
left: 0; } | |
.ember-basic-dropdown-content--right { | |
right: 0; } |
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-composable-helpers": "0.26.2", | |
"ember-basic-dropdown": "0.12.0-beta.22" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment