summaryrefslogtreecommitdiffstats
path: root/js/app
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-08-21 10:14:45 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2021-09-02 11:32:44 +0200
commit1f8880c8dec2863cf9d14af4e62b6b5f527cbeb3 (patch)
tree2c47cc4c58e060e70841fff8af9c1b7d6809a862 /js/app
parent1be66add82c48767df741cc65c1178002af09963 (diff)
Revert Add Vue and ng-vue packages
Diffstat (limited to 'js/app')
-rw-r--r--js/app/App.js3
-rw-r--r--js/app/VueComponents.js3
2 files changed, 1 insertions, 5 deletions
diff --git a/js/app/App.js b/js/app/App.js
index 55c8ef45e..9e4ee5621 100644
--- a/js/app/App.js
+++ b/js/app/App.js
@@ -15,5 +15,4 @@ $('#content.app-news')
.attr('ng-controller', 'AppController as App');
/* jshint unused: false */
-var app = angular.module('News', ['ngRoute', 'ngSanitize', 'ngAnimate', 'ngVue']);
-
+var app = angular.module('News', ['ngRoute', 'ngSanitize', 'ngAnimate']);
diff --git a/js/app/VueComponents.js b/js/app/VueComponents.js
deleted file mode 100644
index f9ec405ee..000000000
--- a/js/app/VueComponents.js
+++ /dev/null
@@ -1,3 +0,0 @@
-var IconLinkCompact = require('../vue_components/IconLinkCompact.vue').default;
-var iconLinkCompactComponent = Vue.component('IconLinkCompact', IconLinkCompact);
-app.value('IconLinkCompact', iconLinkCompactComponent);