14 lines
601 B
JavaScript
14 lines
601 B
JavaScript
"use strict";
|
|
// -------------------------------------------------------------
|
|
// WARNING: this file is used by both the client and the server.
|
|
// Do not use any browser or node-specific API!
|
|
// -------------------------------------------------------------
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
storedAttrPostfix: '-hammerhead-stored-value',
|
|
hoverPseudoClass: 'data-hammerhead-hovered',
|
|
focusPseudoClass: 'data-hammerhead-focused',
|
|
uploadInfoHiddenInputName: 'hammerhead|upload-info-hidden-input-name',
|
|
};module.exports = exports.default;
|
|
|