From ea45c6cefe3f8245d708a0fccec915d04b47b83c Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 24 Sep 2015 10:23:32 -0400 Subject: [PATCH] refactor(dom) setHistory: pTitle -> title --- lib/client/dom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; };