- Mar 26, 2012
-
-
Rene Saarsoo authored
-
- Mar 23, 2012
-
-
Nick Poulden authored
-
Nick Poulden authored
-
- Mar 22, 2012
-
-
Rene Saarsoo authored
The code relied on the order of events being fired. It expected that when clicking tab close button the "click" handler for close button will be invoked before the "click" handler for the whole tab. This worked in the majority of browsers but not in IE8 where the events fire in the opposite order. Now checking the event target inside tab click handler to see if close button was clicked instead of relying on the close button handler to set a flag. This also fixes the issue of tabs sometimes not activating when clicked in IE8. Was caused by justClosed flag being set but not unset.
-
Rene Saarsoo authored
The return value of Array.indexOf was bogusly compared to false, but #indexOf returns -1 not false on failure.
-
Rene Saarsoo authored
The official extjs-4.0.7 release has a bug in cors support where it mistakenly checks for Ext.isIe instead of Ext.isIE.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
- Mar 21, 2012
-
-
Rene Saarsoo authored
-
- Mar 20, 2012
-
-
Nick Poulden authored
-
Nick Poulden authored
-
- Mar 19, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Because the font-set is only registered for sencha.com and localhost, running the docs app at any ther domain will get 403 error when attempting to load fonts from typekit.com. We should probably completely move this code to sencha-specific config files.
-
- Mar 17, 2012
-
-
Rene Saarsoo authored
-
- Mar 16, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Those files haven't existed for ages.
-
- Mar 15, 2012
-
-
Rene Saarsoo authored
Forgot to update version number printed by --version.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Because {Type=} defined an optional item, it was taken granted that just {Type} would define a required item. Not so fast - while params default to being required, configs default to being optional.
-
- Mar 14, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Makes it easier to find the close-all-tabs feature.
-
Rene Saarsoo authored
Handling the internals of tabs inside the view and leaving the handling of higher-level events to the controller.
-
Rene Saarsoo authored
It makes sense for the tabs component to adjust itself when it's resized, rather than having a controller tell it.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Monitor the clicks on menu items inside the view. This way the whole interaction with tab-menu is entirely encapsulated inside view.
-
Rene Saarsoo authored
Instead access the menu from this.overflowButton.menu.
-
Rene Saarsoo authored
Replace it with classname.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Use class name instead.
-
- Mar 13, 2012
-
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax. For the record types to even reach type parser the DocParser needed to be modified to parse the {...} type blocks by taking account the need to balance the braces.
-
Rene Saarsoo authored
It completely puzzles me why Google Closure Compiler requires varargs type name in function argument context to be wrapped inside square braces, while in normal context no square brackets are needed. But here we go...
-
Rene Saarsoo authored
And better structured tests.
-
Rene Saarsoo authored
Also now only allow optionality suffix "=" be used inside function type arguments.
-
Rene Saarsoo authored
Needed for function type parameter types.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure compiler syntax.
-
Rene Saarsoo authored
-