mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Bug 1016037 - Remove actor IDs from web audio editor's inspector. r=vp
This commit is contained in:
parent
86ce7f252a
commit
71117753ea
@ -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);
|
||||
},
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user