There is no longer a need to hack brackets
src
folder to the 'Response-for-Brackets' folder created in step 3The location and filename of the media query css file can now be defined as a property so each project can dictate its own location. The default value for the media query css file is css/media-queries.css
The user can now define a preferred layout for when the user switches to responsive mode. This property will update the Response > Horizontal View or Response > Vertical View menu items depending on how it is set. It can either be set to 'horizontal' or 'vertical' and is case insensitive. The default value for the layout is 'vertical'.
The user can now define if the reponsive mode should use the Live Preview Base URL settings defined in File > Project Settings by default. The purpose of this is to allow users using any dynamic language to be able to use the responsive mode. The default value for this property is false.
The following is an example of the .brackets.json file that can be defined for each preferences
{
"responsive.mediaQueryFile": "css2/media-queries2.css"
"responsive.preferredLayout": "horizontal",
"responsive.useLivePreviewUrl": true
}