Fix missing semicolon

This commit is contained in:
Kijin Sung 2017-03-06 15:43:40 +09:00
parent 11afa4db42
commit b8569aa5ab

View file

@ -41,14 +41,14 @@
if (a1.hostname !== a2.hostname) return false;
if (a1.port !== a2.port) return false;
return true;
}
};
/**
* @brief Get CSRF token for the document
*/
window.getCSRFToken = function() {
return $("meta[name='csrf-token']").attr("content");
}
};
/* Intercept jQuery AJAX calls to add CSRF headers */
$.ajaxPrefilter(function(options) {