BasicControl.js 197 B

1234567891011121314
  1. define( function() {
  2. "use strict";
  3. function BasicControl()
  4. {
  5. };
  6. BasicControl.prototype.draw = function( oControlHost )
  7. {
  8. oControlHost.container.innerHTML = "Hello";
  9. };
  10. return BasicControl;
  11. });