| 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 21 matching lines...) Expand all Loading... |
| 32 catch (e) | 32 catch (e) |
| 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("child/objectTabs"); |
| 43 let {RequestNotifier} = require("child/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 * @type string | 47 * @type string |
| 48 */ | 48 */ |
| 49 let collapsedClass = null; | 49 let collapsedClass = null; |
| 50 | 50 |
| 51 /** | 51 /** |
| 52 * Maps numerical content type IDs to strings. | 52 * Maps numerical content type IDs to strings. |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 let property = (hasCols ? "cols" : "rows"); | 379 let property = (hasCols ? "cols" : "rows"); |
| 380 let weights = parentNode[property].split(","); | 380 let weights = parentNode[property].split(","); |
| 381 weights[index] = "0"; | 381 weights[index] = "0"; |
| 382 parentNode[property] = weights.join(","); | 382 parentNode[property] = weights.join(","); |
| 383 } | 383 } |
| 384 } | 384 } |
| 385 else | 385 else |
| 386 node.classList.add(collapsedClass); | 386 node.classList.add(collapsedClass); |
| 387 } | 387 } |
| 388 } | 388 } |
| OLD | NEW |