Review of "Notes" version 22

Details Page Preview

Sticky notes for the GNOME Shell desktop.

Extension Homepage
https://github.com/maoschanz/notes-extension-gnome

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

JustPerfection active
I approve this one but please fix these for the next version: 1. Line 102 and 106 (extension.js): Why are you creating gsettings object every time? You have it on `SETTINGS`. Use that instead. 2. About line 362 (extension.js) comment: ```js if (this._timeout_id) { Mainloop.source_remove(this._timeout_id); this._timeout_id = null; } ``` and add this to line 191 (inside timeout callback): ```js this._timeout_id = null; ```