Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This Source Code is subject to the terms of the Mozilla Public License | 2 * This Source Code is subject to the terms of the Mozilla Public License |
3 * version 2.0 (the "License"). You can obtain a copy of the License at | 3 * version 2.0 (the "License"). You can obtain a copy of the License at |
4 * http://mozilla.org/MPL/2.0/. | 4 * http://mozilla.org/MPL/2.0/. |
5 */ | 5 */ |
6 | 6 |
7 let InspectorObserver = | 7 let InspectorObserver = |
8 { | 8 { |
9 init: function() | 9 init: function() |
10 { | 10 { |
(...skipping 22 matching lines...) Expand all Loading... | |
33 let result = stringBundle.GetStringFromName("inspector.button.tooltiptext"); | 33 let result = stringBundle.GetStringFromName("inspector.button.tooltiptext"); |
34 | 34 |
35 delete this.inspectorButtonTooltip; | 35 delete this.inspectorButtonTooltip; |
36 this.__defineGetter__("inspectorButtonTooltip", function() result); | 36 this.__defineGetter__("inspectorButtonTooltip", function() result); |
37 return this.inspectorButtonTooltip; | 37 return this.inspectorButtonTooltip; |
38 }, | 38 }, |
39 | 39 |
40 inspectorReady: function(eventName, toolbox, panel) | 40 inspectorReady: function(eventName, toolbox, panel) |
41 { | 41 { |
42 let panelWindow = panel.panelWin; | 42 let panelWindow = panel.panelWin; |
43 let inspectBtn = panelWindow.document.getElementById("inspector-inspect-tool button"); | 43 let inspectBtn = panelWindow.document.getElementById("inspector-breadcrumbs" ); |
44 if (!inspectBtn) | 44 if (!inspectBtn) |
45 return; | 45 return; |
46 | 46 |
47 let tooltiptext = InspectorObserver.inspectorButtonTooltip; | 47 let tooltiptext = InspectorObserver.inspectorButtonTooltip; |
48 button = panelWindow.document.createElement("toolbarbutton"); | 48 button = panelWindow.document.createElement("toolbarbutton"); |
49 button.setAttribute("id", "inspector-abp-elemhide-toolbutton"); | 49 button.setAttribute("id", "inspector-abp-elemhide-toolbutton"); |
50 button.style.listStyleImage = "url('chrome://adblockplus/skin/abp-status-16. png')"; | 50 button.style.listStyleImage = "url('chrome://adblockplus/skin/abp-status-16. png')"; |
51 button.style.MozImageRegion = "rect(0px, 16px, 16px, 0px)"; | 51 button.style.MozImageRegion = "rect(0px, 16px, 16px, 0px)"; |
52 button.style.paddingTop = "4px"; | 52 button.style.paddingTop = "4px"; |
53 button.setAttribute("class", "devtools-toolbarbutton"); | 53 button.setAttribute("class", "devtools-toolbarbutton"); |
saroyanm
2014/04/14 15:38:01
Wladimir I have doubt regarding the ABP button loo
Wladimir Palant
2014/04/14 21:40:40
No, we are not.
This is only an issue with the li
saroyanm
2014/04/15 10:21:49
Thanks for notes,
Done.
| |
54 button.setAttribute("tooltiptext", tooltiptext); | 54 button.setAttribute("tooltiptext", tooltiptext); |
55 button.setAttribute("tabindex", "0"); | 55 button.setAttribute("tabindex", "0"); |
56 button.addEventListener("command", function() | 56 button.addEventListener("command", function() |
57 { | 57 { |
58 panelWindow.openDialog("chrome://elemhidehelper/content/composer.xul", "_b lank", | 58 panelWindow.openDialog("chrome://elemhidehelper/content/composer.xul", "_b lank", |
59 "chrome,centerscreen,resizable,dialog=no", panel.se lection.node); | 59 "chrome,centerscreen,resizable,dialog=no", panel.se lection.node); |
60 }, false); | 60 }, false); |
61 inspectBtn.parentNode.insertBefore(button, inspectBtn.nextSibling); | 61 inspectBtn.parentNode.insertBefore(button, inspectBtn); |
62 } | 62 } |
63 }; | 63 }; |
64 | 64 |
65 InspectorObserver.init(); | 65 InspectorObserver.init(); |
OLD | NEW |