Вход Регистрация
Файл: public/js/mobile_touch.js
Строк: 276
<?php
document
.observe("dom:loaded", function() 
{
    $$(
"#secondary_navigation a").each( function(e) { Event.observe(e"click"loadUrl ); } );    
    $$(
".touch-row").each(function(e) { Event.observe(e"click"touchRowClick); addArrow(e); });
    $$(
"a.prev:not(.disabled), a.next:not(.disabled)").invoke("on""click"loadUrl);
    $$(
".post").each(function(e) { Event.observe(e"click"postClick); });
    $$(
'.sd_content').invoke('on''click''.sd_content'toggleDeletedContent);
    
Event.observe($('options-button'), "click"openNavigation);
    if($(
'filter-option')) {Event.observe($('filter-option'), "click"openFilter);}
    $(
'options-button').setStyle({'display''block'});
    if( $(
'nav_markread') ){
        $(
'nav_markread').down('a').observe('click'markAsRead);
    };
    
    if ( $(
'full_version') )
    {
        $(
'full_version').on'click', function( eelem )
        {
            
Event.stop(e);
            
            var 
url ipb.vars['base_url'] + 'app=core&module=ajax&section=skin&do=change&skinId=fullVersion&secure_key=' ipb.vars['secure_hash'];
            
Debug.writeurl );
            new 
Ajax.Request(    url,
                                {
                                    
method'get',
                                    
onSuccess: function(t)
                                    {
                                        
/*
                                         * Get an error?
                                         */
                                        
if( t.responseJSON['status'] == 'ok' )
                                        {
                                            
window.location window.location;
                                            
window.location.reload(true);
                                        }
                                        else
                                        {
                                            
ipb.global.errorDialogueipb.lang['ajax_failure'] );
                                        }
                                    }
                                }
                            );
            } );
    }
    if( $(
'show_langs') ){
        $(
'show_langs').on('click', function(e){
            $(
'show_langs').hide();
            $(
'show_langs_box').show();
            
Event.stop(e);
            return 
false;
        });
    }
    
    
/* Set this here to 'toggle' works later */
    
$('shade').setStyle({'display''none'});
    
    if ( $(
'filter-letters') ){
        $(
'filter-letters').toggleClassName('hidden');
    }
    
    
// Set up user nav box
    
var items = $("user_navigation").down("ul").select("li").size();
    var 
diff - (items 3);
    
    
/* Ensure loading box isn't visible */
    
if ( $('loadingBox') )
    {
        $(
'loadingBox').remove();
    }
    
    
resizeEmbeds();
    
    for(
i=0i<diffi++){
        $(
"user_navigation").down("ul").insert({bottom: new Element("li").addClassName("dummy").insert( new Element("span") ) });
    }
});

/* Ensure embedded videos are sized nicely */
function resizeEmbeds()
{
    $$(
'embed').each( function( embed )
    {
        if ( 
embed.src && embed.width && embed.height )
        {
            var 
pct 0;
            
            while ( 
embed.width 440 )
            {
                
pct += 10;
                
                
embed.width embed.width - ( ( embed.width 100 ) * pct );
            }
            
            if ( 
pct )
            {
                
embed.height embed.height - ( ( embed.height 100 ) * pct );
            }
        }
    } );
}

function 
toggleDeletedContent(eelement)
{
    
Event.stop(e);
    
    var 
id element.id.replace('seeContent_''');
    
    $(
'postsDelete-' id).hide();
    $(
'post-' id).show();    
}

function 
markAsRead(e)
{
    if( !
confirmipb.lang['clear_markboard'] ) ){
        
Event.stop(e);
    }    
}

function 
mobileFiltereelement )
{
    
Event.stop(e);
    
    
// Does the pane exist?
    
if( !$( element.id '_pane' ) ){
        return;
    }
    
    $(
'shade').toggle();
    $( 
element.id '_pane' ).show();
}

