1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Changed export to module.exports

This commit is contained in:
Laurent Cozic
2017-11-03 00:13:17 +00:00
parent 7781fbad76
commit 8a78ee5df6
78 changed files with 78 additions and 78 deletions

View File

@ -435,4 +435,4 @@ BaseItem.syncItemDefinitions_ = [
{ type: BaseModel.TYPE_NOTE_TAG, className: 'NoteTag' },
];
export { BaseItem };
module.exports = { BaseItem };

View File

@ -152,4 +152,4 @@ class Folder extends BaseItem {
}
export { Folder };
module.exports = { Folder };

View File

@ -25,4 +25,4 @@ class NoteTag extends BaseItem {
}
export { NoteTag };
module.exports = { NoteTag };

View File

@ -430,4 +430,4 @@ class Note extends BaseItem {
Note.updateGeolocationEnabled_ = true;
Note.geolocationUpdating_ = false;
export { Note };
module.exports = { Note };

View File

@ -80,4 +80,4 @@ class Resource extends BaseItem {
Resource.IMAGE_MAX_DIMENSION = 1920;
export { Resource };
module.exports = { Resource };

View File

@ -386,4 +386,4 @@ Setting.constants_ = {
tempDir: '',
}
export { Setting };
module.exports = { Setting };

View File

@ -89,4 +89,4 @@ class Tag extends BaseItem {
}
export { Tag };
module.exports = { Tag };