You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

client_configuration.js 420B

1234567891011
  1. const config = require("./configuration");
  2. /** Settings that should be handed through to the clients */
  3. module.exports = {
  4. MAX_BOARD_SIZE: config.MAX_BOARD_SIZE,
  5. MAX_EMIT_COUNT: config.MAX_EMIT_COUNT,
  6. MAX_EMIT_COUNT_PERIOD: config.MAX_EMIT_COUNT_PERIOD,
  7. BLOCKED_TOOLS: config.BLOCKED_TOOLS,
  8. BLOCKED_SELECTION_BUTTONS: config.BLOCKED_SELECTION_BUTTONS,
  9. AUTO_FINGER_WHITEOUT: config.AUTO_FINGER_WHITEOUT,
  10. };