MCUT_Supervisor/bs_demo/advanced/scripts/utils/common.js
2025-03-26 10:38:33 +08:00

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
};
});