Changes between Initial Version and Version 1 of Ticket #14707, comment 7
- Timestamp:
- Feb 3, 2012, 5:48:20 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14707, comment 7
initial v1 9 9 }}} 10 10 11 So AFAICT there's no regression. The new require() call though does fail silently:11 So AFAICT there's no regression. The new require() call prints an error for me too: 12 12 13 13 {{{ 14 >>> require(["foo/bar"], function( ){ console.log("hi"); });14 >>> require(["foo/bar"], function(x){ console.log("failed"); }); 15 15 function() 16 "NetworkError: 404 Not Found - http://localhost/trunk/foo/bar.js" 16 17 }}} 18 19 My firebugs have the "show network errors" thing selected, although I don't remember selecting it; I think it's the default.