Skip to content

Commit

Permalink
Merge pull request #830 from ahasnawi/plugins-debugging-fix
Browse files Browse the repository at this point in the history
Fix and enable plugins debugging
  • Loading branch information
bkalaldeh authored Nov 14, 2024
2 parents c28d5ab + fa49b93 commit e4a902b
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
15 changes: 10 additions & 5 deletions pluginTester/styles/appStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -3758,15 +3758,15 @@ input[type="checkbox"].ios8-switch:checked + label:before {
.toggle-item .checkbox label::after{
left: 5px !important;
}
.dev-mode-code-popup{
.dev-mode-code-popup, .ship-logs-popup {
position: relative;
padding-bottom: 24px;
}
.dev-mode-code-popup .textfield{
.dev-mode-code-popup .textfield, .ship-logs-popup .textfield{
position: relative;
font-size: 16px;
}
.dev-mode-code-popup .textfield label{
.dev-mode-code-popup .textfield label, .ship-logs-popup .textfield label{
position: absolute;
display: block;
font-size: 12px;
Expand All @@ -3775,7 +3775,7 @@ input[type="checkbox"].ios8-switch:checked + label:before {
transform: translateY(0.625em);
padding: 0 12px;
}
.dev-mode-code-popup .textfield input{
.dev-mode-code-popup .textfield input, .ship-logs-popup .textfield input{
display: block;
width: 100%;
background-color: rgba(128, 128, 128, 0.1);
Expand All @@ -3789,10 +3789,15 @@ input[type="checkbox"].ios8-switch:checked + label:before {
cursor: text;
border-bottom: 1px solid rgba(128, 128, 128, 0.5);
}
.dev-mode-code-popup .textfield input::placeholder{
.dev-mode-code-popup .textfield input::placeholder, .ship-logs-popup .textfield input::placeholder{
opacity: .5;
}

.ship-logs-popup .ship-logs-enable-features {
display:flex;
justify-content: space-between;
}

#overrideCodeWidgetMessage {
font-size: 12px;
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/_bundles/buildfire_lightcarousel.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/_bundles/buildfire_lightcarousel.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/_bundles/jquery_angular_buildfire_smartcrop.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/buildfire.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ var buildfire = {

var header = document.querySelector('head');
var script = document.createElement('script');
script.src='http://debug.buildfire.com/target/target-script-min.js#' + tag;
script.src='https://debug.buildfire.com/target/target-script-min.js#' + tag;
script.id = 'BuildFireAppDebuggerScript';
header.appendChild(script);

Expand Down
2 changes: 1 addition & 1 deletion scripts/buildfire.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/buildfire.min.js.map

Large diffs are not rendered by default.

0 comments on commit e4a902b

Please sign in to comment.