Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Mar 14, 2024
1 parent c3d5328 commit d1ab2d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions resources/assets/js/functions/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -1739,8 +1739,7 @@ const localforage = require("localforage");
}
// JSONP
if (options.dataType === 'json' && options.url.indexOf('callback=') >= 0) {

let callbackName = 'f7jsonp_' + Date.now() + ($._jsonpRequests++);
let callbackName = '__jsonp_' + Date.now() + ($._jsonpRequests++);
let abortTimeout;
let callbackSplit = options.url.split('callback=');
let requestUrl = callbackSplit[0] + 'callback=' + callbackName;
Expand Down
6 changes: 6 additions & 0 deletions resources/assets/sass/dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ body.dark-mode-reverse {
background-color: #d5d5d5;
border-color: #999999;
}
&:focus {
box-shadow: none;
}
}

.ivu-btn-error {
Expand All @@ -24,6 +27,9 @@ body.dark-mode-reverse {
background-color: #ffbdab;
border-color: #ffbdab;
}
&:focus {
box-shadow: none;
}
}

.ivu-modal-mask {
Expand Down

0 comments on commit d1ab2d9

Please sign in to comment.