Support "?" in the title of group tabs

This commit is contained in:
YUKI Hiroshi 2013-08-21 12:28:47 +09:00
parent db4cd9b6f1
commit 158e41caf1

View File

@ -14,7 +14,7 @@
* The Original Code is the Tree Style Tab. * The Original Code is the Tree Style Tab.
* *
* The Initial Developer of the Original Code is YUKI "Piro" Hiroshi. * The Initial Developer of the Original Code is YUKI "Piro" Hiroshi.
* Portions created by the Initial Developer are Copyright (C) 2010-2011 * Portions created by the Initial Developer are Copyright (C) 2010-2013
* the Initial Developer. All Rights Reserved. * the Initial Developer. All Rights Reserved.
* *
* Contributor(s): YUKI "Piro" Hiroshi <piro.outsider.reflex@gmail.com> * Contributor(s): YUKI "Piro" Hiroshi <piro.outsider.reflex@gmail.com>
@ -79,8 +79,8 @@ GroupTab.prototype = {
get title() get title()
{ {
if (this._title === null) { if (this._title === null) {
let title = this.location.href.split('?')[1]; let title = this.location.search.replace(/^\?/, '');
this._title = (this.location.href.indexOf('?') > -1 && title) ? this._title = (title) ?
this.trim(decodeURIComponent(title)) : this.trim(decodeURIComponent(title)) :
'' ; '' ;
} }