$()

in src/main/resources/SLING-INF/libs/sling/resource-editor/static/js/tree/AddNodeController.js [65:73]


			$("body").on('keydown', function (e) {
		    	// see http://www.javascripter.net/faq/keycodes.htm
				var aKey = 65;
		    	if (e.ctrlKey && aKey==e.which) { /*ctrl-a*/
		    		if (thatAddNodeController.dialogShown){
		    			thatAddNodeController.addNode();
		    		}
		    	}
			})