Skip to content

Commit

Permalink
[search] Support moving map widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
romainr committed May 28, 2014
1 parent ddddcf6 commit 0d507fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/search/src/search/templates/search.mako
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ ${ commonheader(_('Search'), "search", user, "80px") | n,unicode }
maxWidth: 750,
isScale: true,
onClick: function(d){ viewModel.query.toggleFacet({facet: d, widget_id: $parent.id}) },
onComplete: function(){ viewModel.getWidgetById($parent.id).isLoading(false)} }" />
onComplete: function(){ var widget = viewModel.getWidgetById($parent.id); if (widget != null) {widget.isLoading(false)};} }" />
</div>
</div>
<!-- /ko -->
Expand Down

0 comments on commit 0d507fb

Please sign in to comment.