updates and bug fixes
parent
8b1d36dfb9
commit
476d20606d
|
@ -117,6 +117,8 @@ export default {
|
||||||
mounted () {
|
mounted () {
|
||||||
window.addEventListener('keydown', this.keyEvent)
|
window.addEventListener('keydown', this.keyEvent)
|
||||||
window.addEventListener('scroll', event => {
|
window.addEventListener('scroll', event => {
|
||||||
|
if (this.req.kind !== 'listing') return
|
||||||
|
|
||||||
let top = 112 - window.scrollY
|
let top = 112 - window.scrollY
|
||||||
|
|
||||||
if (top < 64) {
|
if (top < 64) {
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
|
|
||||||
hugo.schedule = function (event) {
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
let date = document.getElementById('date').value;
|
|
||||||
if(document.getElementById('publishDate')) {
|
|
||||||
date = document.getElementById('publishDate').value;
|
|
||||||
}
|
|
||||||
|
|
||||||
buttons.setLoading('publish');
|
|
||||||
|
|
||||||
let data = JSON.stringify(form2js(document.querySelector('form'))),
|
|
||||||
headers = {
|
|
||||||
'Kind': document.getElementById('editor').dataset.kind,
|
|
||||||
'Schedule': 'true'
|
|
||||||
};
|
|
||||||
|
|
||||||
webdav.put(window.location.pathname, data, headers)
|
|
||||||
.then(() => {
|
|
||||||
buttons.setDone('publish');
|
|
||||||
})
|
|
||||||
.catch(e => {
|
|
||||||
console.log(e);
|
|
||||||
buttons.setDone('publish', false)
|
|
||||||
})
|
|
||||||
}
|
|
Loading…
Reference in New Issue