Skip to content

Commit

Permalink
Update panel.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nt1m committed Oct 19, 2014
1 parent 696f9f4 commit b3ec6e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ PageRecorderPanel.prototype = {
}
this.isStarted = true;

this.toggleEl.textContent = "stop";
this.toggleEl.setAttribute("checked", "true")
this.recordsEl.innerHTML = "";
this.mm.sendAsyncMessage("PageRecorder:Start");
},
Expand All @@ -67,7 +67,7 @@ PageRecorderPanel.prototype = {
}
this.isStarted = false;

this.toggleEl.textContent = "start";
this.toggleEl.removeAttribute("checked");
this.mm.sendAsyncMessage("PageRecorder:Stop");
},

Expand Down

0 comments on commit b3ec6e7

Please sign in to comment.