From af8ebf3a2bb0ef2cc146cf851c75d18d1faf3ff5 Mon Sep 17 00:00:00 2001 From: Mike Chatsky Date: Tue, 29 Jan 2019 20:56:22 +0200 Subject: [PATCH] replaces pb namespace with visbug namespace removes the old pb namespace and introduces a new and accurate visbug namespace --- app/components/hotkey-map/hotkeys.element.js | 2 +- app/components/metatip/ally.element.js | 2 +- app/components/metatip/metatip.element.js | 2 +- app/components/selection/gridlines.element.js | 2 +- app/components/selection/handles.element.js | 4 ++-- app/components/selection/label.element.js | 2 +- app/components/selection/overlay.element.js | 4 ++-- app/components/tool-pallete/toolpallete.element.js | 2 +- app/features/accessibility.js | 4 ++-- app/features/guides.js | 4 ++-- app/features/imageswap.js | 4 ++-- app/features/metatip.js | 6 +++--- app/features/search.js | 4 ++-- app/features/selectable.js | 8 ++++---- app/utilities/common.js | 14 +++++++------- assets/visbug.svg | 6 +++--- extension/manifest.json | 2 +- extension/{pixelbug.js => visbug.js} | 0 18 files changed, 36 insertions(+), 36 deletions(-) rename extension/{pixelbug.js => visbug.js} (100%) diff --git a/app/components/hotkey-map/hotkeys.element.js b/app/components/hotkey-map/hotkeys.element.js index 2a54fc05..63b390c3 100644 --- a/app/components/hotkey-map/hotkeys.element.js +++ b/app/components/hotkey-map/hotkeys.element.js @@ -64,4 +64,4 @@ export class Hotkeys extends HTMLElement { } } -customElements.define('pb-hotkeys', Hotkeys) \ No newline at end of file +customElements.define('visbug-hotkeys', Hotkeys) diff --git a/app/components/metatip/ally.element.js b/app/components/metatip/ally.element.js index ba6933d7..ab80b37c 100644 --- a/app/components/metatip/ally.element.js +++ b/app/components/metatip/ally.element.js @@ -23,4 +23,4 @@ export class Ally extends Metatip { } } -customElements.define('pb-ally', Ally) \ No newline at end of file +customElements.define('visbug-ally', Ally) diff --git a/app/components/metatip/metatip.element.js b/app/components/metatip/metatip.element.js index 9e45584f..89d63ce1 100644 --- a/app/components/metatip/metatip.element.js +++ b/app/components/metatip/metatip.element.js @@ -86,4 +86,4 @@ export class Metatip extends HTMLElement { } } -customElements.define('pb-metatip', Metatip) \ No newline at end of file +customElements.define('visbug-metatip', Metatip) diff --git a/app/components/selection/gridlines.element.js b/app/components/selection/gridlines.element.js index f11187ac..9e88ae92 100644 --- a/app/components/selection/gridlines.element.js +++ b/app/components/selection/gridlines.element.js @@ -77,4 +77,4 @@ export class Gridlines extends HTMLElement { } } -customElements.define('pb-gridlines', Gridlines) +customElements.define('visbug-gridlines', Gridlines) diff --git a/app/components/selection/handles.element.js b/app/components/selection/handles.element.js index 625fcd3e..a6fa4935 100644 --- a/app/components/selection/handles.element.js +++ b/app/components/selection/handles.element.js @@ -35,7 +35,7 @@ export class Handles extends HTMLElement { return ` ${this.styles({top,left})} node.closest && (node.closest('tool-pallete') || node.closest('hotkey-map') - || node.closest('pb-metatip') - || node.closest('pb-ally') - || node.closest('pb-label') - || node.closest('pb-handles') - || node.closest('pb-gridlines') + || node.closest('visbug-metatip') + || node.closest('visbug-ally') + || node.closest('visbug-label') + || node.closest('visbug-handles') + || node.closest('visbug-gridlines') ) \ No newline at end of file diff --git a/assets/visbug.svg b/assets/visbug.svg index f17eba05..cfa94da3 100644 --- a/assets/visbug.svg +++ b/assets/visbug.svg @@ -1,7 +1,7 @@ - PixelBug Copy 2 + VisBug Copy 2 Created with Sketch. @@ -13,7 +13,7 @@ - + @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/extension/manifest.json b/extension/manifest.json index 13417fe5..001aad48 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -10,7 +10,7 @@ "background": { "persistent": true, "scripts": [ - "pixelbug.js" + "visbug.js" ] }, "browser_action": { diff --git a/extension/pixelbug.js b/extension/visbug.js similarity index 100% rename from extension/pixelbug.js rename to extension/visbug.js