Fix: moved snippets/js2-mode to snippets/js-mode

This commit is contained in:
João Távora
2013-02-18 22:29:25 +00:00
parent 2cf544b67f
commit e3a5f6e0c7
29 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# -*- mode: snippet -*-
# name: prop
# key: prop
# --
var $1 = (function(){
var value = undefined;
return function $1(newValue){
if( $1.arguments.length > 0 ){
value = newValue;
}
return value;
};
})();