OSDN Git Service

Version 0.6.149, fix X.Audio & X.UI.
[pettanr/clientJs.git] / 0.6.x / js / 02_dom / 00_XDoc.js
index 48251a6..457bdc1 100644 (file)
@@ -4,6 +4,10 @@
  * @alias X.Doc
  */
 X[ 'Doc' ] = {
+       /**
+        * EventDispatcher.prototype.listen 参照
+        * @alias X.Doc.listen
+        */
        'listen' : function( type, arg1, arg2, arg3 ){
                if( type <= X_ViewPort_readyState && type === 'DOMContentLoaded' ){
                        /*
@@ -15,7 +19,10 @@ X[ 'Doc' ] = {
                return X[ 'Doc' ];
        },
        
-       
+       /**
+        * EventDispatcher.prototype.listenOnce 参照
+        * @alias X.Doc.listenOnce
+        */
        'listenOnce' : function( type, arg1, arg2, arg3 ){
                if( type <= X_ViewPort_readyState && type === 'DOMContentLoaded' ){
                        /*
@@ -26,12 +33,20 @@ X[ 'Doc' ] = {
                type && arg1 && X_ViewPort_document[ 'listenOnce' ]( type, arg1, arg2, arg3 );
                return X[ 'Doc' ];
        },
-       
+
+       /**
+        * EventDispatcher.prototype.unlisten 参照
+        * @alias X.Doc.unlisten
+        */     
        'unlisten' : function( type, arg1, arg2, arg3 ){
                type && arg1 && X_ViewPort_document[ 'unlisten' ]( type, arg1, arg2, arg3 );
                return X[ 'Doc' ];
        },
-       
+
+       /**
+        * EventDispatcher.prototype.listening 参照
+        * @alias X.Doc.listening
+        */     
        'listening' : function( type, arg1, arg2, arg3 ){
                return X_ViewPort_document[ 'listening' ]( type, arg1, arg2, arg3 );
        },
@@ -39,11 +54,7 @@ X[ 'Doc' ] = {
        'create'     : X_Doc_create,
        
        'createText' : X_Doc_createText
-       
-       // html
-       // head
-       // body
-       // find
+
 };
 
 /**