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

update components

This commit is contained in:
Luke Pulverenti 2016-03-21 22:06:21 -04:00
parent d5dc8e15ea
commit 7cfa21451a
16 changed files with 150 additions and 131 deletions

View file

@ -221,6 +221,18 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
});
});
test('decimal markers', function(done) {
slider.min = 0;
slider.max = 0.7;
slider.snap = true;
slider.step = 0.1;
slider.maxMarkers = 10;
flush(function() {
assert.equal(slider.markers.length, 7);
done();
});
});
});
</script>