From ac46df8daea09899ce30dc8fd70986e258c746bf Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 9 Feb 2018 06:46:43 -0500 Subject: Move Add-on SDK source to toolkit/jetpack --- .../source/examples/toolbar-api/data/favicon.ico | Bin 15086 -> 0 bytes .../source/examples/toolbar-api/data/index.html | 21 --------- addon-sdk/source/examples/toolbar-api/lib/main.js | 48 --------------------- addon-sdk/source/examples/toolbar-api/package.json | 12 ------ .../source/examples/toolbar-api/test/test-main.js | 10 ----- 5 files changed, 91 deletions(-) delete mode 100644 addon-sdk/source/examples/toolbar-api/data/favicon.ico delete mode 100644 addon-sdk/source/examples/toolbar-api/data/index.html delete mode 100644 addon-sdk/source/examples/toolbar-api/lib/main.js delete mode 100644 addon-sdk/source/examples/toolbar-api/package.json delete mode 100644 addon-sdk/source/examples/toolbar-api/test/test-main.js (limited to 'addon-sdk/source/examples/toolbar-api') diff --git a/addon-sdk/source/examples/toolbar-api/data/favicon.ico b/addon-sdk/source/examples/toolbar-api/data/favicon.ico deleted file mode 100644 index ae5084bc0..000000000 Binary files a/addon-sdk/source/examples/toolbar-api/data/favicon.ico and /dev/null differ diff --git a/addon-sdk/source/examples/toolbar-api/data/index.html b/addon-sdk/source/examples/toolbar-api/data/index.html deleted file mode 100644 index 4c91a63ae..000000000 --- a/addon-sdk/source/examples/toolbar-api/data/index.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - diff --git a/addon-sdk/source/examples/toolbar-api/lib/main.js b/addon-sdk/source/examples/toolbar-api/lib/main.js deleted file mode 100644 index a538c8cd6..000000000 --- a/addon-sdk/source/examples/toolbar-api/lib/main.js +++ /dev/null @@ -1,48 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -"use strict"; - -const { Toolbar } = require("sdk/ui/toolbar"); -const { Frame } = require("sdk/ui/frame"); -const { ActionButton } = require("sdk/ui/button/action"); - -var button = new ActionButton({ - id: "button", - label: "send!", - icon: "./favicon.ico", - onClick: () => { - frame.postMessage({ - hello: "content" - }); - } -}); - -var frame = new Frame({ - url: "./index.html", - onAttach: () => { - console.log("frame was attached"); - }, - onReady: () => { - console.log("frame document was loaded"); - }, - onLoad: () => { - console.log("frame load complete"); - }, - onMessage: (event) => { - console.log("got message from frame content", event); - if (event.data === "ping!") - event.source.postMessage("pong!", event.source.origin); - } -}); -var toolbar = new Toolbar({ - items: [frame], - title: "Addon Demo", - hidden: false, - onShow: () => { - console.log("toolbar was shown"); - }, - onHide: () => { - console.log("toolbar was hidden"); - } -}); diff --git a/addon-sdk/source/examples/toolbar-api/package.json b/addon-sdk/source/examples/toolbar-api/package.json deleted file mode 100644 index 62af7f7ff..000000000 --- a/addon-sdk/source/examples/toolbar-api/package.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "toolbar-api", - "title": "Toolbar API", - "main": "./lib/main.js", - "description": "a toolbar api example", - "author": "", - "license": "MPL-2.0", - "version": "0.1.1", - "engines": { - "firefox": ">=27.0 <=30.0" - } -} diff --git a/addon-sdk/source/examples/toolbar-api/test/test-main.js b/addon-sdk/source/examples/toolbar-api/test/test-main.js deleted file mode 100644 index 9862fc20b..000000000 --- a/addon-sdk/source/examples/toolbar-api/test/test-main.js +++ /dev/null @@ -1,10 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - "use strict"; - -exports.testMain = function(assert) { - assert.pass("TODO: Write some tests."); -}; - -require("sdk/test").run(exports); -- cgit v1.2.3