OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 22 matching lines...) Expand all Loading... |
33 { | 33 { |
34 Cu.reportError(e); | 34 Cu.reportError(e); |
35 } | 35 } |
36 | 36 |
37 let {XPCOMUtils} = Cu.import("resource://gre/modules/XPCOMUtils.jsm", {}); | 37 let {XPCOMUtils} = Cu.import("resource://gre/modules/XPCOMUtils.jsm", {}); |
38 let {Services} = Cu.import("resource://gre/modules/Services.jsm", {}); | 38 let {Services} = Cu.import("resource://gre/modules/Services.jsm", {}); |
39 | 39 |
40 let {Utils} = require("utils"); | 40 let {Utils} = require("utils"); |
41 let {getFrames, isPrivate} = require("child/utils"); | 41 let {getFrames, isPrivate} = require("child/utils"); |
42 let {objectMouseEventHander} = require("objectTabs"); | 42 let {objectMouseEventHander} = require("objectTabs"); |
43 let {RequestNotifier} = require("requestNotifier"); | 43 let {RequestNotifier} = require("child/requestNotifier"); |
44 | 44 |
45 /** | 45 /** |
46 * Randomly generated class name, to be applied to collapsed nodes. | 46 * Randomly generated class name, to be applied to collapsed nodes. |
47 */ | 47 */ |
48 let collapsedClass = null; | 48 let collapsedClass = null; |
49 | 49 |
50 /** | 50 /** |
51 * Maps numerical content type IDs to strings. | 51 * Maps numerical content type IDs to strings. |
52 * @type Map | 52 * @type Map |
53 */ | 53 */ |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 let property = (hasCols ? "cols" : "rows"); | 347 let property = (hasCols ? "cols" : "rows"); |
348 let weights = parentNode[property].split(","); | 348 let weights = parentNode[property].split(","); |
349 weights[index] = "0"; | 349 weights[index] = "0"; |
350 parentNode[property] = weights.join(","); | 350 parentNode[property] = weights.join(","); |
351 } | 351 } |
352 } | 352 } |
353 else | 353 else |
354 node.classList.add(collapsedClass); | 354 node.classList.add(collapsedClass); |
355 } | 355 } |
356 } | 356 } |
OLD | NEW |