Merge branch 'browser_compatibility' into 'dev'
fix issue with IE See merge request hubzilla/core!1460
This commit is contained in:
commit
c10c59db4b
@ -239,7 +239,11 @@ function handle_comment_form(e) {
|
||||
},10000);
|
||||
});
|
||||
|
||||
function commentSaveChanges(convId,isFinal = false) {
|
||||
function commentSaveChanges(convId, isFinal) {
|
||||
|
||||
if(typeof isFinal === 'undefined')
|
||||
isFinal = false;
|
||||
|
||||
if(auto_save_draft) {
|
||||
tmp = $('#' + emptyCommentElm).val();
|
||||
if(tmp) {
|
||||
|
Reference in New Issue
Block a user