Bug 1016037 - Remove actor IDs from web audio editor's inspector. r=vp

This commit is contained in:
Jordan Santell 2014-08-13 15:11:00 -04:00
parent 86ce7f252a
commit 71117753ea
2 changed files with 5 additions and 1 deletions

View File

@ -452,7 +452,7 @@ let WebAudioInspectorView = {
*/
_setTitle: function () {
let node = this._currentNode;
let title = node.type + " (" + node.id + ")";
let title = node.type.replace(/Node$/, "");
$("#web-audio-inspector-title").setAttribute("value", title);
},

View File

@ -99,6 +99,10 @@ text {
* Inspector Styles
*/
#web-audio-inspector-title {
margin: 6px;
}
.web-audio-inspector .error {
background-image: url(alerticon-warning.png);
background-size: 13px 12px;