mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed application crash on IE.
removed changed header text to be capitalize instead of uppercase
This commit is contained in:
@@ -544,7 +544,7 @@ footer {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
body h1, body h2, body h3, body h4, body h5, body h6 {
|
body h1, body h2, body h3, body h4, body h5, body h6 {
|
||||||
text-transform: uppercase;
|
text-transform: capitalize;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
.b-database {
|
.b-database {
|
||||||
|
@@ -8,6 +8,17 @@
|
|||||||
this.push(model);
|
this.push(model);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
if (!window.console) {
|
||||||
|
window.console = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!window.console.debug) {
|
||||||
|
window.console.debug = function () {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
window.alert = function (message) {
|
window.alert = function (message) {
|
||||||
window.Messenger().post(message);
|
window.Messenger().post(message);
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user