Remove all references to uikit.

This commit is contained in:
FireMasterK
2022-01-12 12:13:04 +00:00
parent 05d7853ef0
commit 3d188f2cc8
7 changed files with 26 additions and 34 deletions

View File

@@ -34,8 +34,6 @@ library.add(
faTv,
);
// import("uikit/dist/css/uikit-core.css");
import router from "@/router/router.js";
import App from "./App.vue";
@@ -164,7 +162,7 @@ const mixin = {
const regex = /(((https?:\/\/)|(www\.))[^\s]+)/g;
if (!string) return "";
return string.replace(regex, url => {
return `<a class="uk-button uk-button-text" href="${url}" target="_blank">${url}</a>`;
return `<a href="${url}" target="_blank">${url}</a>`;
});
},
async updateWatched(videos) {