bugfix: javascript setTimeout(...); has semicolon in the end which means it's not an expression but a statement.

This commit is contained in:
ujihisa 2012-10-25 18:55:12 -07:00
parent 020c2f126e
commit 5b78c5c6f6

View File

@ -56,6 +56,6 @@ options word
${1:key}: "${2:value}"}${3:, } ${1:key}: "${2:value}"}${3:, }
snippet timeout snippet timeout
options word options head
setTimeout(function() {${0}}${2:}, ${1:10}); setTimeout(function() {${0}}${2:}, ${1:10});