home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 April / maximum-cd-2000-04.iso / Utilities / InternetTools / dreamweaver3 / data1.cab / App_Files / Configuration / Menus / MM / Modify_Hyperlink.js < prev    next >
Encoding:
Text File  |  1999-12-09  |  363 b   |  18 lines

  1. function makeOrChangeLink()
  2. {
  3.   dw.getDocumentDOM().setLinkHref();
  4. }
  5.  
  6. function canAcceptCommand()
  7. {
  8.   return (dw.getDocumentDOM() != null && dw.getDocumentDOM().canSetLinkHref());
  9. }
  10.    
  11. function setMenuText()
  12. {
  13.     if (dw.getDocumentDOM() != null && dw.getDocumentDOM().getLinkHref() != '')
  14.         return MENU_ChangeLink;
  15.     else
  16.         return MENU_MakeLink;
  17. }
  18.