function 
closePaneeelement )
{
    
Event.stop(e);
    $(
element).up(".ipsFilterPane").hide();
    $(
'shade').hide();
}

/**
 * Add the touch arrow */
function addArrow(e)
{
    
e.getDimensions();
    
= ( d.height ) - 18;
    
    if ( ! 
e.inspect().match'<h2' ) )
    {
        
e.insert( { 'top' : new Element'div', { 'class''touch-row-arrow''style''margin-top:' 'px !important' } ) } );
    }
}

function 
touchRowClick()
{
    $$(
'#' this.id ' a.title').each(function(e) { loadUrl); });
}

function 
loadUrl)
{
    
/* Show loading box */
    
var content LOADING_TEMPLATE.evaluate();
    
    $(
'ipbwrapper').insert( { 'after' content } );
    
positionCenter( $('loadingBox') );
    
    
window.location e.href;
}

function 
postClick()
{
    if( $(
this.id '-controls') ){
        $(
this.id '-controls').toggleClassName('visible');
    }
}

function 
openNavigation()
{
    
//vp = document.viewport.getDimensions();
    
    
var elem = $( document.body ).getLayout();
    $(
'user_navigation').toggle();
    $(
'user_navigation').setStyle( { 'position''absolute''width'elem.get('margin-box-width') + 'px' } );
    $(
'shade').toggle();
}

function 
openFilter()
{
    if ( $(
'filter-letters') )
    {
        $(
'filter-letters').toggleClassName('hidden');
    }
    
    $(
'filter-option').setStyle({'display''none'});
}

function 
positionCenterelemdir )
{
    if( !$(
elem) ){ return; }
    
elem_s = $(elem).getDimensions();
    
window_s document.viewport.getDimensions();
    
window_offsets document.viewport.getScrollOffsets();

    
center = {     left: ((window_s['width'] - elem_s['width']) / 2),
                 
top: ((window_s['height'] - elem_s['height']) / 2)
            };

    if ( 
window_offsets['top'] )
    {
        
center['top'] += window_offsets['top'];
    }
    
    if( 
typeof(dir) == 'undefined' || ( dir != 'h' && dir != 'v' ) )
    {
        $(
elem).setStyle('top: ' center['top'] + 'px; left: ' center['left'] + 'px');
    }
    else if( 
dir == 'h' )
    {
        $(
elem).setStyle('left: ' center['left'] + 'px');
    }
    else if( 
dir == 'v' )
    {
        $(
elem).setStyle('top: ' center['top'] + 'px');
    }
    
    $(
elem).setStyle('position: fixed');
}

var 
Debug = {
    
write: function( text ){
        if( !
Object.isUndefined(window.console) ){
            
console.logtext );
        }
        
/*else if( jsDebug )
        {
            if( !$('_inline_debugging') ){
                var _inline_debug =  new Element('div', { id: '_inline_debugging' }).setStyle('background: rgba(0,0,0,0.7); color: #fff; padding: 10px; width: 97%; height: 150px; position: absolute; bottom: 0; overflow: auto; z-index: 50000').show();
                
                if( !Object.isUndefined( $$('body')[0] ) ){
                    $$('body')[0].insert( _inline_debug );
                }
            }
            
            try {
                $('_inline_debugging').innerHTML += "<br />" + text;
            } catch(err){}
        }*/
    
},
    
dir: function( values ){
        if( 
jsDebug && !Object.isUndefined(window.console) && ! Prototype.Browser.IE && ! Prototype.Browser.Opera ){
            
console.dirvalues );
        }
    },
    
error: function( text ){
        if( 
jsDebug && !Object.isUndefined(window.console) ){
            
console.errortext );
        }
    },
    
warn: function( text ){
        if( 
jsDebug && !Object.isUndefined(window.console) ){
            
console.warntext );
        }
    },
    
info: function( text ){
        if( 
jsDebug && !Object.isUndefined(window.console) ){
            
console.infotext );
        }
    }
};
?>
Онлайн: 1
Реклама