나는 내 자신의 간단한 externs 파일을 만드는 데 운이 좋았다. 난 단지 .draggable 및 .resizable 사용하고있는 경우 예를 들어,이 포함 된 것입니다 :
jQuery.prototype.resizable = function (arg1, arg2, arg3) { };
$.prototype.resizable = function (arg1, arg2, arg3) { };
jQuery.prototype.draggable = function (arg1, arg2, arg3) { };
$.prototype.draggable = function (arg1, arg2, arg3) { };
그리고 대신에 점 표기법의 다음 제의 .js 파일에서 사용 인용 문자열 속성 이름 초기화 할 때 :
// USE THIS:
$(".draggable").draggable({ "axis":"x", "containment": "parent",
"cursor":"move", "handle":".dragHandle", "snap":"#banner, .draggable", "snapMode":"outer"
});
//INSTEAD OF THIS:
$(".draggable").draggable({ axis:"x", containment: "parent",
cursor:"move", handle:".dragHandle", snap:"#banner, .draggable", snapMode:"outer"
});