git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.3.0 - Released 10/06/2010
[extjs.git]
/
examples
/
shared
/
extjs
/
App.js
diff --git
a/examples/shared/extjs/App.js
b/examples/shared/extjs/App.js
index
d6beaaf
..
e642a0c
100644
(file)
--- a/
examples/shared/extjs/App.js
+++ b/
examples/shared/extjs/App.js
@@
-1,6
+1,6
@@
/*!
/*!
- * Ext JS Library 3.
0
.0
- * Copyright(c) 2006-20
09 Ext JS, LLC
+ * Ext JS Library 3.
3
.0
+ * Copyright(c) 2006-20
10 Ext JS, Inc.
* licensing@extjs.com
* http://www.extjs.com/license
*/
* licensing@extjs.com
* http://www.extjs.com/license
*/
@@
-10,21
+10,21
@@
* @author Chris Scott
*/
Ext.App = function(config) {
* @author Chris Scott
*/
Ext.App = function(config) {
-
- // set up StateProvider
- this.initStateProvider();
-
- // array of views
this.views = [];
this.views = [];
-
+
+ this.initStateProvider();
+
Ext.apply(this, config);
Ext.apply(this, config);
- if (!this.api.actions) { this.api.actions = {}; }
-
- // init when onReady fires.
+
+ if (!this.api.actions) {
+ this.api.actions = {};
+ }
+
Ext.onReady(this.onReady, this);
Ext.onReady(this.onReady, this);
-
+
Ext.App.superclass.constructor.apply(this, arguments);
Ext.App.superclass.constructor.apply(this, arguments);
-}
+};
+
Ext.extend(Ext.App, Ext.util.Observable, {
/***
Ext.extend(Ext.App, Ext.util.Observable, {
/***