From e8a7ab13c78de131743986586d5cef09b2380d03 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 24 Oct 2012 14:49:02 -0400 Subject: [PATCH] Don't load favorite lists via AJAX in mobile UI (it can cause weird side effects). --- themes/jquerymobile/templates/Recommend/FavoriteFacets.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/jquerymobile/templates/Recommend/FavoriteFacets.phtml b/themes/jquerymobile/templates/Recommend/FavoriteFacets.phtml index 8861a443f4b..e5a5a90ec34 100644 --- a/themes/jquerymobile/templates/Recommend/FavoriteFacets.phtml +++ b/themes/jquerymobile/templates/Recommend/FavoriteFacets.phtml @@ -8,7 +8,7 @@ <? if ($current['isApplied']): ?> <?=$this->escapeHtml($current['displayText'])?> <? else: ?> - <a href="<?=$this->url('userList', array('id' => $current['value']))?>"><?=$this->escapeHtml($current['displayText'])?></a> + <a data-ajax="false" href="<?=$this->url('userList', array('id' => $current['value']))?>"><?=$this->escapeHtml($current['displayText'])?></a> <? endif; ?> <span class="ui-li-count"><?=$this->escapeHtml($current['count'])?></span> </li> -- GitLab