add cancel button to editor, fix issue with autosave of categories
This commit is contained in:
parent
62bc5e8051
commit
5dae0ef4f9
@ -128,6 +128,7 @@ class Article_edit extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Edit Article'),
|
||||
'$delete' => ((($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) ? t('Delete') : false),
|
||||
'$id' => $itm[0]['id'],
|
||||
'$cancel' => t('Cancel'),
|
||||
'$editor' => $editor
|
||||
));
|
||||
|
||||
|
@ -128,6 +128,7 @@ class Card_edit extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Edit Card'),
|
||||
'$delete' => ((($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) ? t('Delete') : false),
|
||||
'$id' => $itm[0]['id'],
|
||||
'$cancel' => t('Cancel'),
|
||||
'$editor' => $editor
|
||||
));
|
||||
|
||||
|
@ -138,6 +138,7 @@ class Editblock extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Edit Block'),
|
||||
'$delete' => ((($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) ? t('Delete') : false),
|
||||
'$id' => $itm[0]['id'],
|
||||
'$cancel' => t('Cancel'),
|
||||
'$editor' => $editor
|
||||
));
|
||||
|
||||
|
@ -137,6 +137,7 @@ class Editlayout extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Edit Layout'),
|
||||
'$delete' => ((($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) ? t('Delete') : false),
|
||||
'$id' => $itm[0]['id'],
|
||||
'$cancel' => t('Cancel'),
|
||||
'$editor' => $editor
|
||||
));
|
||||
|
||||
|
@ -106,6 +106,7 @@ class Editpost extends \Zotlabs\Web\Controller {
|
||||
|
||||
$o .= replace_macros(get_markup_template('edpost_head.tpl'), array(
|
||||
'$title' => t('Edit post'),
|
||||
'$cancel' => t('Cancel'),
|
||||
'$editor' => $editor
|
||||
));
|
||||
|
||||
|
@ -166,6 +166,7 @@ class Editwebpage extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Edit Webpage'),
|
||||
'$delete' => ((($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) ? t('Delete') : false),
|
||||
'$editor' => $editor,
|
||||
'$cancel' => t('Cancel'),
|
||||
'$id' => $itm[0]['id']
|
||||
));
|
||||
|
||||
|
@ -142,6 +142,7 @@ class Rpost extends \Zotlabs\Web\Controller {
|
||||
|
||||
$o .= replace_macros(get_markup_template('edpost_head.tpl'), array(
|
||||
'$title' => t('Edit post'),
|
||||
'$cancel' => '',
|
||||
'$editor' => $editor
|
||||
));
|
||||
|
||||
|
@ -1,10 +1,13 @@
|
||||
<div class="generic-content-wrapper">
|
||||
<div class="section-title-wrapper">
|
||||
{{if $delete}}
|
||||
<div class="pull-right">
|
||||
{{if $cancel}}
|
||||
<button id="dbtn-cancel" class="btn btn-warning btn-sm" onclick="itemCancel(); return false;">{{$cancel}}</button>
|
||||
{{/if}}
|
||||
{{if $delete}}
|
||||
<a href="item/drop/{{$id}}" id="delete-btn" class="btn btn-sm btn-danger" onclick="return confirmDelete();"><i class="fa fa-trash-o"></i> {{$delete}}</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/if}}
|
||||
<h2>{{$title}}</h2>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
@ -357,6 +357,14 @@ var activeCommentText = '';
|
||||
}
|
||||
}
|
||||
|
||||
function itemCancel() {
|
||||
$("#jot-title").val('');
|
||||
$("#profile-jot-text").val('');
|
||||
$("#jot-category").val('');
|
||||
postSaveChanges('clean','');
|
||||
window.history.back();
|
||||
}
|
||||
|
||||
function itemFiler(id) {
|
||||
if($('#item-filer-dialog').length)
|
||||
$('#item-filer-dialog').remove();
|
||||
@ -575,7 +583,7 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del
|
||||
localStorage.setItem("post_title" + postid, $("#jot-title").val());
|
||||
localStorage.setItem("post_body" + postid, $("#profile-jot-text").val());
|
||||
if($("#jot-category").length)
|
||||
localStorage.setItem("post_category + postid", $("#jot-category").val());
|
||||
localStorage.setItem("post_category" + postid, $("#jot-category").val());
|
||||
}
|
||||
|
||||
if(action == 'start') {
|
||||
|
Reference in New Issue
Block a user