Merge pull request #1 from bslassey/bslassey_get_size_from_chromecast

bug 1116860 - Get size of second screen from the chromecast r=minkle,rba...
This commit is contained in:
Randall E. Barker 2015-01-14 11:19:31 -08:00
Родитель 7682abe3bd bed1ab214f
Коммит 344ebd0dbf
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,12 @@ CallingClient.prototype = {
if (!msg) {
return;
}
if (!this.senderId) {
this.senderId = senderId;
this._sendMessage({ type: "size",
width: window.innerWidth,
height: window.innerHeight });
}
log("Received raw message " + msg);
var data = JSON.parse(msg);