Dev: Rename ext es6 to js

This commit is contained in:
surunzi
2017-10-01 11:30:10 +08:00
parent 55ccdd1b6d
commit 5bbebb686b
34 changed files with 53 additions and 50 deletions

19
src/DevTools/Tool.js Normal file
View File

@@ -0,0 +1,19 @@
export default class Tool
{
init($el)
{
this._$el = $el;
}
show()
{
this._$el.show();
return this;
}
hide()
{
this._$el.hide();
return this;
}
}