- Fix (regression): Bad name on function passed to path.js

- Linting (ESLint): Fix semi-colon error
This commit is contained in:
Brett Zamir
2018-05-30 08:25:56 +08:00
parent d098dc0914
commit 81dc19cc17
8 changed files with 40 additions and 20 deletions

View File

@@ -1884,6 +1884,6 @@ const jPicker = function ($) {
}
};
return $;
}
};
export default jPicker;

View File

@@ -664,7 +664,7 @@ pathModule.init({
getCurrentMode () {
return currentMode;
},
setCurrentmode (cm) {
setCurrentMode (cm) {
currentMode = cm;
return currentMode;
},