diff --git a/www/common/sframe-common-title.js b/www/common/sframe-common-title.js index 61a5fb46e..3df144b0e 100644 --- a/www/common/sframe-common-title.js +++ b/www/common/sframe-common-title.js @@ -34,7 +34,7 @@ define(['jquery'], function ($) { exp.updateTitle = function (newTitle, cb) { cb = cb || $.noop; - if (newTitle === exp.title) { return; } + if (newTitle === exp.title) { return void cb(); } metadataMgr.updateTitle(newTitle); titleUpdated = cb; };