issue #23966: apply opacity hack on resize
authorSteve Hackbarth <stephenhackbarth@gmail.com>
Tue, 29 Jul 2014 18:40:25 +0000 (14:40 -0400)
committerSteve Hackbarth <stephenhackbarth@gmail.com>
Tue, 29 Jul 2014 18:40:25 +0000 (14:40 -0400)
lib/enyo-x/source/views/module_container.js

index dff7f03..e7ccd5e 100644 (file)
@@ -56,6 +56,12 @@ trailing:true, white:true*/
         autoDismiss: false, modal: true, floating: true, scrim: true},
       {name: "navigator", kind: "XV.Navigator"}
     ],
+    resizeHandler: function () {
+      this.inherited(arguments);
+      if (this.$.notifyPopup.showing) {
+        this.$.notifyPopup.applyStyle("opacity", 1); // XXX not sure why this hack is necessary.
+      }
+    },
     activate: function () {
       this.goToNavigator();
       this.$.navigator.activate();