Replaced documentary js placeholders

This commit is contained in:
Louis Pilfold 2014-09-18 15:59:42 +01:00
parent ffcd8b8e2a
commit 1df9d6cc66

View File

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