We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f0df0e + bc582ca commit 5fef6e5Copy full SHA for 5fef6e5
js/background.js
@@ -74,6 +74,12 @@ var spaces = (function () {
74
//add listeners for tab and window focus changes
75
//when a tab or window is changed, close the move tab popup if it is open
76
chrome.windows.onFocusChanged.addListener(function(windowId) {
77
+ // Prevent a click in the popup on Ubunto or ChroneOS from closing the
78
+ // popup prematurely.
79
+ if (windowId == chrome.windows.WINDOW_ID_NONE || windowId == spacesPopupWindowId) {
80
+ return;
81
+ }
82
+
83
if (!debug && spacesPopupWindowId) {
84
if (spacesPopupWindowId) {
85
closePopupWindow();
0 commit comments