Merge pull request #448 from lpil/remove-js-placeholders

JS: Remove useless placeholder text from functions
This commit is contained in:
Holger Rapp 2014-09-18 19:12:43 +02:00
commit 0939e8e578

View File

@ -1,12 +1,12 @@
# prototype # prototype
snippet proto snippet proto
${1:class_name}.prototype.${2:method_name} = function(${3:first_argument}) { ${1:class_name}.prototype.${2:method_name} = function(${3}) {
${0:// body...} ${0}
}; };
# Function # Function
snippet fun snippet fun
function ${1:function_name}(${2:argument}) { function ${1:function_name}(${2}) {
${0:// body...} ${0}
} }
# Anonymous Function # Anonymous Function
snippet f snippet f