Title: [92850] trunk/Source/WebCore
- Revision
- 92850
- Author
- [email protected]
- Date
- 2011-08-11 08:24:30 -0700 (Thu, 11 Aug 2011)
Log Message
Web Inspector: source frame popover simetimes pops up after user switches from Scripts panel
https://bugs.webkit.org/show_bug.cgi?id=66057
Reviewed by Pavel Feldman.
* inspector/front-end/SourceFrame.js: remove popover timer when removing popover.
(WebInspector.SourceFrame.prototype._mouseDown):
(WebInspector.SourceFrame.prototype._hidePopup):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (92849 => 92850)
--- trunk/Source/WebCore/ChangeLog 2011-08-11 14:59:15 UTC (rev 92849)
+++ trunk/Source/WebCore/ChangeLog 2011-08-11 15:24:30 UTC (rev 92850)
@@ -1,3 +1,14 @@
+2011-08-11 Andrey Kosyakov <[email protected]>
+
+ Web Inspector: source frame popover simetimes pops up after user switches from Scripts panel
+ https://bugs.webkit.org/show_bug.cgi?id=66057
+
+ Reviewed by Pavel Feldman.
+
+ * inspector/front-end/SourceFrame.js: remove popover timer when removing popover.
+ (WebInspector.SourceFrame.prototype._mouseDown):
+ (WebInspector.SourceFrame.prototype._hidePopup):
+
2011-08-11 Vsevolod Vlasov <[email protected]>
Web Inspector: Scripts panel: display the current search match index in the toolbar.
Modified: trunk/Source/WebCore/inspector/front-end/SourceFrame.js (92849 => 92850)
--- trunk/Source/WebCore/inspector/front-end/SourceFrame.js 2011-08-11 14:59:15 UTC (rev 92849)
+++ trunk/Source/WebCore/inspector/front-end/SourceFrame.js 2011-08-11 15:24:30 UTC (rev 92850)
@@ -661,7 +661,6 @@
_mouseDown: function(event)
{
- this._resetHoverTimer();
this._hidePopup();
if (event.button != 0 || event.altKey || event.ctrlKey || event.metaKey)
return;
@@ -727,6 +726,7 @@
_hidePopup: function()
{
+ this._resetHoverTimer();
if (!this._popup)
return;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes