Changeset 8029


Ignore:
Timestamp:
Dec 7, 2010, 10:41:41 PM (13 years ago)
Author:
rvelices
Message:

rv_gmaps do not use prototype anymore on the picture page

Location:
extensions/rv_gmaps/trunk
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/rv_gmaps/trunk/changelog.txt

    r7033 r8029  
     12.1.c
     2- do not use prototype anymore on the picture page (still using on map page)
     3
    142.1.b
    25- allow gps exif metadata synchronisation with high resolution images
  • extensions/rv_gmaps/trunk/template/picture_map_content.tpl

    r6670 r8029  
    11{html_head}
    22<script src="http://maps.google.com/maps/api/js?sensor=false&amp;hl={$lang_info.code}" type="text/javascript"></script>
    3 {* <script src="{$PLUGIN_ROOT_URL}/template/windows_13/javascripts/prototype.js" type="text/javascript"></script> *}
    4 <script src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js" type="text/javascript"></script>
    5 <script src="{$PLUGIN_ROOT_URL}/template/windows_13/javascripts/window.js" type="text/javascript" defer="defer"></script>
    6 <link href="{$PLUGIN_ROOT_URL}/template/windows_13/themes/default.css" rel="stylesheet" type="text/css">
    7 <link href="{$PLUGIN_ROOT_URL}/template/windows_13/themes/alphacube.css" rel="stylesheet" type="text/css">
     3<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js" type="text/javascript"></script>
     4<script src="{$PLUGIN_ROOT_URL}/template/nyroModal/jquery.nyroModal-1.6.2.js" type="text/javascript"></script>
     5<link href="{$PLUGIN_ROOT_URL}/template/nyroModal/nyroModal.css" rel="stylesheet" type="text/css">
    86
    97<style type="text/css">{literal}
     
    6563function blowupUrl(theUrl)
    6664{
    67         var win = new Window({
    68                 title: document.title,
     65        jQuery.fx.off = true;
     66        jQuery.nyroModalManual( {
    6967                url: theUrl,
    70                 classname: "alphacube",
    71                 left: 0, top: 0,
    72                 width:"640", height:"480",
    73                 minimizable: false,
    74                 maximizable: false,
    75                 draggable: false,
    76                 resizable: false,
    77                 destroyOnClose: true,
    78                 hideEffect: Element.hide,
    79                 showEffectOptions: {duration:1.5}
     68                forceType: 'iframe',
     69                width: 1920
    8070        });
    81 
    82         win.setConstraint(true, {top:20, left:20, bottom:30, right:20} );
    83         win.maximize();
    84         win.showCenter(true, 20, 20);
    8571        return false;
    8672}
    8773
    88 Event.observe(window, 'load', onLoad );
     74jQuery(document).ready( onLoad );
    8975//]]>
    9076{/literal}</script>
Note: See TracChangeset for help on using the changeset viewer.