Title: [185667] trunk/Websites/perf.webkit.org
Revision
185667
Author
[email protected]
Date
2015-06-17 14:27:35 -0700 (Wed, 17 Jun 2015)

Log Message

Increase the popup dismissal time from 100ms to 500ms
https://bugs.webkit.org/show_bug.cgi?id=146077

Rubber-stamped by Andreas Kling.

* public/v2/popup.js:
(App.PopupView.scheduleHiding):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (185666 => 185667)


--- trunk/Websites/perf.webkit.org/ChangeLog	2015-06-17 21:08:44 UTC (rev 185666)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2015-06-17 21:27:35 UTC (rev 185667)
@@ -1,3 +1,13 @@
+2015-06-17  Ryosuke Niwa  <[email protected]>
+
+        Increase the popup dismissal time from 100ms to 500ms
+        https://bugs.webkit.org/show_bug.cgi?id=146077
+
+        Rubber-stamped by Andreas Kling.
+
+        * public/v2/popup.js:
+        (App.PopupView.scheduleHiding):
+
 2015-06-16  Ryosuke Niwa  <[email protected]>
 
         v2 UI should have buttons to breakdown a test

Modified: trunk/Websites/perf.webkit.org/public/v2/popup.js (185666 => 185667)


--- trunk/Websites/perf.webkit.org/public/v2/popup.js	2015-06-17 21:08:44 UTC (rev 185666)
+++ trunk/Websites/perf.webkit.org/public/v2/popup.js	2015-06-17 21:27:35 UTC (rev 185667)
@@ -19,7 +19,7 @@
     },
     scheduleHiding: function ()
     {
-        this._hidingTimer = Ember.run.later(this, this.hideNow, 100);
+        this._hidingTimer = Ember.run.later(this, this.hideNow, 500);
     },
     unscheduleHiding: function ()
     {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to