Ignore:
Timestamp:
06/16/09 11:47:05 (3 years ago)
Author:
sam
Message:

merge to #477

Location:
branches/sc36
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/sc36

  • branches/sc36/model/sources/dkCore/genSld/wdt/mgr/scSlideMgr.doss/scSlideMgr.js

    r474 r478  
    1717 * samuel.monsarrat@kelis.fr 
    1818 * 
    19  * Portions created by the Initial Developer are Copyright (C) 2008 
     19 * Portions created by the Initial Developer are Copyright (C) 2009 
    2020 * the Initial Developer. All Rights Reserved. 
    2121 * 
     
    8989                return this.fRatioNormalScreen; 
    9090        }, 
    91         /** scSlideMgr.addBindableBlk : Add a bindable block for processing by onLoad(). 
    92          */ 
     91        /** scSlideMgr.addBindableBlk : Add a bindable block for processing by onLoad(). */ 
    9392        addBindableBlk : function(pPath, pOpt, pBkConstructor){ 
    9493                this.fBindBlks.push({fPath : pPath, fOpt : pOpt, fConst : pBkConstructor}); 
    9594        }, 
    96         /** scSlideMgr.findOwnerBlk : Retrun the block that is ancestor to the specified element. 
    97          */ 
     95        /** scSlideMgr.findOwnerBlk : Retrun the block that is ancestor to the specified element. */ 
    9896        findOwnerBlk : function(pElt){ 
    9997                if (pElt == this.fBlocksRoot) return pElt; 
     
    103101                return null; 
    104102        }, 
    105  
    106103        /** Api scSiLib. */ 
    107104        onResizedAnc : function(pOwnerNode, pEvent) { 
     
    167164                var vBaseFontSize = Math.round(this.fRatioNormalScreen * this.fDefaultFontSize); 
    168165                document.body.style.fontSize = vBaseFontSize+"px"; 
    169                 // Quirks mode can be triggered (not shure by what) so the font-size must be fixed on all tables too. 
    170 //              var vTables = scPaLib.findNodes("des:table"); 
    171 //              for (var i in vTables) vTables[i].style.fontSize = vBaseFontSize+"px"; 
    172166                // Adapt table col width 
    173167                var vCols = scPaLib.findNodes("des:col"); 
     
    175169        }, 
    176170 
    177         /** scPresMgr.xReadStyle : Read a style property (inline or CSS). 
    178          */ 
     171        /** scPresMgr.xReadStyle : Read a style property (inline or CSS). */ 
    179172        xReadStyle : function(pElt, pProp, pDoc) { 
    180173                var vDoc = pDoc || document; 
     
    198191 
    199192/* ===== SlideZoom Block class ================================================= */ 
    200 /** scSlideMgr.SldZmBlk : SlideZoom block (anchors pointing to slides that need to be opened as a zoom). 
    201  */ 
     193/** scSlideMgr.SldZmBlk : SlideZoom block (anchors pointing to slides that need to be opened as a zoom). */ 
    202194scSlideMgr.SldZmBlk = function(pElt, pOpt){ 
    203195        pElt.onclick = this.onClickZoom; 
     
    212204/* ===== Size Block classes ================================================= */ 
    213205 
    214 /** scSlideMgr.SizeBlk : Base size block. 
    215  */ 
     206/** scSlideMgr.SizeBlk : Base size block. */ 
    216207scSlideMgr.SizeBlk = function(){ 
    217208} 
     
    234225} 
    235226 
    236 /** scSlideMgr.SizeBlkImg : Image size block. 
    237  */ 
     227/** scSlideMgr.SizeBlkImg : Image size block. */ 
    238228scSlideMgr.SizeBlkImg = function(pElt, pOpt){ 
    239229        //scCoLib.util.log("scSlideMgr.SizeBlkImg"); 
     
    331321} 
    332322 
    333 /** scSlideMgr.SizeBlkObj : Embeded object size block. 
    334  */ 
     323/** scSlideMgr.SizeBlkObj : Embeded object size block. */ 
    335324scSlideMgr.SizeBlkObj = function(pElt, pOpt){ 
    336         //scCoLib.util.log("scSlideMgr.SizeBlkObj"); 
    337325        if(!pElt) return; 
    338326        this.fOpt = pOpt || {}; 
Note: See TracChangeset for help on using the changeset viewer.