Skip to content

Commit 63719dc

Browse files
author
p01
committed
Preserve the original URL String
1 parent ac4a06c commit 63719dc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/resource-manager/resource_service.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ cls.ResourceManagerService = function(view, network_logger)
3535
this._documentList.forEach(function(d)
3636
{
3737
// use the URL class
38+
d.original_url = d.url;
3839
d.url = new URI(d.url);
3940
});
4041

src/resource-manager/resource_templates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ templates.resource_tree =
145145
this._get_short_distinguisher(d.url),
146146
'class','resource-tree-document-label',
147147
'data-tooltip','js-script-select',
148-
'data-tooltip-text',d.url
148+
'data-tooltip-text',d.original_url
149149
],
150150
' ',
151151
d.sameOrigin?[]:['span',d.url.host,'class','resource-domain'],

0 commit comments

Comments
 (0)