From 2d47b8535867b82ee92b949b03234ad3ace61d47 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Mon, 13 Oct 2014 13:47:00 +0100 Subject: [PATCH] JS: Add missing closing quotes --- snippets/javascript/javascript.snippets | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snippets/javascript/javascript.snippets b/snippets/javascript/javascript.snippets index 15faff5..5012a43 100644 --- a/snippets/javascript/javascript.snippets +++ b/snippets/javascript/javascript.snippets @@ -218,16 +218,16 @@ snippet gett getElementBy${1:Id}('${0}') # Elements by class snippet by. - ${1:document}.getElementsByClassName('${0:class}) + ${1:document}.getElementsByClassName('${0:class}') # Element by ID snippet by# - ${1:document}.getElementById('${0:element ID}) + ${1:document}.getElementById('${0:element ID}') # Query selector snippet qs - ${1:document}.querySelector('${0:CSS selector}) + ${1:document}.querySelector('${0:CSS selector}') # Query selector all snippet qsa - ${1:document}.querySelectorAll('${0:CSS selector}) + ${1:document}.querySelectorAll('${0:CSS selector}') # Debugging