update files

This commit is contained in:
nuintun
2015-11-24 22:00:46 +08:00
parent 085a5cf350
commit 32ae3adceb
24 changed files with 149 additions and 142 deletions

View File

@@ -11,7 +11,7 @@ module.exports = function (Terminal){
Terminal.prototype.is = function (term){
var name = this.termName || Terminal.termName;
return (name + '')
.indexOf(term) === 0;
return (name + '').indexOf(term) === 0;
};
};