Skip to content

Commit

Permalink
replaced var with const (daattali#1049)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentTam authored Oct 16, 2022
1 parent 685cf73 commit 6ad1fcd
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions assets/js/staticman.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,25 @@ layout: null
---

(function ($) {
var $comments = $('.js-comments');

$('#new_comment').submit(function () {
var form = this;
const form = this;

$(form).addClass('disabled');

{% assign sm = site.staticman -%}
var endpoint = '{{ sm.endpoint }}';
var repository = '{{ sm.repository }}';
var branch = '{{ sm.branch }}';
let url = endpoint + repository + '/' + branch + '/comments';
let data = $(this).serialize();
const endpoint = '{{ sm.endpoint }}';
const repository = '{{ sm.repository }}';
const branch = '{{ sm.branch }}';
const url = endpoint + repository + '/' + branch + '/comments';
const data = $(this).serialize();

var xhr = new XMLHttpRequest();
const xhr = new XMLHttpRequest();
xhr.open("POST", url);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
xhr.onreadystatechange = function () {
if(xhr.readyState === XMLHttpRequest.DONE) {
var status = xhr.status;
const status = xhr.status;
if (status >= 200 && status < 400) {
formSubmitted();
} else {
Expand Down

0 comments on commit 6ad1fcd

Please sign in to comment.