Don't show download button if there's no window.print

Bug: T309591
Change-Id: I2e9b59cbf0e83942af0023c46052d7f2e784aa11
This commit is contained in:
Ammarpad 2023-01-24 19:06:33 +01:00
parent d3c451f87e
commit ec3056265d
2 changed files with 6 additions and 1 deletions

View file

@ -33,6 +33,6 @@
},
{
"resourceModule": "skins.minerva.scripts",
"maxSize": "11.9KB"
"maxSize": "12.0KB"
}
]

View file

@ -45,6 +45,11 @@
var androidVersion = getAndroidVersion( userAgent ),
chromeVersion = getChromeVersion( userAgent );
if ( typeof window.print !== 'function' ) {
// T309591: No window.print support
return false;
}
// Download button is restricted to certain namespaces T181152.
// Not shown on missing pages
// Defaults to 0, in case cached JS has been served.