Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
<ul id="productsHolder-tabs"></ul>
<div id="productsHoldertoggleButtonHolder"></div>
<div id="products"></div>
<div id="wv-events">Loading...</div>
<div id="wv-events"></div>
<div id="wv-data"></div>
</section>
<div id="wv-map" class="wv-map"></div>
Expand Down
3 changes: 3 additions & 0 deletions web/js/naturalEvents/wv.naturalEvents.ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ wv.naturalEvents.ui = wv.naturalEvents.ui || function (models, ui, config, reque
var naturalEventMarkers = wv.naturalEvents.markers(models, ui, config);

var init = function () {
// Display loading information for user feedback on slow network
$('#wv-events').text('Loading...');

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file has changed in the module-loaders branch. Let's try to change the target of this pull request to that branch, and manually adjust it if necessary.


view = ui.map.selected.getView();

request.events.on('queryResults', function () {
Expand Down