openwebapps-myphotos/image.send.html

18 строки
344 B
HTML
Исходник Обычный вид История

2011-03-31 09:54:11 +04:00
<!DOCTYPE html>
<script src="js/jschannel.js"></script>
<script>
var chan = Channel.build({window: window.parent, origin: "*", scope: "openwebapps_conduit"});
chan.bind("image.send", function(trans, s) {
var d = new Date();
window.localStorage.setItem(d, JSON.stringify(s));
return null;
});
</script>
</head>
</html>
</script>