Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome developer tools do not show all JavaScript files any more

Not all JavaScript files are visible in Chorme Developer tools any more.

Google Chrome is up to date. Version 44.0.2403.130 m Debug version of the app. Scripts in the head.

<script src="/Scripts/jquery-ui-1.8.24.js"></script> <script src="/Scripts/jquery.validate.js"></script>  ...  <script src="/Client/Statics/GuiContainers.js"></script> <script src="/Client/ClientDAL.js"></script> <script src="/Client/ClientLayoutUpdater.js"></script> <script src="/Client/ClientRenderer.js"></script> <script src="/Client/ControllerLocator.js"></script> 

First part of the scripts is visible in Chrome Developer Tools under Sources menu on localhost/Scripts/* path. Second part of the scripts is not visible since yesterday. What is the matter with the Developer Tools?

There are no errors in JavaScript console. I can see successful requests for JavaScript files in network tab. All JavaScript is loaded. Application works fine.

What is the matter with the Developer Tools? Does anyone have an idea?

If I add localhost "folder" to the workspace, everything is visible, even server side source files.

like image 606
Fosna Avatar asked Aug 06 '15 17:08

Fosna


People also ask

How do I see all the JavaScript files on a website?

You can also press F12 on your keyboard to open the web developer tool. In the top-left section of the developer tool, make sure Inspector (A) is selected at the top. In the condensed code under the Inspector header, find the <script> tag containing a link to a . js file (B).


1 Answers

Opened the network tab in developer tools and pressed F5 to refresh - thanks @Seano666 for your comment on the question

like image 108
abiNerd Avatar answered Oct 13 '22 21:10

abiNerd