mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:13:09 +02:00
🎨
This commit is contained in:
parent
f1301a4780
commit
ba1c823fb1
4 changed files with 22 additions and 0 deletions
|
@ -219,6 +219,7 @@
|
||||||
"vue-router": "3.0.1",
|
"vue-router": "3.0.1",
|
||||||
"vue-style-loader": "4.1.2",
|
"vue-style-loader": "4.1.2",
|
||||||
"vue-svg-inline-loader": "1.2.0",
|
"vue-svg-inline-loader": "1.2.0",
|
||||||
|
"vue-sweetalert2": "1.5.5",
|
||||||
"vue-template-compiler": "2.5.17",
|
"vue-template-compiler": "2.5.17",
|
||||||
"vuedraggable": "2.16.0",
|
"vuedraggable": "2.16.0",
|
||||||
"vuewordcloud": "18.7.11",
|
"vuewordcloud": "18.7.11",
|
||||||
|
|
|
@ -130,3 +130,16 @@ pre
|
||||||
|
|
||||||
[data-fa]
|
[data-fa]
|
||||||
display inline-block
|
display inline-block
|
||||||
|
|
||||||
|
.swal2-popup
|
||||||
|
background var(--face) !important
|
||||||
|
|
||||||
|
.swal-icon-only
|
||||||
|
width 180px !important
|
||||||
|
|
||||||
|
> .swal2-header
|
||||||
|
> .swal2-icon
|
||||||
|
margin 1.25em auto 1.875em
|
||||||
|
|
||||||
|
> .swal2-title
|
||||||
|
display none
|
||||||
|
|
|
@ -103,6 +103,12 @@ export default Vue.extend({
|
||||||
(this as any).api('notes/favorites/create', {
|
(this as any).api('notes/favorites/create', {
|
||||||
noteId: this.note.id
|
noteId: this.note.id
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
|
this.$swal({
|
||||||
|
type: 'success',
|
||||||
|
showConfirmButton: false,
|
||||||
|
timer: 1250,
|
||||||
|
customClass: 'swal-icon-only'
|
||||||
|
});
|
||||||
this.destroyDom();
|
this.destroyDom();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,6 +8,7 @@ import VueRouter from 'vue-router';
|
||||||
import * as TreeView from 'vue-json-tree-view';
|
import * as TreeView from 'vue-json-tree-view';
|
||||||
import VAnimateCss from 'v-animate-css';
|
import VAnimateCss from 'v-animate-css';
|
||||||
import VModal from 'vue-js-modal';
|
import VModal from 'vue-js-modal';
|
||||||
|
import VueSweetalert2 from 'vue-sweetalert2';
|
||||||
|
|
||||||
import VueHotkey from './common/hotkey';
|
import VueHotkey from './common/hotkey';
|
||||||
import App from './app.vue';
|
import App from './app.vue';
|
||||||
|
@ -26,6 +27,7 @@ Vue.use(TreeView);
|
||||||
Vue.use(VAnimateCss);
|
Vue.use(VAnimateCss);
|
||||||
Vue.use(VModal);
|
Vue.use(VModal);
|
||||||
Vue.use(VueHotkey);
|
Vue.use(VueHotkey);
|
||||||
|
Vue.use(VueSweetalert2);
|
||||||
|
|
||||||
// Register global directives
|
// Register global directives
|
||||||
require('./common/views/directives');
|
require('./common/views/directives');
|
||||||
|
|
Loading…
Reference in a new issue