By now it's returning the error on:
Line: 39
Char: 7
-Line -> frameWnd.gwtOnLoad(onLoadErrorFunc, 'verenweb', base);
----------------------------
function maybeStartModule(){
if (scriptsDone && loadDone) {
var iframe = $doc_0.getElementById('verenweb');
var frameWnd = iframe.contentWindow;
if (isHostedMode()) {
frameWnd.__gwt_getProperty = function(name_0){
return computePropValue(name_0);
}
;
}
verenweb = null;
frameWnd.gwtOnLoad(onLoadErrorFunc, 'verenweb', base);
$stats && $stats({moduleName:'verenweb', subSystem:'startup',
evtGroup:'moduleStartup', millis:(new Date()).getTime(), type:'end'});
}
}
----------------------------
---------------------------- onLoadErrorFunc
function processMetas(){
var metas = document.getElementsByTagName('meta');
for (var i = 0, n = metas.length; i < n; ++i) {
var meta = metas[i], name_0 = meta.getAttribute('name'),
content;
if (name_0) {
if (name_0 == 'gwt:property') {
content = meta.getAttribute('content');
if (content) {
var value, eq = content.indexOf('=');
if (eq >= 0) {
name_0 = content.substring(0, eq);
value = content.substring(eq + 1);
}
else {
name_0 = content;
value = '';
}
metaProps[name_0] = value;
}
}
else if (name_0 == 'gwt:onPropertyErrorFn') {
content = meta.getAttribute('content');
if (content) {
try {
propertyErrorFunc = eval(content);
}
catch (e) {
alert('Bad handler "' + content + '" for
"gwt:onPropertyErrorFn"');
}
}
}
else if (name_0 == 'gwt:onLoadErrorFn') {
content = meta.getAttribute('content');
if (content) {
try {
onLoadErrorFunc = eval(content);
}
catch (e) {
alert('Bad handler "' + content + '" for
"gwt:onLoadErrorFn"');
}
}
}
}
}
}
----------------------------
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---