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

22 lines
505 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-11-08 19:23:39 +05:30
initAutoSave(noteable) {
2018-05-09 12:01:36 +05:30
this.autosave = new Autosave($(this.$refs.noteForm.$refs.textarea), [
'Note',
2018-11-08 19:23:39 +05:30
capitalizeFirstCharacter(noteable.noteable_type),
noteable.id,
2018-05-09 12:01:36 +05:30
]);
2018-03-17 18:26:18 +05:30
},
resetAutoSave() {
this.autosave.reset();
},
setAutoSave() {
this.autosave.save();
},
},
};