nodebb-plugin-shoutbox
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "nodebb-plugin-shoutbox", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "NodeBB Shoutbox Plugin", | ||
@@ -5,0 +5,0 @@ "main": "library.js", |
@@ -8,3 +8,3 @@ 'use strict'; | ||
sbInstance.dom.container.find('.shoutbox-message-input') | ||
.off('keyup.typing').on('keyup.typing', handle); | ||
.off('keyup.typing').on('keyup.typing', utils.throttle(handle, 250)); | ||
}; | ||
@@ -11,0 +11,0 @@ |
491190