Skip to content

Commit

Permalink
Alter directive for sourceURL to use # in addition to @
Browse files Browse the repository at this point in the history
  • Loading branch information
sroussey committed May 28, 2013
1 parent 572fabc commit f148289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/content/firebug/js/debugger.js
Expand Up @@ -2149,7 +2149,7 @@ Firebug.Debugger = Obj.extend(Firebug.ActivableModule,
{
var url = null;
// Ignores any trailing whitespace in |source|
const reURIinComment = /\/\/@\ssourceURL=\s*(\S*?)\s*$/m;
const reURIinComment = /\/\/[@#]\ssourceURL=\s*(\S*?)\s*$/m;
var m = reURIinComment.exec(lines[lines.length - 1]);

if (m)
Expand Down

0 comments on commit f148289

Please sign in to comment.