Skip to content

Instantly share code, notes, and snippets.

@iezer
Last active February 9, 2017 20:01
Show Gist options
  • Save iezer/996b7fe097dc5abf9bdfd4acfc971d09 to your computer and use it in GitHub Desktop.
Save iezer/996b7fe097dc5abf9bdfd4acfc971d09 to your computer and use it in GitHub Desktop.
Ember 2.10 input helper date/file
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{! remove this line and the last file input will also render as a textbox in Safari}}
{{input type='file'}}
{{input type='date'}} {{! renders as a textbox in Safari}}
{{input type='file'}}
<br>
<br>
{
"version": "0.11.0",
"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.10.2",
"ember-data": "2.10.0",
"ember-template-compiler": "2.10.2",
"ember-testing": "2.10.2"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment