You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by sw...@apache.org on 2016/04/25 21:53:24 UTC

[1/2] git commit: updated refs/heads/master to 4ab7fb7

Repository: cloudstack
Updated Branches:
  refs/heads/master a2d46921a -> 4ab7fb78a


CLOUDSTACK-9164: Prevent firefox's quick search from opening in VM console


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/7db5f183
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/7db5f183
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/7db5f183

Branch: refs/heads/master
Commit: 7db5f1833e72d2208b3b085da47b4b0d114300d3
Parents: d518b61
Author: Anshul Gangwar <an...@citrix.com>
Authored: Tue Dec 22 11:59:09 2015 +0530
Committer: Anshul Gangwar <an...@Anshuls-MacBook-Pro.local>
Committed: Mon Apr 25 11:37:43 2016 +0530

----------------------------------------------------------------------
 systemvm/js/ajaxviewer.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/7db5f183/systemvm/js/ajaxviewer.js
----------------------------------------------------------------------
diff --git a/systemvm/js/ajaxviewer.js b/systemvm/js/ajaxviewer.js
index f5df103..09fb41a 100644
--- a/systemvm/js/ajaxviewer.js
+++ b/systemvm/js/ajaxviewer.js
@@ -649,6 +649,7 @@ AjaxViewer.prototype = {
 		this.sendingEventInProgress = false;
 		ajaxViewer.installMouseHook();
 		ajaxViewer.installKeyboardHook();
+		ajaxViewer.panel.parent().focus();
 
 		$(window).bind("resize", function() {
 			ajaxViewer.onWindowResize();
@@ -1259,6 +1260,7 @@ AjaxViewer.prototype = {
 		case 38 :		// UP
 		case 39 :		// RIGHT
 		case 40 :		// DOWN
+		case 47 :		// FORWARD SLASH // Added to stop Firefox's quick search from opening
 			return false;
 		}
 		


[2/2] git commit: updated refs/heads/master to 4ab7fb7

Posted by sw...@apache.org.
Merge pull request #1271 from anshul1886/CLOUDSTACK-9164

CLOUDSTACK-9164: Prevent firefox's quick search from opening in VM consolehttps://issues.apache.org/jira/browse/CLOUDSTACK-9164

To test:
In Firefox open any VM conosle, and try typing "/".
It should be typed in VM console and quick search of firefox should not open.

* pr/1271:
  CLOUDSTACK-9164: Prevent firefox's quick search from opening in VM console

Signed-off-by: Will Stevens <wi...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/4ab7fb78
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/4ab7fb78
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/4ab7fb78

Branch: refs/heads/master
Commit: 4ab7fb78adc3c489e427d20970fd7b396504e7ed
Parents: a2d4692 7db5f18
Author: Will Stevens <wi...@gmail.com>
Authored: Mon Apr 25 15:53:01 2016 -0400
Committer: Will Stevens <wi...@gmail.com>
Committed: Mon Apr 25 15:53:01 2016 -0400

----------------------------------------------------------------------
 systemvm/js/ajaxviewer.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------