Файл: wysiwyg/redactor/js/fontsize.js
Строк: 47
<?php
if (!RedactorPlugins) var RedactorPlugins = {};
RedactorPlugins.fontsize = function()
{
    return {
        init: function()
        {
            var fonts = [10, 11, 12, 14, 16, 18, 20, 24, 28, 30];
            var that = this;
            var dropdown = {};
            $.each(fonts, function(i, s)
            {
                dropdown['s' + i] = { title: s + 'px', func: function() { that.fontsize.set(s); } };
            });
            dropdown.remove = { title: this.lang.get('none'), func: that.fontsize.reset };
            var button = this.button.add('fontsize', this.lang.get('fontsize'));
            this.button.addDropdown(button, dropdown);
        },
        set: function(size)
        {
            this.inline.format('span', 'style', 'font-size: ' + size + 'px;');
        },
        reset: function()
        {
            this.inline.removeStyleRule('font-size');
        }
    };
};
?>