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-02-18 13:20:10 -05:00
parent 02e924e3c5
commit 05b25af69f
55 changed files with 1554 additions and 907 deletions

View file

@ -97,8 +97,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
var counter = Polymer.dom(input.root).querySelector('paper-input-char-counter')
assert.ok(counter, 'paper-input-char-counter exists');
// A new line counts as two characters.
assert.equal(counter._charCounterStr, input.value.length + 1, 'character counter shows the value length');
assert.equal(counter._charCounterStr, input.value.length, 'character counter shows the value length');
});
});