Skip to content

Commit

Permalink
rename room.pulse to room._pulse
Browse files Browse the repository at this point in the history
  • Loading branch information
incompl committed Nov 27, 2013
1 parent 45784c9 commit d79f8d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/server/cloak/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module.exports = (function() {
room.delete();
}
else {
room.pulse();
room._pulse();
}
});

Expand Down
2 changes: 1 addition & 1 deletion src/server/cloak/room.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = (function() {

Room.prototype = {

pulse: function() {
_pulse: function() {
this._emitEvent('pulse', this);
},

Expand Down

0 comments on commit d79f8d3

Please sign in to comment.