cc_on.html 463 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <script>
  6. var cc_on = false,
  7. errors = [];
  8. /*@cc_on
  9. cc_on = true;
  10. @*/
  11. window.onerror = function( errorMessage, filePath, lineNumber ) {
  12. errors.push( errorMessage );
  13. };
  14. </script>
  15. <script src="../../../dist/jquery.min.js"></script>
  16. </head>
  17. <body>
  18. <script>
  19. window.parent.iframeCallback( cc_on, errors, jQuery );
  20. </script>
  21. </body>
  22. </html>