Файл: library/wysihtml5/src/commands/justifyRight.js
Строк: 18
<?php
(function(wysihtml5) {
var CLASS_NAME = "wysiwyg-text-align-right",
REG_EXP = /wysiwyg-text-align-[0-9a-z]+/g;
wysihtml5.commands.justifyRight = {
exec: function(composer, command) {
return wysihtml5.commands.formatBlock.exec(composer, "formatBlock", null, CLASS_NAME, REG_EXP);
},
state: function(composer, command) {
return wysihtml5.commands.formatBlock.state(composer, "formatBlock", null, CLASS_NAME, REG_EXP);
}
};
})(wysihtml5);
?>