12.07.2015 Views

Pro JavaScript for Web Apps pdf - EBook Free Download

Pro JavaScript for Web Apps pdf - EBook Free Download

Pro JavaScript for Web Apps pdf - EBook Free Download

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

CHAPTER 7 CREATING RESPONSIVE WEB APPSvar screenQuery = window.matchMedia('screen AND (max-width:500px)');deviceConfig.smallScreen = ko.observable(screenQuery.matches);if (screenQuery.addListener) {screenQuery.addListener(function(mq) {deviceConfig.smallScreen(mq.matches);});}deviceConfig.largeScreen = ko.computed(function() {return !deviceConfig.smallScreen();});setInterval(function() {deviceConfig.smallScreen(window.innerWidth

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!