history.js 422 B

1234567891011121314151617181920
  1. /**
  2. * @fileOverview
  3. *
  4. * 历史控制按钮
  5. *
  6. * @author: techird
  7. * @copyright: Baidu FEX, 2014
  8. */
  9. KityMinder.registerUI('topbar/history', function(minder) {
  10. var ret = {};
  11. var commandbutton = minder.getUI('widget/commandbutton');
  12. ['undo', 'redo'].forEach(function(command) {
  13. ret[command] = commandbutton.generate(command).appendTo(document.getElementById('panel'));
  14. });
  15. return ret;
  16. });