stricter url fix in aspect-filters
This commit is contained in:
parent
5358ac32a1
commit
14ca5e1cc1
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ $(document).ready(function(){
|
||||||
var button = $(this),
|
var button = $(this),
|
||||||
guid = button.attr('data-guid');
|
guid = button.attr('data-guid');
|
||||||
|
|
||||||
if(guid && location.href.match(guid)){
|
if(guid && location.href.search("a_ids..="+guid) != -1){
|
||||||
button.addClass('selected');
|
button.addClass('selected');
|
||||||
selectedGUIDS.push(guid);
|
selectedGUIDS.push(guid);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue