diff options
Diffstat (limited to 'addon-sdk/source/examples/toolbar-api')
-rw-r--r-- | addon-sdk/source/examples/toolbar-api/data/favicon.ico | bin | 15086 -> 0 bytes | |||
-rw-r--r-- | addon-sdk/source/examples/toolbar-api/data/index.html | 21 | ||||
-rw-r--r-- | addon-sdk/source/examples/toolbar-api/lib/main.js | 48 | ||||
-rw-r--r-- | addon-sdk/source/examples/toolbar-api/package.json | 12 | ||||
-rw-r--r-- | addon-sdk/source/examples/toolbar-api/test/test-main.js | 10 |
5 files changed, 0 insertions, 91 deletions
diff --git a/addon-sdk/source/examples/toolbar-api/data/favicon.ico b/addon-sdk/source/examples/toolbar-api/data/favicon.ico Binary files differdeleted file mode 100644 index ae5084bc0..000000000 --- a/addon-sdk/source/examples/toolbar-api/data/favicon.ico +++ /dev/null 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 @@ -<!-- 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/. --> - -<html> - <body> - <button id=post>post!</button> - </body> - <script> - window.addEventListener("message", event => { - console.log("Document message", event, event.data, event.source !== window && event.source === window.parent); - }); - window.addEventListener("click", event => { - if (event.target.id === "post") { - console.log("click!") - window.parent.postMessage("ping!", "*"); - } - }); - console.log(window.parent === window) - </script> -</html> 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); |