Last active
March 27, 2018 00:07
-
-
Save billdami/bd90e7e91f076bac9ce2192c80e1c9e7 to your computer and use it in GitHub Desktop.
ember-pikaday
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'; | |
const { | |
set | |
} = Ember; | |
export default Ember.Controller.extend({ | |
appName: 'ember-pikaday', | |
value1: new Date(), | |
value2: new Date('2018-3-20'), | |
value3: new Date(), | |
value4: null, | |
minDate: new Date('2018-3-15'), | |
maxDate: new Date('2018-3-25'), | |
actions: { | |
clearDate() { | |
set(this, 'value1', null); | |
} | |
} | |
}); |
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 { | |
padding: 20px; | |
} | |
.ember-pikaday-container { | |
max-width: 260px; | |
} |
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.13.0", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": true, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.16.2", | |
"ember-template-compiler": "2.16.2", | |
"ember-testing": "2.16.2", | |
"bootstrap": "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" | |
}, | |
"addons": { | |
"ember-data": "2.16.3", | |
"ember-pikaday": "2.2.2" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment