March 2010
Intermediate to advanced
304 pages
8h 23m
English
You can browse or check out the source code from http://code.google.com/p/google-wave-embed-examples.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Wave Embed Example</title> <script src="http://wave-api.appspot.com/public/embed.js" type="text/javascript"></script> <style type="text/css"> body { font-family: arial, verdana, sans-serif; } #container { background: #fafafa; border: 1px solid #748F8A; height: 100%; padding: 10px; width: 100%; } #wrapper { color: #333333; height: 350px; margin: 0px auto; width: 500px; } </style> <script type="text/javascript"> var waveUrl = 'https://wave.google.com/wave/'; var waveId = 'googlewave.com!w+bvQu5APyA'; var waveContainer, waveConfig; var waves = []; waves[0] = ['bvQu5APyA','Education','#eeeeee', '#748F8A', 'Arial', '10pt']; waves[1] = ['bvQu5APyD','Environment','#003399', '#99ccff', 'Georgia', '11pt']; waves[2] = ['bvQu5APyF','Health Care','#00ff66', '#333333', 'Courier', '12pt']; waves[3] = ['bvQu5APyH','Technology','#252525', '#ffffff', 'Arial', '11pt']; function load() { waveContainer = new WavePanel(waveUrl); waveContainer.setUIConfig('#eeeeee', '#748F8A', 'Arial', '10pt'); waveContainer.loadWave(waveId); waveContainer.init(document.getElementById('container')); renderSelect(); } function loadNewWave(id) ...