Add missing semicolon

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12
2018-07-15 16:43:14 -04:00
parent 846e3e4184
commit dd77a6af58

View File

@@ -48,7 +48,7 @@ var customTooltips = function(tooltip) {
// Limit rendering to once every 50ms. This gives the DOM time to react,
// and avoids "lag" caused by not giving the DOM time to reapply CSS.
var now = Date.now()
var now = Date.now();
if(now - lastTooltipTime < 50) {
return;
}