debian-mirror-gitlab/app/assets/javascripts/notes/mixins/autosave.js

22 lines
500 B
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import Autosave from '../../autosave';
2018-03-27 19:54:05 +05:30
import { capitalizeFirstCharacter } from '../../lib/utils/text_utility';
2018-03-17 18:26:18 +05:30
export default {
methods: {
2018-03-27 19:54:05 +05:30
initAutoSave(noteableType) {
2018-05-09 12:01:36 +05:30
this.autosave = new Autosave($(this.$refs.noteForm.$refs.textarea), [
'Note',
capitalizeFirstCharacter(noteableType),
this.note.id,
]);
2018-03-17 18:26:18 +05:30
},
resetAutoSave() {
this.autosave.reset();
},
setAutoSave() {
this.autosave.save();
},
},
};