更新
This commit is contained in:
parent
93bfd92d7a
commit
174b2e75ce
@ -2,7 +2,7 @@
|
|||||||
/* 获取主题当前版本号 */
|
/* 获取主题当前版本号 */
|
||||||
function _getVersion()
|
function _getVersion()
|
||||||
{
|
{
|
||||||
return "6.1.2";
|
return "6.1.3";
|
||||||
};
|
};
|
||||||
|
|
||||||
/* 判断是否是手机 */
|
/* 判断是否是手机 */
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "typecho-joe-next",
|
"name": "typecho-joe-next",
|
||||||
"version": "6.1.2",
|
"version": "6.1.3",
|
||||||
"description": "A Theme Of Typecho",
|
"description": "A Theme Of Typecho",
|
||||||
"main": "index.php",
|
"main": "index.php",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -13978,7 +13978,7 @@
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
$('.cm-mainer').prepend(cm.dom);
|
$('.cm-mainer').prepend(cm.dom);
|
||||||
$('form[name="write_post"]').on('submit', () => $('#text').val(cm.state.doc.toString()));
|
$('#text')[0].form && $('#text')[0].form.addEventListener('submit', () => $('#text').val(cm.state.doc.toString()));
|
||||||
this.cm = cm;
|
this.cm = cm;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('Init_Editor Error: ' + e);
|
console.error('Init_Editor Error: ' + e);
|
||||||
|
@ -513,7 +513,7 @@ class Joe extends JoeAction {
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
$('.cm-mainer').prepend(cm.dom);
|
$('.cm-mainer').prepend(cm.dom);
|
||||||
$('form[name="write_post"]').on('submit', () => $('#text').val(cm.state.doc.toString()));
|
$('#text')[0].form && $('#text')[0].form.addEventListener('submit', () => $('#text').val(cm.state.doc.toString()));
|
||||||
this.cm = cm;
|
this.cm = cm;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('Init_Editor Error: ' + e);
|
console.error('Init_Editor Error: ' + e);
|
||||||
|
Loading…
Reference in New Issue
Block a user