Файл: wysiwyg/redactor/files/plugins/fontfamily/fontfamily.js
Строк: 42
<?php
if (!RedactorPlugins) var RedactorPlugins = {};
RedactorPlugins.fontfamily = {
init: function ()
{
var fonts = [ 'Arial', 'Helvetica', 'Georgia', 'Times New Roman', 'Monospace' ];
var that = this;
var dropdown = {};
$.each(fonts, function(i, s)
{
dropdown['s' + i] = { title: s, callback: function() { that.setFontfamily(s); }};
});
dropdown['remove'] = { title: this.opts.curLang['remove_font'], callback: function() { that.resetFontfamily(); }};
this.buttonAdd('fontfamily', this.opts.curLang['fontfamily'], false, dropdown);
},
setFontfamily: function (value)
{
this.inlineSetStyle('font-family', value);
},
resetFontfamily: function()
{
this.inlineRemoveStyle('font-family');
}
};
?>