summaryrefslogtreecommitdiff
path: root/js/dynamic.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dynamic.js')
-rw-r--r--js/dynamic.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/js/dynamic.js b/js/dynamic.js
deleted file mode 100644
index 0e6fc0c..0000000
--- a/js/dynamic.js
+++ /dev/null
@@ -1,25 +0,0 @@
-jQuery(function($) {
- // Append ?print to the URL to trigger print preview mode
- if ((location.href.split('?')[1] || '').indexOf('print') > -1) {
- $('link[media=print]').attr('media', '');
- }
-
- $('.gmap').each(function(){
-
- var apiArguments = $(this).find('dt');
- var apiValues = $(this).find('dd');
-
- if(apiArguments.length) {
- var queryString = 'http://maps.google.com/staticmap?';
-
- for(i = 0; i < apiArguments.length; i++) {
- queryString = queryString + $(apiArguments[i]).text() + '=' + encodeURIComponent($(apiValues[i]).text()) + '&';
- }
- queryString = queryString + 'size=241x370';
-
- $(this).append('<img src="'+queryString+'" alt="map">');
- $(this).find('dl').hide();
- }
- });
-
-}); \ No newline at end of file