|
@@ -44,7 +44,10 @@ function getHeader(url) {
|
|
|
editTarget = url;
|
|
|
mdType = url.split('/')[1];
|
|
|
aa = data[0]['content'];
|
|
|
- const content = _.get(data, '0.content', '');
|
|
|
+ for (var toi of tagOptionIds) {
|
|
|
+ $('#' + toi).val("");
|
|
|
+ }
|
|
|
+ //const content = _.get(data, '0.content', '');
|
|
|
blocks = parseMd(aa);
|
|
|
oTitle = $("#ctitle").val();
|
|
|
// $("#dialog-form").dialog();
|
|
@@ -208,15 +211,17 @@ function parseMd(content) {
|
|
|
}
|
|
|
if (line.includes('tags: ')) {
|
|
|
//alert(line);
|
|
|
- $('#ctags').val(line.replace('tags: ', '').replaceAll('\"', ''));
|
|
|
- tags = $('#ctags').val().split(',');
|
|
|
- for (var tag of tags) {
|
|
|
- //console.log(tag);
|
|
|
- for (var toi of tagOptionIds) {
|
|
|
- $('#'+toi+' option').each(function(){
|
|
|
- if(this.value == tag)
|
|
|
- this.selected = true;
|
|
|
- });
|
|
|
+ if ($('#ctags').length > 0) {
|
|
|
+ $('#ctags').val(line.replace('tags: ', '').replaceAll('\"', ''));
|
|
|
+ tags = $('#ctags').val().split(',');
|
|
|
+ for (var tag of tags) {
|
|
|
+ //console.log(tag);
|
|
|
+ for (var toi of tagOptionIds) {
|
|
|
+ $('#' + toi + ' option').each(function () {
|
|
|
+ if (this.value == tag)
|
|
|
+ this.selected = true;
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -317,8 +322,8 @@ function GetMdHeader() {
|
|
|
|
|
|
tags = [];
|
|
|
for (var toi of tagOptionIds) {
|
|
|
- if($('#'+toi).val() != "")
|
|
|
- tags.push($('#'+toi).val());
|
|
|
+ if ($('#' + toi).val() != "")
|
|
|
+ tags.push($('#' + toi).val());
|
|
|
}
|
|
|
rContent += 'tags: "' + tags.join(',') + '"\n';
|
|
|
//rContent += 'tags: "' + ($('#ctags').val() == 'undefined' ? "" : $('#ctags').val()) + '"\n';
|