BigW Consortium Gitlab

Commit 8bdd88a4 by Phil Hughes

Checks if DiffNotesApp is defined

parent ee62a2fd
......@@ -120,7 +120,7 @@
return function(data) {
$('#diffs').html(data.html);
if (DiffNotesApp) {
if (typeof DiffNotesApp !== 'undefined') {
DiffNotesApp.compileComponents();
}
......
......@@ -300,7 +300,7 @@
discussionContainer.append(note_html);
}
if (DiffNotesApp) {
if (typeof DiffNotesApp !== 'undefined') {
DiffNotesApp.compileComponents();
}
......@@ -429,7 +429,7 @@
$note_li.replaceWith($html);
if (DiffNotesApp) {
if (typeof DiffNotesApp !== 'undefined') {
DiffNotesApp.compileComponents();
}
};
......@@ -593,7 +593,7 @@
if (canResolve === 'false' || !form.closest('.notes_content').find('.note:not(.system-note)').length) {
form.find('comment-and-resolve-btn').remove();
} else if (DiffNotesApp) {
} else if (typeof DiffNotesApp !== 'undefined') {
var $commentBtn = form.find('comment-and-resolve-btn');
$commentBtn
.attr(':discussion-id', "'" + dataHolder.data('discussionId') + "'");
......
......@@ -36,13 +36,13 @@
if (!this.isOpen && !this.hasError) {
this.content.hide();
this.collapsedContent.show();
if (DiffNotesApp) {
if (typeof DiffNotesApp !== 'undefined') {
DiffNotesApp.compileComponents();
}
} else if (this.content) {
this.collapsedContent.hide();
this.content.show();
if (DiffNotesApp) {
if (typeof DiffNotesApp !== 'undefined') {
DiffNotesApp.compileComponents();
}
} else {
......@@ -59,7 +59,7 @@
if (data.html) {
_this.content = $(data.html);
_this.content.syntaxHighlight();
if (DiffNotesApp) {
if (typeof DiffNotesApp !== 'undefined') {
DiffNotesApp.compileComponents();
}
} else {
......
Markdown is supported
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