home *** CD-ROM | disk | FTP | other *** search
- function commandButtons(){
- return new Array(MM.BTN_OK, "goToLine()",
- MM.BTN_Cancel, "window.close()");
- }
-
- function canAcceptCommand(){
- var retVal = false;
- if (dw.getFocus(true) == 'textView'){
- retVal = true;
- }
- return retVal;
- }
-
- function goToLine(){
- var dom = dw.getDocumentDOM();
- var lineNum = parseInt(document.forms[0].lineNum.value);
- if (typeof lineNum == 'number' && lineNum > 0){
- dom.source.setCurrentLine(lineNum);
- }
- window.close();
- }
-
- function initUI(){
- document.forms[0].lineNum.focus();
- }
-
-