Skip to content

Commit

Permalink
Finish up and fix #557
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Sep 19, 2013
1 parent b457d49 commit ee64ad6
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -17,7 +17,7 @@ module Dashboard {

hash(newHash:string = null) {
if (newHash) {
return this.delegate.hash(newHash);
return this.delegate.hash(newHash).search('tab', null);;
//this._hash = newHash;
}
return this._hash;
Expand All @@ -29,7 +29,7 @@ module Dashboard {

path(newPath:string = null) {
if (newPath) {
return this.delegate.path(newPath);
return this.delegate.path(newPath).search('tab', null);
}
return this._path;
}
Expand Down Expand Up @@ -63,7 +63,7 @@ module Dashboard {

url(newValue: string = null) {
if (newValue) {
return this.delegate.url(newValue);
return this.delegate.url(newValue).search('tab', null);
}
return this.absUrl();
}
Expand Down

0 comments on commit ee64ad6

Please sign in to comment.