TreeItem.js 268 B

12345678910
  1. Ext.define('Ext.theme.triton.list.TreeItem', {
  2. override: 'Ext.list.TreeItem',
  3. compatibility: Ext.isIE8,
  4. setFloated: function(floated, wasFloated) {
  5. this.callParent([floated, wasFloated]);
  6. this.toolElement.syncRepaint();
  7. }
  8. });