From b9aec3d8c7a8402df466dedb98ec79f165eff434 Mon Sep 17 00:00:00 2001 From: Josue Gomez Date: Fri, 26 Apr 2019 19:55:37 -0600 Subject: [PATCH] fix identation --- apps/ajax/templates/ajax/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/ajax/templates/ajax/index.html b/apps/ajax/templates/ajax/index.html index 6555dd5..6217568 100644 --- a/apps/ajax/templates/ajax/index.html +++ b/apps/ajax/templates/ajax/index.html @@ -24,13 +24,13 @@ var dynUrl = "{% url 'subcategories-filtered' 0 %}"; $('#subcategories').empty(); $.ajax({ - type: "GET", - url: dynUrl.replace('0', category.value), - success: function(opts){ - $.each(opts, function(i, opt) { - $('#subcategories').append(''); - }); - } + type: "GET", + url: dynUrl.replace('0', category.value), + success: function(opts){ + $.each(opts, function(i, opt) { + $('#subcategories').append(''); + }); + } }); }