mirror of
https://github.com/Hopiu/RandomWallpaperGnome3.git
synced 2026-03-16 22:20:24 +00:00
Merge branch 'develop' into feature/inline-preview
This commit is contained in:
commit
6974332ebe
2 changed files with 2 additions and 2 deletions
|
|
@ -109,7 +109,7 @@ let HistoryController = new Lang.Class({
|
|||
* Clear the history and delete all photos except the current one.
|
||||
* @returns {boolean}
|
||||
*/
|
||||
clear() {
|
||||
clear: function() {
|
||||
let firstHistoryElement = this.history[0];
|
||||
|
||||
if (firstHistoryElement)
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ let Logger = new Lang.Class({
|
|||
},
|
||||
|
||||
_log: function(level, message) {
|
||||
global.log(`${this._prefix} [${level}] >> ${this._callingClass} :: ${message}`);
|
||||
global.log(this._prefix + " [" + level + "] >> " + this._callingClass + " :: " + message);
|
||||
},
|
||||
|
||||
debug: function (message) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue