- Apr 23, 2012
-
-
Rene Saarsoo authored
Add back the baseUrl config to the controller.
-
Rene Saarsoo authored
Also remove trailing comma.
-
limscoder authored
-
limscoder authored
-
limscoder authored
-
limscoder authored
-
limscoder authored
-
limscoder authored
-
- Apr 21, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Instead added code to :doctests task to create the extjs-build/ dir. Separate extjs/ and extjs-build/ dirs are needed to allow docs app itself to run on one version of ExtJS, while having the examples use a different version.
-
Rene Saarsoo authored
Some places had "doctest" while others had "doctests" - now all are using the plural form.
-
Rene Saarsoo authored
Docs.data.classes already contains a list of all classes.
-
Rene Saarsoo authored
Probably just a typo.
-
Rene Saarsoo authored
This way the Status column won't display the red "dirty" flag.
-
Rene Saarsoo authored
There seems to be no need to need to suspend grid events while doing the initial loading.
-
Rene Saarsoo authored
Remove training commas and whitespace. Add missing semicolons.
-
limscoder authored
-
- Apr 20, 2012
-
-
Dave Thompson authored
-
- Apr 17, 2012
-
-
Rene Saarsoo authored
Instead pick the build pointed to by template/extjs/ This way the EXT_BUILD var only affects which version of ExtJS will be used for inline examples.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Guides and videos are now panels, so the comments need to be added to the panel body element, not the top element.
-
Nick Poulden authored
-
- Apr 12, 2012
-
-
Rene Saarsoo authored
-
- Apr 10, 2012
-
-
Rene Saarsoo authored
Fix the issue of hover menu not getting hidden at all when the button is hovered for the first time and then immediately mouse moves away.
-
Rene Saarsoo authored
Use initConfig() instead of Ext.apply(). Fixes Touch examples when Docs app is running under Ext 4.1.
-
Rene Saarsoo authored
Some divs were not closed. This fixes layout issues when view Touch examples under ExtJS 4.1
-
Rene Saarsoo authored
-
Rene Saarsoo authored
The main styles were restricted to panel body, but guides and others were containers, not panels, so the styles did not get applied. Now guides, videos, comments are all panels.
-
Rene Saarsoo authored
Instead of injecting the button to the toolbar from outside, the toolbar itself manages the button, providing methods to show and update it. Also the toolbar now fires an event when the comment count button is clicked - the comments controller just needs to handle that event, not deal with binding the event to toolbar element after render.
-
Rene Saarsoo authored
Add a bit more top-bottom padding to the toolbar. Move the styles from JavaScript to CSS and document.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Some previous <pre>-related style tweaks resulted in <pre> line height being no more applied to the CodeMirror editor. Now explicitly stored the line-height style.
- Apr 09, 2012
-
-
Rene Saarsoo authored
-
Rene Saarsoo authored
-
Rene Saarsoo authored
CodeMirror just defines the rule: .CodeMirror pre { ... } This selector has quite low specificity, so it's easy to accidentally override it. And this indeed happened when the selector for normal pre elements was changed from: .class-overview pre { ... } to: .class-overview .x-panel-body pre { ... } The result was that a <pre> inside CodeMirror editor received unwanted rounded corners etc, rendering the editor pretty-much unusable. Resolved this by only styling pre.prettyprint and pre.notpretty. (The latter class is now added to all not-to-be-prettified pre-s, which distinguishes them from pre-s used inside CodeMirror component.)
-