diff --git a/lib/client/dom.js b/lib/client/dom.js index c1735599..9f57c278 100644 --- a/lib/client/dom.js +++ b/lib/client/dom.js @@ -979,13 +979,13 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog; /** * setting history wrapper */ - this.setHistory = function(data, pTitle, url) { + this.setHistory = function(data, title, url) { var ret = window.history; url = CloudCmd.PREFIX + url; if (ret) - history.pushState(data, pTitle, url); + history.pushState(data, title, url); return ret; };