Review of "Pidgin IM integration" version 39

Details Page Preview

Integrate Pidgin IMs in the Gnome Shell message tray

Extension Homepage
https://github.com/muffinmad/pidgin-im-gnome-shell-extension

No comments.

Diff Against

Files

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

Shexli (experimental)

Shexli has not produced a result yet.

All Versions

Previous Reviews on this Version

JustPerfection active
To drop Lang on prefs.js file, you can use "() => {}" to have "this" inside your anonymous function. for example: ``` Lang.bind(this, function(check) { this._settings.set_boolean('enable-search-provider', check.get_active()); }) ``` will be: ``` (check) => { this._settings.set_boolean('enable-search-provider', check.get_active()); } ```