Вход Регистрация
Файл: wysiwyg/redactor/js/fullscreen.js
Строк: 107
<?php
if (!RedactorPlugins) var RedactorPlugins = {};

RedactorPlugins.fullscreen = function()
{
    return {
        
init: function()
        {
            
this.fullscreen.isOpen false;

            var 
button this.button.add('fullscreen'this.lang.get('fullscreen'));
            
this.button.addCallback(buttonthis.fullscreen.toggle);

            if (
this.opts.fullscreenthis.fullscreen.toggle();
        },
        
enable: function()
        {
            
this.button.changeIcon('fullscreen''normalscreen');
            
this.button.setActive('fullscreen');
            
this.fullscreen.isOpen true;

            if (
this.opts.toolbarExternal)
            {
                
this.fullscreen.toolcss = {};
                
this.fullscreen.boxcss = {};
                
this.fullscreen.toolcss.width this.$toolbar.css('width');
                
this.fullscreen.toolcss.top this.$toolbar.css('top');
                
this.fullscreen.toolcss.position this.$toolbar.css('position');
                
this.fullscreen.boxcss.top this.$box.css('top');
            }

            
this.fullscreen.height this.$editor.height();

            if (
this.opts.maxHeightthis.$editor.css('max-height''');
            if (
this.opts.minHeightthis.$editor.css('min-height''');

            if (!
this.$fullscreenPlaceholderthis.$fullscreenPlaceholder = $('<div/>');
            
this.$fullscreenPlaceholder.insertAfter(this.$box);

            
this.$box.appendTo(document.body);

            
this.$box.addClass('redactor-box-fullscreen');
            $(
'body, html').css('overflow''hidden');

            
this.fullscreen.resize();
            $(
window).on('resize.redactor.fullscreen', $.proxy(this.fullscreen.resizethis));
            $(
document).scrollTop(00);

            
this.$editor.focus();
            
this.observe.load();
        },
        
disable: function()
        {
            
this.button.removeIcon('fullscreen''normalscreen');
            
this.button.setInactive('fullscreen');
            
this.fullscreen.isOpen false;

            $(
window).off('resize.redactor.fullscreen');
            $(
'body, html').css('overflow''');

            
this.$box.insertBefore(this.$fullscreenPlaceholder);
            
this.$fullscreenPlaceholder.remove();

            
this.$box.removeClass('redactor-box-fullscreen').css({ width'auto'height'auto' });

            
this.code.sync();

            if (
this.opts.toolbarExternal)
            {
                
this.$box.css('top'this.fullscreen.boxcss.top);
                
this.$toolbar.css({
                    
'width'this.fullscreen.toolcss.width,
                    
'top'this.fullscreen.toolcss.top,
                    
'position'this.fullscreen.toolcss.position
                
});
            }

            if (
this.opts.minHeightthis.$editor.css('minHeight'this.opts.minHeight);
            if (
this.opts.maxHeightthis.$editor.css('maxHeight'this.opts.maxHeight);

            
this.$editor.css('height''auto');
            
this.$editor.focus();
            
this.observe.load();
        },
        
toggle: function()
        {
            if (
this.fullscreen.isOpen)
            {
                
this.fullscreen.disable();
            }
            else
            {
                
this.fullscreen.enable();
            }
        },
        
resize: function()
        {
            if (!
this.fullscreen.isOpen) return;

            var 
toolbarHeight this.$toolbar.height();

            var 
height = $(window).height() - toolbarHeight;
            
this.$box.width($(window).width() - 2).height(height toolbarHeight);

            if (
this.opts.toolbarExternal)
            {
                
this.$toolbar.css({
                    
'top''0px',
                    
'position''absolute',
                    
'width''100%'
                
});

                
this.$box.css('top'toolbarHeight 'px');
            }

            
this.$editor.height(height 14);
        }
    };
};
?>
Онлайн: 3
Реклама