Enable french local on rich textarea

This commit is contained in:
Xavier J 2016-08-24 15:32:41 +02:00
parent dd03b96e0c
commit 3ebdab23a9
2 changed files with 2 additions and 2 deletions

View file

@ -3,6 +3,6 @@ $(document).on('page:load', wysihtml5_active);
function wysihtml5_active (){
$('.wysihtml5').each(function(i, elem) {
$(elem).wysihtml5({ toolbar:{ "fa": true, "link": false } });
$(elem).wysihtml5({ toolbar:{ "fa": true, "link": false, "color": true }, "locale": "fr-FR" });
});
}