TextPrompt

Docs | Utilities | Javascript | TextPrompt
( _ => {
    $('#textPromptExample').on( 'click', function( e) {
        _.textPrompt().then( d => console.log( d));

    });

})(_brayworth_);
( _ => {
    $('#textPromptExample2').on( 'click', function( e) {
        _.textPrompt({
            title : 'tell me about yourself',
            text : 'What is Your Name ?',
            verbatim : 'Just your First name will do'

        }).then( d => console.log( d));

    });

})(_brayworth_);