home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 86 / PIWD86.iso / pc / contents / dreamweaver / software / dwmx2004.exe / Disk1 / data1.cab / Configuration_En / Commands / pasteHTML.js < prev    next >
Encoding:
Text File  |  2003-09-05  |  334 b   |  18 lines

  1. function canAcceptCommand()
  2. {
  3.   return ( dw.getFocus() == 'document' && dw.getDocumentDOM().canClipPasteHTML() );
  4. }
  5.  
  6. function receiveArguments()
  7. {
  8.   MM.event.notify('','dw.clipPasteHTML()');
  9. }
  10.  
  11. function setMenuText()
  12. {
  13.   if (dw.canPasteFormatted())
  14.     return MENU_PasteFormatted;
  15.   else
  16.     return MENU_PasteHTML;
  17. }
  18.