Ignore:
Timestamp:
May 21, 2011, 12:33:41 PM (13 years ago)
Author:
grum
Message:

bug:2308 - HD Picture are not displayed

Location:
extensions/gally/gally-default
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • extensions/gally/gally-default/js/gallyjs-tpp.js

    r10736 r10972  
    603603  this.getInterfaceProp = function () { return interface; };
    604604  this.getTabsProp = function () { return tabs; };
     605  this.openDisplayHigh = function (url) { openDisplayHigh(url); };
    605606
    606607  init();
  • extensions/gally/gally-default/js/gallyjs-tpp.min.js

    r10736 r10972  
    113113else
    114114{image.zoomMode="full";}
    115 $("#theImgHighZoomButton").toggleClass('full').toggleClass('fit');displayZoomHigh();};this.closeDisplayHigh=function(){closeDisplayHigh();};this.switchZoomHigh=function(){switchZoomHigh();};this.getImageProp=function(){return image;};this.getInterfaceProp=function(){return interface;};this.getTabsProp=function(){return tabs;};init();}
     115$("#theImgHighZoomButton").toggleClass('full').toggleClass('fit');displayZoomHigh();};this.closeDisplayHigh=function(){closeDisplayHigh();};this.switchZoomHigh=function(){switchZoomHigh();};this.getImageProp=function(){return image;};this.getInterfaceProp=function(){return interface;};this.getTabsProp=function(){return tabs;};this.openDisplayHigh=function(url){openDisplayHigh(url);};init();}
  • extensions/gally/gally-default/release_notes.txt

    r10937 r10972  
    135135  |         |            |   . compatibility with piwigo 2.2
    136136  |         |            |
    137   | 1.4.3   | 2011-05-18 | * mantis feature:2305
     137  | 1.4.3   | 2011-05-21 | * mantis feature:2305
    138138  |         |            |   . local file is hardcoded
     139  |         |            |
     140  |         |            | * mantis bug:2306
     141  |         |            |   . Some translation keys are not correct
     142  |         |            |
     143  |         |            | * mantis bug:2308
     144  |         |            |   . HD Picture are not displayed
    139145  |         |            |
    140146  |         |            |
  • extensions/gally/gally-default/template/picture.tpl

    r10971 r10972  
    4646
    4747          {if #displayHighResIcon#=="yes" and isset($high) }
    48             <a id="icon_high_res" class="button pointer" onclick="openDisplayHigh('{$high.U_HIGH}');" title="" rel="nofollow" ></a>
     48            <a id="icon_high_res" class="button pointer" onclick="gallyPP.openDisplayHigh('{$high.U_HIGH}');" title="" rel="nofollow" ></a>
    4949          {/if}
    5050
  • extensions/gally/gally-default/template/picture_content.tpl

    r6109 r10972  
    11<!-- **GBL** >PICTURE_CONTENT> -->
    22
    3   <div id="theImgContainer" {if isset($high) }onclick="openDisplayHigh('{$high.U_HIGH}');" class="pointer"{/if}>
     3  <div id="theImgContainer" {if isset($high) }onclick="gallyPP.openDisplayHigh('{$high.U_HIGH}');" class="pointer"{/if}>
    44    <img id="theImg" src="{$SRC_IMG}" style="width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;" alt="{$ALT_IMG}"
    55      {if isset($COMMENT_IMG)}
Note: See TracChangeset for help on using the changeset viewer.