You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
512 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. window = domino.createWindow(GoHtmlSrc, GoHref);
  2. document = window.document;
  3. location = window.location;
  4. try {
  5. var govueId = GetGoVueId();
  6. LoadGoParam();
  7. var goVueIgnore = new GoVueIgnore();
  8. goVueIgnore.ignore();
  9. RunInlineCode();
  10. GoUseCall({
  11. id: govueId,
  12. path: GoPath,
  13. query: jQuery.deparam(GoQuery)
  14. });
  15. goVueIgnore.restore()
  16. } catch (e) {
  17. console.log("VM Uncaught:", e);
  18. }
  19. // console.log(document.innerHTML);
  20. GoReturn(document.innerHTML);