Changes between Initial Version and Version 1 of Ticket #12736
- Timestamp:
- Apr 20, 2011, 2:44:25 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12736
- Property Cc rawld added
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
invalid
-
Ticket #12736 – Description
initial v1 1 1 If I use define method to load and declare module in inline javascript. The callback is never called. But if I use require(), the callback is successfully called. Here is my test case to reproduce the problem. (Also, if the javascript is externalized to a js file and introduced into HTML by <script> tag, it still does not work.) 2 2 3 {{{ 3 4 <!DOCTYPE HTML> 4 5 <html> … … 19 20 </body> 20 21 </html> 22 }}}