12345678910111213141516171819202122232425 |
- "use strict";
- var url = location.search.match(/[&?]file=([^&]+)/i);
- if (url) {
- url = decodeURIComponent(url[1]);
- document.body.textContent = url;
-
- window.getSelection().selectAllChildren(document.body);
- window.getSelection().collapseToEnd();
- }
|