SOURCE CODE: Uize.Widgets.Button.Html

VIEW REFERENCE

Uize.module ({
  name:'Uize.Widgets.Button.Html',
  builder:function () {
    'use strict';

    return Uize.package ({
      process:function (i) {
        var
          m = this,
          i = arguments [0],
          _idPrefix = i.idPrefix
        ;
        return (
          '' + i['text'] + '\r\n'
        );

      }
    });
  }
});