Skip to content
Snippets Groups Projects
Commit 155f228d authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

damnit jquery

parent 7d4274e6
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ cache_control.init_app(app)
# Flask Web Routes
@app.route('/')
@cache_for(hours=1)
def map():
# TODO: serve different agency depending on cookie (or special domain)
agency_tag = app.config['AGENCIES'][0]
......@@ -35,6 +36,7 @@ def map():
return r
@app.route('/e<mode>')
@cache_for(hours=1)
def map_embed(mode):
# TODO: serve different agency depending on cookie (or special domain)
agency_tag = app.config['AGENCIES'][0]
......@@ -53,6 +55,7 @@ def ajax():
query = request.args.get('query')
agency_tag = app.config['AGENCIES'][0]
agency = db.session.query(Agency).filter(Agency.tag==agency_tag).one()
@cache_for(hours=1)
def modal(name):
""" Serve contents of a modal popup """
if not name.isalnum():
......
......@@ -70,6 +70,7 @@
No guarantees are made about availability, performance, or suitability of this service for any purpose.
</p>
<script>
$.ajaxSetup({ cache: true });
$.getScript('static/js/embed.js', function() {
BusMap.Embed({
baseUrl: "{{ url_for('map_embed', mode='', _external=True, _scheme='') }}",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment