# HG changeset patch # User Nicholas Jillings # Date 1452785858 0 # Node ID bc343b3f4ccea12a82fe2f91de4c6998d45acba5 # Parent c73f3540db5919f7ca9b8e27f1e940c526a8817f Minor fixes for OSX Firefox support (Firefox 43) diff -r c73f3540db59 -r bc343b3f4cce interfaces/AB.js --- a/interfaces/AB.js Thu Jan 14 15:20:31 2016 +0000 +++ b/interfaces/AB.js Thu Jan 14 15:37:38 2016 +0000 @@ -137,7 +137,7 @@ this.playback.textContent = "Listen"; this.box.appendChild(this.selector); this.box.appendChild(this.playback); - this.selector.onclick = function() + this.selector.onclick = function(event) { var time = audioEngineContext.timer.getTestTime(); if ($(event.currentTarget).hasClass('disabled')) @@ -167,7 +167,7 @@ } console.log("Selected "+id+' ('+time+')'); }; - this.playback.onclick = function() + this.playback.onclick = function(event) { $('.comparitor-button').text('Listen'); var id = event.currentTarget.parentElement.getAttribute('track-id'); diff -r c73f3540db59 -r bc343b3f4cce interfaces/horizontal-sliders.css --- a/interfaces/horizontal-sliders.css Thu Jan 14 15:20:31 2016 +0000 +++ b/interfaces/horizontal-sliders.css Thu Jan 14 15:37:38 2016 +0000 @@ -112,7 +112,7 @@ } input[type=range]::-webkit-slider-runnable-track { - width: 8px; + height: 8px; cursor: pointer; background: #fff; border-radius: 4px; @@ -120,7 +120,7 @@ } input[type=range]::-moz-range-track { - width: 8px; + height: 8px; cursor: pointer; background: #fff; border-radius: 4px;