dainok/unetlab

Does it make sense to add fix-width style?

Closed this issue · 2 comments

It's an ugly hack and just an idea. I didn't use normal/bold/italic style and just add the fix-width stuff to last else branch:

themes/default/js/actions.js:

    if(text_options['text-style'] == 'normal'){
        text_style = 'font-weight: normal;';
    }else if( text_options['text-style'] == 'bold'){
        text_style = 'font-weight: bold;';
    } else if(text_options['text-style'] == 'italic'){
        text_style = 'font-style: italic;';
    } else {
        text_style = 'font-family: monospace;';
    }

fix-width for what? picture plz?

Your patch will be welcomed.