From fe17c6860737b3612ba3d99ccd799de94f83f601 Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez Date: Tue, 10 May 2016 19:17:57 -0400 Subject: LibreJS updated to 6.0.13 --- .../node_modules/menuitem/package.json | 11 ++++++----- .../node_modules/notification-box/package.json | 7 ++++--- .../node_modules/pathfinder/lib/ui/web-panel.js | 20 ++++++++++---------- .../node_modules/pathfinder/package.json | 14 +++++++------- 4 files changed, 27 insertions(+), 25 deletions(-) (limited to 'data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules') diff --git a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/menuitem/package.json b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/menuitem/package.json index b8798a5..2f89a41 100644 --- a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/menuitem/package.json +++ b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/menuitem/package.json @@ -8,6 +8,7 @@ "_from": "menuitem@0.0.5", "_id": "menuitem@0.0.5", "_inCache": true, + "_installable": true, "_location": "/menuitem", "_nodeVersion": "4.0.0", "_npmUser": { @@ -52,25 +53,25 @@ }, "gitHead": "bb3f05ea29164bf673a4cdd076fc620266028e53", "homepage": "https://github.com/OverByThere/menuitem#readme", - "installable": true, "keywords": [ - "firefox", "gecko", + "firefox", "jetpack", - "menu", "menuitem", + "menu", "ui" ], "license": "MPL-2.0", "main": "index.js", "maintainers": [ { - "name": "overbythere", - "email": "accounts.npm@overbythere.co.uk" + "email": "accounts.npm@overbythere.co.uk", + "name": "overbythere" } ], "name": "menuitem", "optionalDependencies": {}, + "readme": "ERROR: No README data found!", "repository": { "type": "git", "url": "git+https://github.com/OverByThere/menuitem.git" diff --git a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/notification-box/package.json b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/notification-box/package.json index b4fadcb..bd4be91 100644 --- a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/notification-box/package.json +++ b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/notification-box/package.json @@ -8,6 +8,7 @@ "_from": "notification-box@0.1.1", "_id": "notification-box@0.1.1", "_inCache": true, + "_installable": true, "_location": "/notification-box", "_nodeVersion": "0.10.25", "_npmUser": { @@ -46,16 +47,16 @@ "fullName": "notification-box", "gitHead": "28d8d3ca6b766691d99941293e5f3d1fba47f9f7", "id": "jid1-dyFGGJB0CjoDMA", - "installable": true, "license": "MPL 2.0", "maintainers": [ { - "name": "nnyby", - "email": "nikolas@gnu.org" + "email": "nikolas@gnu.org", + "name": "nnyby" } ], "name": "notification-box", "optionalDependencies": {}, + "readme": "ERROR: No README data found!", "scripts": {}, "version": "0.1.1" } diff --git a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/lib/ui/web-panel.js b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/lib/ui/web-panel.js index f61c958..348d514 100644 --- a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/lib/ui/web-panel.js +++ b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/lib/ui/web-panel.js @@ -196,27 +196,27 @@ exports.WebPanel = WebPanel; function showSidebar(window, sidebar) { let model = modelFor(sidebar); - //let window = window || getMostRecentBrowserWindow(); + let myWindow = window || getMostRecentBrowserWindow(); - window.openWebPanel(model.title, model.url); + myWindow.openWebPanel(model.title, model.url); - let menuitem = window.document.getElementById(makeID(model.id)); + let menuitem = myWindow.document.getElementById(makeID(model.id)); menuitem.setAttribute('checked', true); } show.define(WebPanel, showSidebar.bind(null, null)); function hideSidebar(window, sidebar) { - //window = window || getMostRecentBrowserWindow(); + let myWindow = window || getMostRecentBrowserWindow(); - if (!isSidebarShowing(window, sidebar)) + if (!isSidebarShowing(myWindow, sidebar)) return; // return window.toggleSidebar(); // Below was taken from http://mxr.mozilla.org/mozilla-central/source/browser/base/content/browser.js#4775 - // the code for window.todggleSideBar().. - let { document } = window; - //let sidebar = document.getElementById('sidebar'); + // the code for window.toggleSideBar().. + let { document } = myWindow; + let mySidebar = document.getElementById('sidebar'); let sidebarTitle = document.getElementById('sidebar-title'); let sidebarBox = document.getElementById('sidebar-box'); let sidebarSplitter = document.getElementById('sidebar-splitter'); @@ -226,7 +226,7 @@ function hideSidebar(window, sidebar) { sidebarBox.hidden = true; sidebarSplitter.hidden = true; - sidebar.setAttribute('src', 'about:blank'); + mySidebar.setAttribute('src', 'about:blank'); //sidebar.docShell.createAboutBlankContentViewer(null); sidebarBroadcaster.removeAttribute('checked'); @@ -236,7 +236,7 @@ function hideSidebar(window, sidebar) { sidebarSplitter.hidden = true; // TODO: perhaps this isn't necessary if the window is not most recent? - window.gBrowser.selectedBrowser.focus(); + myWindow.gBrowser.selectedBrowser.focus(); } hide.define(WebPanel, hideSidebar.bind(null, null)); diff --git a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/package.json b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/package.json index 3f0d03a..852054a 100644 --- a/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/package.json +++ b/data/extensions/jid1-KtlZuoiikVfFew@jetpack/node_modules/pathfinder/package.json @@ -8,6 +8,7 @@ "_from": "git+https://github.com/OverByThere/addon-pathfinder.git", "_id": "pathfinder@1.0.1", "_inCache": true, + "_installable": true, "_location": "/pathfinder", "_phantomChildren": {}, "_requested": { @@ -30,8 +31,8 @@ "_requiredBy": [ "/menuitem" ], - "_resolved": "git+https://github.com/OverByThere/addon-pathfinder.git#bad1110fc9427bafd6d7fc1a1d4594cf8086ab94", - "_shasum": "e8e99972c3ac7a562fb84e8331b9df88ca2a9098", + "_resolved": "git+https://github.com/OverByThere/addon-pathfinder.git#ad71927413b726023f93888227b6bab32e913231", + "_shasum": "c1932ad016648f876c5c44326896c2f9397257b4", "_shrinkwrap": null, "_spec": "pathfinder@git+https://github.com/OverByThere/addon-pathfinder.git", "_where": "/home/nik/src/librejs/node_modules/menuitem", @@ -39,14 +40,13 @@ "name": "Erik Vold" }, "bugs": { - "url": "https://github.com/OverByThere/menuitem/issues" + "url": "https://github.com/OverByThere/addon-pathfinder/issues" }, "dependencies": {}, "description": "The Add-on Pathfinder is the collection of Jetpack modules made to be used with the [Add-on SDK](https://github.com/mozilla/addon-sdk).", "devDependencies": {}, - "gitHead": "bad1110fc9427bafd6d7fc1a1d4594cf8086ab94", - "homepage": "https://github.com/OverByThere/menuitem#readme", - "installable": true, + "gitHead": "ad71927413b726023f93888227b6bab32e913231", + "homepage": "https://github.com/OverByThere/addon-pathfinder#readme", "license": "MPL 2.0", "name": "pathfinder", "optionalDependencies": {}, @@ -54,7 +54,7 @@ "readmeFilename": "README.md", "repository": { "type": "git", - "url": "git+https://github.com/OverByThere/menuitem.git" + "url": "git+https://github.com/OverByThere/addon-pathfinder.git" }, "version": "1.0.1" } -- cgit v1.2.3