1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update date

This commit is contained in:
Luke Pulverenti 2015-08-11 14:50:27 -04:00
parent bd0354e38a
commit d65219f9f8
8 changed files with 29 additions and 20 deletions

View file

@ -1,6 +1,6 @@
{
"name": "iron-input",
"version": "1.0.4",
"version": "1.0.5",
"description": "An input element with data binding",
"authors": [
"The Polymer Authors"
@ -33,11 +33,11 @@
"web-component-tester": "*",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"_release": "1.0.4",
"_release": "1.0.5",
"_resolution": {
"type": "version",
"tag": "v1.0.4",
"commit": "eebeeb1642ab3e9b1abd5012c1df038250741184"
"tag": "v1.0.5",
"commit": "3ae9ec75f2252402bd62ed879052b54a9c49f60f"
},
"_source": "git://github.com/PolymerElements/iron-input.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-input",
"version": "1.0.4",
"version": "1.0.5",
"description": "An input element with data binding",
"authors": [
"The Polymer Authors"

View file

@ -122,7 +122,7 @@ is separate from validation, and `allowed-pattern` does not affect how the input
_bindValueChanged: function() {
if (this.value !== this.bindValue) {
this.value = !this.bindValue ? '' : this.bindValue;
this.value = !(this.bindValue || this.bindValue === 0) ? '' : this.bindValue;
}
// manually notify because we don't want to notify until after setting value
this.fire('bind-value-changed', {value: this.bindValue});
@ -157,6 +157,7 @@ is separate from validation, and `allowed-pattern` does not affect how the input
// For these keys, ASCII code == browser keycode.
var anyNonPrintable =
(event.keyCode == 8) || // backspace
(event.keyCode == 9) || // tab
(event.keyCode == 13) || // enter
(event.keyCode == 27); // escape