• LtnDragPropertystatic
    지정된 대상 엘리먼트를 드래그 처리한다.
    Leturn.Element.Drag.member에 대한 short-cut 래퍼런스 변수이다.

    위의 예제에서 LtnDrag는 Leturn.Element.Drag.manager의 short-cut 글로벌 변수이기때문에 위와같이 처리가 가능하다.
    그외 자세한 사용법은 Leturn.Element.Drag를 참조토록 한다.
  • LeturnMethodstatic
    ( obj:Object ):Function
    지정한 obj에 대해 bracket 처리를 수행한다. 기본적으로 이 글로벌 함수의 역할은 Leturn.bracket과 동일하다.
  • Leturn.UtilMethodstatic
    ( o:Object, cb:Function, thisObj:Object=null ):Object
    이 글로벌 함수의 역할은 Leturn.Util.forIn과 동일하다.
    지정한 obj에 대해 forIn 루프 노테이션을 수행한다. 대상은 객체, 배열, 리터럴변수등 모든것이 될 수 있다.
    또 LtnU는 Leturn.Util의 short-cut임으로 결국 LtnU === Leturn.Util === Leturn.Util.forIn 의 등식이 성립한다.
    대상 obj는 모든 객체가 다 적용될 수 있다.
    참조 :
    - Leturn.Util.toArray
    - Leturn.Util.likeArray
  • Leturn.DocumentMethodstatic
    ( selector:String, callback:Function=null, baseElement:DOMElement=null ):Array
    이 글로벌 함수의 역할은 Leturn.Document.qsa와 동일하다.
    더불어 Native메소드인 document.querySelectorAll과 동일한 수행을 하지만 callback인자를 통해서 처리결과를 액세스할 수 있으며, 구해진 엘리먼트 요소들은 static node collection이 아닌 Array이다.
    또 LtnD는 Leturn.Document의 short-cut임으로 결국 LtnD === Leturn.Document === Leturn.Document.qsa 의 등식이 성립한다.
    참조 :
    - Leturn.Element.qsa
  • Leturn.Net.AjaxMethodstatic
    ( options:Object, callbackSuccess:Function, callbackFail:Function=null ):XMLHttpRequest
    이 글로벌 함수의 역할은 Leturn.Net.Ajax.load와 동일하다.
    또 LtnAjax는 Leturn.Net.Ajax의 short-cut임으로 결국 LtnAjax === Leturn.Net.Ajax === Leturn.Net.Ajax.load의 등식이 성립한다.
    참조 :
    - Leturn.Net.Xhr
  • Leturn.ElementMethodstatic
    ( selector:String, callback:Function=null, baseElement:DOMElement=null ):Array
    이 글로벌 함수의 역할은 Leturn.Element.qsa와 동일하다.
    Leturn.Document.qsa가 엘리먼트에 대한 쿼리결과를 제공하는것과 달리, 이 함수는 Leturn.Element의 inatance를 쿼리결과로 제공한다.
    또 LtnEle는 Leturn.Element의 short-cut임으로 결국 LtnEle=== Leturn.Element === Leturn.Element.qsa의 등식이 성립한다.
    참조 :
    - Class Leturn.Element
    - Leturn.Document.qsa