Merge pull request #11089 from mfo/US/fix-table-border
ETQ instructeur, je veux avoir une bordure sur mon tableau de bord instructeur même si mon niveau de zoom est > 100%
This commit is contained in:
commit
08c963ae25
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ import { ApplicationController } from './application_controller';
|
|||
|
||||
export class FixTableBorderController extends ApplicationController {
|
||||
connect() {
|
||||
const pixelSize = Math.round((1 / window.devicePixelRatio) * 100) / 100;
|
||||
|
||||
let pixelSize = Math.round((1 / window.devicePixelRatio) * 100) / 100;
|
||||
pixelSize = pixelSize < 1 ? 1 : pixelSize;
|
||||
// Safari does not support devicePixelRatio
|
||||
if (navigator.userAgent.indexOf('Safari') > -1) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue