Present Online
Send the link below via email or IM to invite your audience
Start the presentation
- Invited audience will follow you as you navigate and present
- This link expires 10 minutes after you close the presentation
- A maximum of 30 users can view together your prezi
- Learn more about this feature in the manual
Download prezi for:
Present offline on a PC or Mac.
- Embedded YouTube videos need an active Internet connection to play.
- Portable prezis are not editable.
Edit and present offline with Prezi Desktop
- To open PEZ file, please download Prezi Desktop
Do you really want to delete this prezi?
Neither you, nor the coeditors you shared it with will be able to recover it again.
Make your likes visible on Facebook?
Connect your Facebook account to Prezi and let your likes appear on your timeline.
You can change this under Settings & Account at any time.
Google Wave Gadgets API & Examples
Robots, Gadgets, Embed
by Pamela Fox
on 28 June 2010
Tweet
Transcript of Google Wave Gadgets API & Examples
Google Wave
Gadgets API state callback state delta wave.setStateCallback(update);
function update() {
var keys = wave.getState().getKeys();
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
if (key.match('^vote-')) {
total += parseInt(wave.getState().get(key));
count++;
}
}
document.getElementById('total').innerHTML = total;
} function onClick() {
wave.getState().submitValue('vote-' wave.getViewer().getId(), -1);
}
State Delta State Callback XML CSS HTML JS CSS HTML XML Gadgets API Wave Gadgets API + Wave Gadget = Mini Webpage Shared State Collaborative Web App + = state: vote-douwe@google.com | 1 state: Examples
See the full transcriptGadgets API state callback state delta wave.setStateCallback(update);
function update() {
var keys = wave.getState().getKeys();
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
if (key.match('^vote-')) {
total += parseInt(wave.getState().get(key));
count++;
}
}
document.getElementById('total').innerHTML = total;
} function onClick() {
wave.getState().submitValue('vote-' wave.getViewer().getId(), -1);
}
State Delta State Callback XML CSS HTML JS CSS HTML XML Gadgets API Wave Gadgets API + Wave Gadget = Mini Webpage Shared State Collaborative Web App + = state: vote-douwe@google.com | 1 state: Examples





