Some style and IE fixes.

This commit is contained in:
Lars Jung 2014-06-20 16:22:26 +02:00
parent 759faf9647
commit 1ffa6f793a
3 changed files with 25 additions and 23 deletions

View file

@ -110,7 +110,7 @@ modulejs.define('view/viewmode', ['_', '$', 'core/settings', 'core/resource', 'c
max = settings.sizes.length-1;
$(sizeTemplate)
.prop('max', max).attr('max', max)
.on('input', function (event) {
.on('input change', function (event) {
update(null, settings.sizes[parseInt(event.target.value, 10)]);
})