14 lines
171 B
JavaScript
14 lines
171 B
JavaScript
/*global define*/
|
|
'use strict';
|
|
|
|
define([], function () {
|
|
return {
|
|
|
|
Page: '',
|
|
|
|
// What is the enter key constant?
|
|
ENTER_KEY: 13,
|
|
ESCAPE_KEY: 27
|
|
};
|
|
});
|