Skip to content

Commit 6f158b5

Browse files
authored
Update ajax.phtml
1 parent 67f120f commit 6f158b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

view/base/templates/js/ajax.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
?>
1212
<script>
1313
window.MagefanJs = window.MagefanJs || {};
14-
window.MagefanJs.ajax = function ajax(options) {
14+
window.MagefanJs.ajax = function(options) {
1515
var xmlhttp = new XMLHttpRequest();
1616
xmlhttp.onreadystatechange = function () {
1717
if (xmlhttp.readyState == XMLHttpRequest.DONE && xmlhttp.status == 200) {
@@ -32,4 +32,4 @@
3232
}
3333
xmlhttp.send(options.data);
3434
}
35-
</script>
35+
</script>

0 commit comments

Comments
 (0)