zeroclickinfo-goodies/share/goodie/screen_resolution/screen_resolution.js

14 lines
419 B
JavaScript
Raw Normal View History

DDH.screen_resolution = DDH.screen_resolution || {};
DDH.screen_resolution.build = function(ops){
2015-06-24 08:49:05 -07:00
var title = window.screen.width + ' × ' + window.screen.height,
sub = ['Your Screen Resolution'];
if (window.devicePixelRatio && window.devicePixelRatio > 1){
2015-06-24 08:49:05 -07:00
sub.push('Pixel Ratio: x' + window.devicePixelRatio);
}
2015-06-24 08:49:05 -07:00
ops.data.title = title;
ops.data.subtitle = sub;
return ops;
}