blob: 2070b49c4f8c6e9edcec23853150b04aa9ac1e58 [file] [log] [blame]
// Copyright 2013 Google Inc. All Rights Reserved.
/**
* @fileoverview Constants for Search.
* @author peterxiao@google.com (Peter Xiao)
*/
goog.provide('cvox.SearchConstants');
/**
* @constructor
*/
cvox.SearchConstants = function() {
};
/**
* Keycodes.
*/
cvox.SearchConstants.KeyCode = {
UP: 38,
DOWN: 40,
PAGE_UP: 33,
PAGE_DOWN: 34,
LEFT: 37,
RIGHT: 39,
ENTER: 13,
ESC: 27
};