s/that/self/g

This commit is contained in:
Matthew Hodgson 2015-07-17 21:59:48 +01:00
parent 0d34728190
commit 10cdf46c2c
10 changed files with 83 additions and 38 deletions

View file

@ -43,9 +43,9 @@ module.exports = {
enable: function() {
if (!this.havePermission()) {
var that = this;
var self = this;
global.Notification.requestPermission(function() {
that.forceUpdate();
self.forceUpdate();
});
}