Вход Регистрация
Файл: public/fck/editor/dialog/common/fck_dialog_common.js
Строк: 90
<?php

/*
 * FCKeditor - The text editor for internet
 * Copyright (C) 2003-2004 Frederico Caldeira Knabben
 * 
 * Licensed under the terms of the GNU Lesser General Public License:
 *         http://www.opensource.org/licenses/lgpl-license.php
 * 
 * For further information visit:
 *         http://www.fckeditor.net/
 * 
 * File Name: fck_dialog_common.js
 *     Useful functions used by almost all dialog window pages.
 * 
 * Version:  2.0 RC3
 * Modified: 2005-02-09 13:52:45
 * 
 * File Authors:
 *         Frederico Caldeira Knabben (fredck@fckeditor.net)
 */

// Gets a element by its Id. Used for shorter coding.
function GetEelementId )
{
    return 
document.getElementByIdelementId )  ;
}

function 
ShowEelementisVisible )
{
    if ( 
typeofelement ) == 'string' )
        
element GetEelement ) ;
    
element.style.display isVisible '' 'none' ;
}

function 
SetAttributeelementattNameattValue )
{
    if ( 
attValue == null || attValue.length == )
        
element.removeAttributeattName) ;            // 0 : Case Insensitive
    
else
        
element.setAttributeattNameattValue) ;    // 0 : Case Insensitive
}

function 
GetAttributeelementattNamevalueIfNull )
{
    var 
oAtt element.attributes[attName] ;

    if ( 
oAtt == null || !oAtt.specified )
        return 
valueIfNull valueIfNull '' ;

    var 
oValue element.getAttributeattName) ;

    return ( 
oValue == null valueIfNull oValue ) ;
}

// Functions used by text fiels to accept numbers only.
function IsDigit)
{
    
|| event ;
    var 
iCode = ( e.keyCode || e.charCode ) ;

    
event.returnValue =
        (
            ( 
iCode >= 48 && iCode <= 57 )        // Numbers
            
|| (iCode >= 37 && iCode <= 40)        // Arrows
            
|| iCode == 8                        // Backspace
            
|| iCode == 46                        // Delete
        
) ;

    return 
event.returnValue ;
}

String.prototype.startsWith = function( value )
{
    return ( 
this.substr0value.length ) == value ) ;
}

String.prototype.remove = function( startlength )
{
    var 
'' ;

    if ( 
start )
        
this.substring0start ) ;

    if ( 
start length this.length )
        
+= this.substringstart length this.length ) ;

    return 
;
}
?>
Онлайн: 0
Реклама