<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -13,6 +13,10 @@
 	&lt;link rel=&quot;stylesheet&quot; href=&quot;../../modalbox.css&quot; type=&quot;text/css&quot; /&gt;
 	
 	&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
+		html, body {
+			width: 100%;
+			height: 100%;
+		}
 		#MB_loading {
 			font-size: 13px;
 		}
@@ -69,7 +73,7 @@
 			&lt;li&gt;&lt;a href=&quot;_ajax_form.html&quot; title=&quot;Modalbox without transitions&quot; onclick=&quot;Modalbox.show(this.href, {title: this.title, transitions: false}); return false;&quot;&gt;Modalbox without transitions&lt;/a&gt;&lt;/li&gt;
 			&lt;li&gt;&lt;a href=&quot;_ajax_form.html&quot; title=&quot;Overlay opacity parameter test&quot; onclick=&quot;Modalbox.show(this.href, {title: this.title, overlayOpacity: 0.1}); return false;&quot;&gt;Overlay opacity parameter test&lt;/a&gt;&lt;/li&gt;
 			&lt;li&gt;&lt;a href=&quot;_ajax_method_get.php&quot; title=&quot;GET/POST mixed methods test: Method GET&quot; onclick=&quot;Modalbox.show(this.href, {title: this.title, params: {param: '1: via GET'} }); return false;&quot;&gt;GET/POST mixed methods test&lt;/a&gt;&lt;/li&gt;
-			&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox without header test&quot; onclick=&quot;Modalbox.show('&lt;h1&gt;No header modalbox&lt;/h1&gt;&lt;input type=\'button\' value=\'Resize me (20,20)\' onclick=\'Modalbox.resize(20,20)\' /&gt;&lt;input type=\'button\' value=\'Resize me -100\' onclick=\'Modalbox.resize(-20,-20)\' /&gt;', {title: false }); return false;&quot;&gt;Modalbox without header test&lt;/a&gt;&lt;/li&gt;
+			&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox without header test&quot; onclick=&quot;Modalbox.show('&lt;h1&gt;No header modalbox&lt;/h1&gt;&lt;input type=\'button\' value=\'Resize me (20,20)\' onclick=\'Modalbox.resize(20,20)\' /&gt;&lt;input type=\'button\' value=\'Resize me -100\' onclick=\'Modalbox.resize(-20,-20)\' /&gt;', {title: false, slideDownDuration: 3 }); return false;&quot;&gt;Modalbox without header test&lt;/a&gt;&lt;/li&gt;
 			&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox Ajax error test&quot; onclick=&quot;Modalbox.show('http://www.google.com', {title: this.title }); return false;&quot;&gt;Modalbox Ajax error test&lt;/a&gt;&lt;/li&gt;
 			&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox wrong parameter test&quot; onclick=&quot;Modalbox.show(123, {title: this.title }); return false;&quot;&gt;Modalbox wrong parameter test&lt;/a&gt;&lt;/li&gt;
 			&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox auto-focusing disabled test&quot; onclick=&quot;Modalbox.show($('longTextContent'), {title: this.title, height: 200, autoFocusing: false, closeValue: 'Close me' }); return false;&quot;&gt;Modalbox auto-focusing disabled test&lt;/a&gt;&lt;/li&gt;
@@ -78,7 +82,8 @@
 			&lt;li&gt;&lt;a href=&quot;_ajax_form.html?v=7&quot; title=&quot;Modalbox resize methods test&quot; onclick=&quot;Modalbox.show(this.href, {title: this.title}); return false;&quot;&gt;Modalbox resize methods test&lt;/a&gt;&lt;/li&gt;
 
 			&lt;li&gt;&lt;a href=&quot;_ajax_content.html&quot; title=&quot;Modalbox ASP.NET injecting test&quot; onclick=&quot;Modalbox.show(this.href, {title: this.title, aspnet: true}); return false;&quot;&gt;Modalbox ASP.NET injecting test&lt;/a&gt;&lt;/li&gt;
-
+			
+			&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox Google Maps injecting test&quot; onclick=&quot;Modalbox.show($('map_canvas'), {title: this.title, width: 523, afterLoad: initializeGMaps }); return false;&quot;&gt;Modalbox Google Maps injecting test&lt;/a&gt;&lt;/li&gt;
 
 		&lt;/ul&gt;
 
@@ -121,6 +126,21 @@
 		&lt;/div&gt;
 
 		&lt;p&gt;&lt;a href=&quot;#&quot; title=&quot;Modalbox without Ajax plain HTML test&quot; onclick=&quot;Modalbox.show('&lt;h1&gt;HTML Header&lt;/h1&gt;&lt;input type=\'button\' value=\'Resize me +100\' onclick=\'Modalbox.resize(0, 120)\' /&gt;&lt;input type=\'button\' value=\'Resize me -100\' onclick=\'Modalbox.resize(0, -100)\' /&gt;', {title: this.title, height: 250 }); return false;&quot;&gt;Modalbox window scrolling test&lt;/a&gt;&lt;/p&gt;
+		
+		&lt;script  src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;sensor=false&amp;amp;key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA&quot;
+		type=&quot;text/javascript&quot;&gt;&lt;/script&gt; 
+		&lt;script type=&quot;text/javascript&quot;&gt; 
+
+		function initializeGMaps() {
+			if (GBrowserIsCompatible()) {
+				var map = new GMap2(document.getElementById(&quot;map_canvas&quot;));
+				map.setCenter(new GLatLng(37.4419, -122.1419), 13);
+			}
+		}
+
+		&lt;/script&gt;
+		&lt;div id=&quot;map_canvas&quot; style=&quot;width: 500px; height: 300px; display: none&quot;&gt;&lt;/div&gt;
+		
 	&lt;/form&gt;
 &lt;/body&gt;
 &lt;/html&gt;</diff>
      <filename>tests/functional/func-modalbox-test.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a272cfb6f626c8cb799d0db17812bde570c2bcec</id>
    </parent>
  </parents>
  <author>
    <name>Andrew Okonetchnikov</name>
    <email>andreika@AndreikaMBP.local</email>
  </author>
  <url>http://github.com/okonet/modalbox/commit/f73f4cf50f839abf5db1e31abf371356a08d5487</url>
  <id>f73f4cf50f839abf5db1e31abf371356a08d5487</id>
  <committed-date>2008-12-21T05:24:50-08:00</committed-date>
  <authored-date>2008-12-21T05:24:50-08:00</authored-date>
  <message>Added Google Maps example to functional test page</message>
  <tree>f345a530b0ee3f35d7094884abf7be84d58f89f6</tree>
  <committer>
    <name>Andrew Okonetchnikov</name>
    <email>andreika@AndreikaMBP.local</email>
  </committer>
</commit>
