MINOR Fixed some JS warnings

This commit is contained in:
Ingo Schommer 2011-10-29 20:58:48 +02:00
parent c6aa0697d3
commit 7924ce9f74
2 changed files with 2 additions and 6 deletions

View File

@ -42,11 +42,7 @@
this._super();
},
onunmatch: function() {
this._super();
},
redraw: function() {
this.layout();
},

View File

@ -83,7 +83,7 @@
onunmatch: function() {
// Prepare iframes for removal, otherwise we get loading bugs
this.find('iframe').each(function() {
this.contentWindow.location.href = 'about:blank';
$(this).attr('src', 'about:blank');
$(this).remove();
});