How does Dream Weaver CS5 maintain code collapse state?

When you collapse the code in Dreamweaver CS5, the stall condition remains until the file is in the same folder, however, when you copy the file to a new folder, the stall condition disappears and the code expands, so that someone knows how to make the code fall even after it is copied or upload to the server?

+3
source share
1 answer

enter image description here

if you reference this function, then it is installed in Dreamweaver, and not inside the file, so when you move the file, Dreamweaver will treat it as different files:

root/index.php

and moved to another place

root/another_folder/index.php

therefore, with every move, this should be reset.

hope this helps

+3
source

All Articles