This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define [ | |
'underscore' | |
'backbone' | |
], (_, Backbone) -> | |
Emitter = {} | |
aliases = | |
un: 'off' | |
emit: 'trigger' | |
fire: 'trigger' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('Overrides.view.Table', { | |
override: 'Ext.view.Table', | |
getMaxContentWidth: function(header) { | |
var me = this, | |
cells = me.el.query(header.getCellInnerSelector()), | |
originalWidth = header.getWidth(), | |
i = 0, | |
ln = cells.length, | |
hasPaddingBug = Ext.supports.ScrollWidthInlinePaddingBug, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('EXTJSIV-10191.grid.header.Container', { | |
override: 'Ext.grid.header.Container', | |
initComponent: function() { | |
var me = this; | |
me.callParent(arguments); | |
if (me.isColumn && (!me.items || me.items.length === 0)) { | |
me.isContainer = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('EXTJSIV-10055.grid.ColumnLayout', { | |
override: 'Ext.grid.ColumnLayout', | |
calculate: function(ownerContext) { | |
this.callSuper(arguments); | |
// If we have calculated the widths, then if forceFit, and there are no flexes, we cannot tell the | |
// TableLayout we are done. We will have to go through the convertWidthsToFlexes stage. | |
if (ownerContext.state.parallelDone) { | |
// TODO: auto width columns aren't necessarily done here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="copyright" content="© copyright 2007-2009, Benjamin Toll" /> | |
<title>CSS Compressor</title> | |
<style type="text/css"> | |
body { | |
background: #EED; | |
text-align: center; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>HTMLify()</title> | |
<style type="text/css"> | |
body { | |
background: #EED; | |
text-align: center; | |
} |