# HG changeset patch # User Nicholas Jillings # Date 1474456780 -3600 # Node ID 42abe6eddfb5a360f26036bc9a97d046abb41aff # Parent 5ddfab2c92e43857762e67edd50dba75b8c2f0c9 Fixed AB playOne attribute locking up interface on playback. diff -r 5ddfab2c92e4 -r 42abe6eddfb5 interfaces/AB.js --- a/interfaces/AB.js Wed Sep 21 12:16:41 2016 +0100 +++ b/interfaces/AB.js Wed Sep 21 12:19:40 2016 +0100 @@ -329,7 +329,7 @@ if (this.parent.specification.parent.playOne || specification.playOne) { $('.comparator-button').text('Wait'); $('.comparator-button').attr("disabled","true"); - $(this.playback).css("disabled","false"); + $(this.playback).removeAttr("disabled"); } else { $('.comparator-button').text('Listen'); } diff -r 5ddfab2c92e4 -r 42abe6eddfb5 interfaces/ABX.js --- a/interfaces/ABX.js Wed Sep 21 12:16:41 2016 +0100 +++ b/interfaces/ABX.js Wed Sep 21 12:19:40 2016 +0100 @@ -323,7 +323,7 @@ if (this.parent.specification.parent.playOne || specification.playOne) { $('.comparator-button').text('Wait'); $('.comparator-button').attr("disabled","true"); - $(this.playback).css("disabled","false"); + $(this.playback).removeAttr("disabled"); } else { $('.comparator-button').text('Listen'); }