Remove useless placeholder text from JS functions

This commit is contained in:
Louis Pilfold 2014-09-12 16:56:36 +01:00
parent 13a14fa514
commit ffcd8b8e2a

View File

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