Mercurial > hg > webaudioevaluationtool
changeset 1378:589d9860a974
Bug #1569: Comment boxes cannot be resized, they support scrolling text. Styling of comment boxes. Styling of AB selectors.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 11 Feb 2016 14:37:26 +0000 |
parents | a03b04ea3357 |
children | 797ca4ec7832 |
files | core.css core.js interfaces/AB.css |
diffstat | 3 files changed, 6 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/core.css Thu Feb 11 14:22:30 2016 +0000 +++ b/core.css Thu Feb 11 14:37:26 2016 +0000 @@ -21,14 +21,13 @@ } div.comment-div { - border:#444444; - border-style:solid; - border-width:1px; + border:1px solid #444444; max-width: 600px; min-width: 400px; float: left; - margin: 5px; + margin: 5px 10px 5px 5px; height: 90px; + border-radius: 10px; } div.comment-div span { @@ -83,8 +82,8 @@ textarea.trackComment { max-width: 594px; min-width: 350px; - margin-right:15px; max-height: 60px; + resize: none; } div.playhead {
--- a/core.js Thu Feb 11 14:22:30 2016 +0000 +++ b/core.js Thu Feb 11 14:37:26 2016 +0000 @@ -1097,7 +1097,7 @@ }; this.stop = function() { - // Send stop and reset command to all playback buffers and set audioEngine state to stopped (1) + // Send stop and reset command to all playback buffers if (this.status == 1) { var setTime = audioContext.currentTime+0.1; for (var i=0; i<this.audioObjects.length; i++) @@ -1105,7 +1105,6 @@ this.audioObjects[i].stop(setTime); } interfaceContext.playhead.stop(); - this.status = 0; } };