Skip to content

Commit

Permalink
fix search context for IE
Browse files Browse the repository at this point in the history
  • Loading branch information
sithmel committed Nov 12, 2012
1 parent 54532e0 commit ee610fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/HISTORY.txt
Expand Up @@ -4,7 +4,7 @@ Changelog
0.13 (unreleased)
-----------------

- Nothing changed yet.
- fix search context for IE [sithmel]


0.12 (2012-10-24)
Expand Down
2 changes: 1 addition & 1 deletion redomino/flowsearch/browser/resources/flowsearch.js
Expand Up @@ -342,7 +342,7 @@ jQuery.fn.searchtabs = function ($panes) {

$('#flowsearch-breadcrumbs a').click(function () {
var href = $(this).attr('href');
var hash = window.location.hash;
var hash = decodeURIComponent(window.location.hash);
hash = hash.replace(/path\.query:record=[^&]*&/, '');
window.location = href + '/@@flowsearch' + hash;
return false;
Expand Down

0 comments on commit ee610fb

Please sign in to comment.