⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185667 in webkit


Ignore:
Timestamp:
Jun 17, 2015, 2:27:35 PM (11 years ago)
Author:
rniwa@webkit.org
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):

Location:
trunk/Websites/perf.webkit.org
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/perf.webkit.org/ChangeLog

    r185594 r185667  
     12015-06-17  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Increase the popup dismissal time from 100ms to 500ms
     4        https://bugs.webkit.org/show_bug.cgi?id=146077
     5
     6        Rubber-stamped by Andreas Kling.
     7
     8        * public/v2/popup.js:
     9        (App.PopupView.scheduleHiding):
     10
    1112015-06-16  Ryosuke Niwa  <rniwa@webkit.org>
    212
  • trunk/Websites/perf.webkit.org/public/v2/popup.js

    r174477 r185667  
    2020    scheduleHiding: function ()
    2121    {
    22         this._hidingTimer = Ember.run.later(this, this.hideNow, 100);
     22        this._hidingTimer = Ember.run.later(this, this.hideNow, 500);
    2323    },
    2424    unscheduleHiding: function ()
Note: See TracChangeset for help on using the changeset viewer.