From f0f402d832b1c2c5b188424b00aebad4ea38e82b Mon Sep 17 00:00:00 2001 From: 7dir Date: Thu, 26 Jan 2017 03:11:55 +0900 Subject: [PATCH] Update ajax_request_without_jquery.md --- chapters/ajax/ajax_request_without_jquery.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/ajax/ajax_request_without_jquery.md b/chapters/ajax/ajax_request_without_jquery.md index 8dd9530..b9fd999 100644 --- a/chapters/ajax/ajax_request_without_jquery.md +++ b/chapters/ajax/ajax_request_without_jquery.md @@ -40,7 +40,7 @@ When the button is clicked, we want to send an Ajax request to the server to ret Next, create the CoffeeScript file to hold the page logic. The code in this file creates a function to be called when the Load Data button is clicked. -{% highlight coffeescript linenos %} +{% highlight coffeescript %} # XMLHttpRequest.coffee loadDataFromServer = -> req = new XMLHttpRequest()