Fixed map loading (#240)
* Fixed fonts * Fixed assets * Fixed logo in emails * Switched to immediate email delivery * Fixed prod emails and added deployment tasks * Fixed deployments * Updated README * Added Bike Collectives Core to README * Fixed issue with map loading * Fixed issue with map loading
This commit is contained in:
parent
1441351ba0
commit
3a26b14b71
@ -41,6 +41,10 @@ bundle config local.bikecollectives_core PATH_TO/bikecollectives_core
|
||||
|
||||
Here is a list of the gems we have created so far, if you are a collaborator on this project you may need to become a collaborator on these gems as well. Don't hesitate to make a request, it won't be denied:
|
||||
|
||||
### Bike Collectives Core ###
|
||||
|
||||
[Bike Collectives Core](https://github.com/bikebike/bikecollectives_core) is where models, migrations, and some common controllers and helpers live. This Gem is shared between [Bike Collectives](https://github.com/bikebike/bikecollectives) and [Bike Collectives Workbench](https://github.com/bikebike/bikecollectives_workbench).
|
||||
|
||||
### Lingua Franca ###
|
||||
|
||||
[Lingua Franca](https://github.com/lingua-franca/lingua_franca) provides an easy way to include translatable content and provides a user interface for translators to provide translations. See [Translations](#translations) for best practices on the Bike!Bike! website.
|
||||
|
@ -33,7 +33,7 @@
|
||||
});
|
||||
};
|
||||
|
||||
d3.json('/assets/world-110m.json', function(error, world) {
|
||||
d3.json(document.getElementById('map').getAttribute('data-src'), function(error, world) {
|
||||
if (error) {
|
||||
throw error;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
- content_for :banner do
|
||||
#header-title.map
|
||||
%svg#map.loading{preserveAspectRatio: 'xMinYMin slice', viewBox: "0 0 1880 550"}
|
||||
%svg#map.loading{preserveAspectRatio: 'xMinYMin slice', viewBox: "0 0 1880 550", data: { src: asset_path('world-110m.json') }}
|
||||
#tooltip
|
||||
|
||||
%article
|
||||
|
Loading…
x
Reference in New Issue
Block a user