diff --git a/browser/base/content/tabcandy/app/groups.js b/browser/base/content/tabcandy/app/groups.js index 833e3a2c1e24..02c0fe17b64d 100644 --- a/browser/base/content/tabcandy/app/groups.js +++ b/browser/base/content/tabcandy/app/groups.js @@ -973,13 +973,21 @@ var DragInfo = function(element, event) { DragInfo.prototype = { // ---------- snap: function(event, ui){ - window.console.log( event, ui); + //window.console.log( event, ui); // Step 1: Find the closest group by edge // Step 2: Match to the to }, + // ---------- + start: function() { + // When a tab drag starts, make it the focused tab. + if( !this.item.isAGroup ){ + Page.setActiveTab(this.item); + } + }, + // ---------- drag: function(event, ui) { if(this.item.isAGroup) { @@ -1023,6 +1031,7 @@ DragInfo.prototype = { this.item.reloadBounds(); this.item.pushAway(); } + } }; @@ -1041,6 +1050,7 @@ window.Groups = { cancel: '.close', start: function(e, ui) { drag.info = new DragInfo(this, e); + drag.info.start(); }, drag: function(e, ui) { drag.info.drag(e, ui); diff --git a/browser/base/content/tabcandy/app/ui.js b/browser/base/content/tabcandy/app/ui.js index 576ea01815f0..92e8ea455437 100644 --- a/browser/base/content/tabcandy/app/ui.js +++ b/browser/base/content/tabcandy/app/ui.js @@ -218,8 +218,9 @@ window.Page = { }); $(window).keyup(function(e){ - // If you hit escape or return, zoom into the active tab. - if(e.which == 27 || e.which == 13) + // If you hit escape or return, zoom into the active tab, + // but only if a title or other element isn't focused. + if((e.which == 27 || e.which == 13) && $(":focus").length == 0 ) if( self.getActiveTab() ) self.getActiveTab().zoom(); }); }, @@ -585,7 +586,7 @@ UIClass.prototype = { addDevMenu: function() { var self = this; - var html = ''; var $select = $(html) .appendTo('body') .change(function () { @@ -595,7 +596,7 @@ UIClass.prototype = { }); var commands = [{ - name: '*', + name: 'dev menu', code: function() { } }, { diff --git a/content/candies/revision-a/index.html b/content/candies/revision-a/index.html index 761c411483d3..c3b255f9076a 100644 --- a/content/candies/revision-a/index.html +++ b/content/candies/revision-a/index.html @@ -39,7 +39,30 @@ + var uservoiceOptions = { + /* required */ + key: 'mozillalabs', + host: 'feedback.mozillalabs.com', + forum: '56804', + showTab: true, + /* optional */ + alignment: 'left', + background_color:'#E9E9E9', + text_color: 'black', + hover_color: '#AAA', + lang: 'en', + }; + function _loadUserVoice() { + var s = document.createElement('script'); + s.setAttribute('type', 'text/javascript'); + s.setAttribute('src', ("https:" == document.location.protocol ? "https://" : "http://") + "cdn.uservoice.com/javascripts/widgets/tab.js"); + document.getElementsByTagName('head')[0].appendChild(s); + } + _loadSuper = window.onload; + window.onload = (typeof window.onload != 'function') ? _loadUserVoice : function() { + _loadSuper(); _loadUserVoice(); }; + +