]> source.dussan.org Git - vaadin-framework.git/commitdiff
Use window.console instead of just console in vaadinPush to appease IE (#11980)
authorJohannes Dahlström <johannesd@vaadin.com>
Tue, 4 Jun 2013 12:20:15 +0000 (15:20 +0300)
committerJohannes Dahlström <johannesd@vaadin.com>
Tue, 4 Jun 2013 12:23:27 +0000 (15:23 +0300)
Change-Id: I6f363e9afc550d70eb451005dcfdfb53e5533273

WebContent/VAADIN/vaadinPush.js.tpl

index 3928fba1b6ae5297da4e84ae678491b44d981d46..43dfd18b4068b1dd04a71a4ada936fc6af29d024 100644 (file)
@@ -3,6 +3,6 @@ window.jQueryVaadin = window.jQuery.noConflict(true);
 (function(jQuery, undefined) {
        @jquery.atmosphere.js@
 })(jQueryVaadin);
-if (console) {
-       console.log("Vaadin push loaded");
-}
\ No newline at end of file
+if (window.console) {
+       window.console.log("Vaadin push loaded");
+}