Remove useless placeholder text from JS functions
This commit is contained in:
parent
13a14fa514
commit
ffcd8b8e2a
@ -1,12 +1,12 @@
|
|||||||
# prototype
|
# prototype
|
||||||
snippet proto
|
snippet proto
|
||||||
${1:class_name}.prototype.${2:method_name} = function(${3:first_argument}) {
|
${1}.prototype.${2} = function(${3}) {
|
||||||
${0:// body...}
|
${0}
|
||||||
};
|
};
|
||||||
# Function
|
# Function
|
||||||
snippet fun
|
snippet fun
|
||||||
function ${1:function_name}(${2:argument}) {
|
function ${1}(${2}) {
|
||||||
${0:// body...}
|
${0}
|
||||||
}
|
}
|
||||||
# Anonymous Function
|
# Anonymous Function
|
||||||
snippet f
|
snippet f
|
||||||
|
Loading…
Reference in New Issue
Block a user