return reference to allow chained calls

This commit is contained in:
Andrey Sidorov 2011-07-26 09:29:54 +10:00
parent 30f2f74d59
commit 4d735645dc

View file

@ -133,10 +133,12 @@ util.inherits(Window, EventEmitter);
Window.prototype.map = function() { Window.prototype.map = function() {
this.xclient.MapWindow(this.id); this.xclient.MapWindow(this.id);
return this;
} }
Window.prototype.unmap = function() { Window.prototype.unmap = function() {
this.xclient.UnmapWindow(this.id); this.xclient.UnmapWindow(this.id);
return this;
} }
Window.prototype.handle = function(handlers) { Window.prototype.handle = function(handlers) {
@ -151,6 +153,7 @@ Window.prototype.getProperty = function(name, cb) {
cb(prop); cb(prop);
}); });
}); });
return this;
} }
module.exports = Window; module.exports = Window;