We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f120f commit 6f158b5Copy full SHA for 6f158b5
view/base/templates/js/ajax.phtml
@@ -11,7 +11,7 @@
11
?>
12
<script>
13
window.MagefanJs = window.MagefanJs || {};
14
- window.MagefanJs.ajax = function ajax(options) {
+ window.MagefanJs.ajax = function(options) {
15
var xmlhttp = new XMLHttpRequest();
16
xmlhttp.onreadystatechange = function () {
17
if (xmlhttp.readyState == XMLHttpRequest.DONE && xmlhttp.status == 200) {
@@ -32,4 +32,4 @@
32
}
33
xmlhttp.send(options.data);
34
35
-</script>
+</script>
0 commit comments