Plovr demo

This commit is contained in:
Petr Pridal
2012-06-19 09:19:59 +02:00
parent 613b90c7f3
commit 7109bd3868
5 changed files with 98 additions and 0 deletions

12
main.js Normal file
View File

@@ -0,0 +1,12 @@
goog.provide('ol');
goog.require('ol.Map');
goog.require('goog.dom');
ol.main = function() {
goog.dom.getElement('output').innerHTML = 'test';
}
window['main'] = ol.main;
// or goog.exportSymbol('main', hello.main);