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

update polymer

This commit is contained in:
Luke Pulverenti 2015-09-30 00:10:14 -04:00
parent 22a5e48860
commit 61d616c330
44 changed files with 447 additions and 156 deletions

View file

@ -1,6 +1,6 @@
{
"name": "iron-range-behavior",
"version": "1.0.2",
"version": "1.0.3",
"license": "http://polymer.github.io/LICENSE.txt",
"description": "Provides a behavior for something with a minimum and maximum value",
"authors": "The Polymer Authors",
@ -28,11 +28,11 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"homepage": "https://github.com/PolymerElements/iron-range-behavior",
"_release": "1.0.2",
"_release": "1.0.3",
"_resolution": {
"type": "version",
"tag": "v1.0.2",
"commit": "a743ac0b204a8e76466c2dba349ab2180c9f15f5"
"tag": "v1.0.3",
"commit": "3ed9a372778e31e62477666b313155c581a7dfe6"
},
"_source": "git://github.com/PolymerElements/iron-range-behavior.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-range-behavior",
"version": "1.0.2",
"version": "1.0.3",
"license": "http://polymer.github.io/LICENSE.txt",
"description": "Provides a behavior for something with a minimum and maximum value",
"authors": "The Polymer Authors",

View file

@ -91,7 +91,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
*
* as a work around we can divide by the reciprocal of `step`
*/
return this.step ? (Math.round(value / this.step) / (1 / this.step)) : value;
// polymer/issues/2493
value = parseFloat(value);
return this.step ? (Math.round((value + this.min) / this.step) / (1 / this.step)) - this.min : value;
},
_validateValue: function() {

View file

@ -45,11 +45,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test('set value', function(done) {
range.value = 50;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 50);
// test clamp value
range.value = 60.1;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 60);
done();
});
@ -59,7 +59,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test('set max', function(done) {
range.max = 10;
range.value = 11;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, range.max);
done();
});
@ -68,7 +68,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test('test ratio', function(done) {
range.max = 10;
range.value = 5;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.ratio, 50);
done();
});
@ -78,10 +78,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
range.min = 10
range.max = 50;
range.value = 30;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.ratio, 50);
range.value = 0;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, range.min);
done();
});
@ -92,17 +92,34 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
range.min = 0;
range.max = 10;
range.value = 5.1;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 5);
range.step = 0.1;
range.value = 5.1;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 5.1);
done();
});
});
});
test('odd values', function() {
range.min = 1;
range.max = 7;
range.step = 2;
range.value = 3;
flush(function() {
assert.equal(range.value, 3);
range.value += range.step;
assert.equal(range.value, 5);
range.value += range.step;
assert.equal(range.value, 7);
});
});
});
</script>