diff --git a/mithril.js b/mithril.js index 187febf0..688a2c7b 100644 --- a/mithril.js +++ b/mithril.js @@ -409,7 +409,7 @@ Mithril = m = new function app(window, undefined) { m.redraw = function(force) { var cancel = window.cancelAnimationFrame || window.clearTimeout var defer = window.requestAnimationFrame || window.setTimeout - if (lastRedrawId && !force) { + if (lastRedrawId && force !== true) { cancel(lastRedrawId) lastRedrawId = defer(redraw, 0) }