1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-14 17:39:56 +00:00

style(App) eliminate whitespace at the end of code lines (#5735)

This commit is contained in:
Joe Bordes 2021-05-30 20:20:17 +02:00 committed by GitHub
parent 51fd02d9b6
commit 82ec63e711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
73 changed files with 134 additions and 136 deletions

View File

@ -87,7 +87,6 @@ function FramedEngine(options) {
{name: "input",handlerObject: this,handlerMethod: "handleInputEvent"},
{name: "keydown",handlerObject: this.widget,handlerMethod: "handleKeydownEvent"},
{name: "focus",handlerObject: this,handlerMethod: "handleFocusEvent"}
]);
// Add drag and drop event listeners if fileDrop is enabled
if(this.widget.isFileDropEnabled) {

View File

@ -381,7 +381,6 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) {
};
return EditTextWidget;
}
exports.editTextWidgetFactory = editTextWidgetFactory;