Skip to content
Snippets Groups Projects
Commit 47f40224 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Merge branch 'release-2.3'

parents cfe72655 3716b053
Branches
Tags instance/fid_bbi/staging/20200519
No related merge requests found
...@@ -193,6 +193,11 @@ var Lightbox = { ...@@ -193,6 +193,11 @@ var Lightbox = {
if (typeof Recaptcha !== "undefined" && Recaptcha.widget) { if (typeof Recaptcha !== "undefined" && Recaptcha.widget) {
Recaptcha.reload(); Recaptcha.reload();
} }
// If the lightbox isn't visible, fix that
if(this.shown == false) {
$('#modal').modal('show');
this.shown = true;
}
}, },
/***********************************/ /***********************************/
......
...@@ -114,28 +114,12 @@ function registerAjaxCommentRecord() { ...@@ -114,28 +114,12 @@ function registerAjaxCommentRecord() {
if (response.status == 'OK') { if (response.status == 'OK') {
refreshCommentList(id, recordSource); refreshCommentList(id, recordSource);
$(form).find('textarea[name="comment"]').val(''); $(form).find('textarea[name="comment"]').val('');
} else if (response.status == 'NEED_AUTH') { $(form).find('input[type="submit"]').button('loading');
Lightbox.addCloseAction(function() {
$.ajax({
type: 'POST',
url: url,
data: data,
dataType: 'json',
success:function() {
refreshCommentList(id, recordSource);
$(form).find('textarea[name="comment"]').val('');
}
});
});
return Lightbox.get('Record', 'AddComment', data, data);
} else { } else {
$('#modal').find('.modal-body').html(response.data+'!'); Lightbox.displayError(response.data);
$('#modal').find('.modal-header h3').html('Error!');
$('#modal').modal('show');
} }
} }
}); });
$(form).find('input[type="submit"]').button('loading');
return false; return false;
}); });
// Delete links // Delete links
......
...@@ -13,7 +13,13 @@ ...@@ -13,7 +13,13 @@
<strong><?=$this->transEsc("Your Comment")?></strong> <strong><?=$this->transEsc("Your Comment")?></strong>
</div> </div>
<div class="col-sm-9"> <div class="col-sm-9">
<textarea id="comment" name="comment" class="form-control" rows="3" required></textarea><br/> <? $user = $this->auth()->isLoggedIn() ?>
<input class="btn btn-primary" data-loading-text="<?=$this->transEsc('Submitting') ?>..." type="submit" value="<?=$this->transEsc("Add your comment")?>"/> <? if($user): ?>
<textarea id="comment" name="comment" class="form-control" rows="3" required></textarea><br/>
<input class="btn btn-primary" data-loading-text="<?=$this->transEsc('Submitting') ?>..." type="submit" value="<?=$this->transEsc("Add your comment")?>"/>
<? else: ?>
<textarea id="comment" name="comment" class="form-control" rows="3" disabled></textarea><br/>
<input class="btn btn-primary" type="submit" value="<?=$this->transEsc("You must be logged in first")?>" disabled/>
<? endif; ?>
</div> </div>
</form> </form>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment