X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/AbstractCard.html diff --git a/docs/source/AbstractCard.html b/docs/source/AbstractCard.html index 8250bbae..7d0757c2 100644 --- a/docs/source/AbstractCard.html +++ b/docs/source/AbstractCard.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.layout.container.AbstractCard
  * @extends Ext.layout.container.Fit
  * <p>This layout manages multiple child Components, each is fit to the Container, where only a single child Component
@@ -39,7 +56,7 @@ Ext.define('Ext.layout.container.AbstractCard', {
 
     hideInactive: true,
 
-    /**
+    /**
      * @cfg {Boolean} deferredRender
      * True to render each contained item at the time it becomes active, false to render all contained items
      * as soon as the layout is rendered (defaults to false).  If there is a significant amount of content or
@@ -88,7 +105,7 @@ Ext.define('Ext.layout.container.AbstractCard', {
         return (itemEl && itemEl.parentNode === (target.dom || target)) || false;
     },
 
-    /**
+    /**
      * Return the active (visible) component in the layout.
      * @returns {Ext.Component}
      */
@@ -147,7 +164,7 @@ Ext.define('Ext.layout.container.AbstractCard', {
         return newAnim || owner.cardSwitchAnimation;
     },
 
-    /**
+    /**
      * Return the active (visible) component in the layout to the next card
      * @returns {Ext.Component}
      */
@@ -160,7 +177,7 @@ Ext.define('Ext.layout.container.AbstractCard', {
         return items[index + 1] || (wrap ? items[0] : false);
     },
 
-    /**
+    /**
      * Sets the active (visible) component in the layout to the next card
      */
     next: function(anim, wrap) {
@@ -170,7 +187,7 @@ Ext.define('Ext.layout.container.AbstractCard', {
         return this.setActiveItem(this.getNext(wrap), anim);
     },
 
-    /**
+    /**
      * Return the active (visible) component in the layout to the previous card
      * @returns {Ext.Component}
      */
@@ -183,7 +200,7 @@ Ext.define('Ext.layout.container.AbstractCard', {
         return items[index - 1] || (wrap ? items[items.length - 1] : false);
     },
 
-    /**
+    /**
      * Sets the active (visible) component in the layout to the previous card
      */
     prev: function(anim, wrap) {
@@ -193,4 +210,6 @@ Ext.define('Ext.layout.container.AbstractCard', {
         return this.setActiveItem(this.getPrev(wrap), anim);
     }
 });
-
\ No newline at end of file +
+ +