diff --git a/src/popup/App.vue b/src/popup/App.vue
index d8f7cf5..634fc31 100644
--- a/src/popup/App.vue
+++ b/src/popup/App.vue
@@ -8,8 +8,8 @@
@@ -95,6 +98,7 @@ import Comms from '../ext/lib/comms/Comms';
import VideoPanel from './panels/VideoPanel';
import Settings from '../ext/lib/Settings';
import ExecAction from './js/ExecAction.js';
+import DefaultSettingsPanel from './panels/DefaultSettingsPanel'
export default {
data () {
@@ -131,6 +135,7 @@ export default {
},
components: {
VideoPanel,
+ DefaultSettingsPanel,
},
methods: {
async sleep(t) {
diff --git a/src/popup/panels/SitePanel.vue b/src/popup/panels/DefaultSettingsPanel.vue
similarity index 79%
rename from src/popup/panels/SitePanel.vue
rename to src/popup/panels/DefaultSettingsPanel.vue
index cc9a293..f8794cb 100644
--- a/src/popup/panels/SitePanel.vue
+++ b/src/popup/panels/DefaultSettingsPanel.vue
@@ -11,7 +11,7 @@
@@ -31,7 +31,7 @@
@@ -48,7 +48,7 @@
@@ -61,10 +61,10 @@
Video alignment:
-
@@ -77,9 +77,9 @@
Multi-command actions:
-
@@ -102,7 +102,6 @@ export default {
},
props: [
'settings',
- 'frame',
'scope',
],
created() {
@@ -118,7 +117,7 @@ export default {
},
methods: {
execAction(action) {
- this.exec.exec(action, this.scope, this.frame);
+ this.exec.exec(action, this.scope);
},
getDefault(action) {