Roo/bootstrap/Popover.js
authoredward <edward@roojs.com>
Mon, 27 Mar 2017 05:52:29 +0000 (13:52 +0800)
committeredward <edward@roojs.com>
Mon, 27 Mar 2017 05:52:29 +0000 (13:52 +0800)
Roo/bootstrap/Popover.js

index a977d21..0933285 100644 (file)
@@ -167,13 +167,13 @@ Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
         this.hoverState = 'in';
     
         if (!this.delay || !this.delay.show) {
-            this.show();
+            this.show(on_el);
             return;
         }
         var _t = this;
         this.timeout = setTimeout(function () {
             if (_t.hoverState == 'in') {
-                _t.show();
+                _t.show(on_el);
             }
         }, this.delay.show)
     },