Skip to content

Commit

Permalink
deploy: e2cb1e0
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyDo committed Jan 18, 2024
1 parent afb8896 commit b7ce2ed
Show file tree
Hide file tree
Showing 114 changed files with 197 additions and 137 deletions.
2 changes: 1 addition & 1 deletion client_components_input_drag-and-drop-image.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ <h1 class="page-title">client/components/input/drag-and-drop-image.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
45 changes: 31 additions & 14 deletions client_components_input_drag-and-drop.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
<pre class="prettyprint source linenums"><code>"use strict";

require("core-js/modules/es.array.iterator.js");
require("core-js/modules/es.object.to-string.js");
require("core-js/modules/es.string.iterator.js");
require("core-js/modules/es.weak-map.js");
require("core-js/modules/web.dom-collections.iterator.js");
Expand All @@ -55,6 +54,8 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
exports.default = void 0;
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
require("core-js/modules/es.function.name.js");
require("core-js/modules/es.object.to-string.js");
require("core-js/modules/es.regexp.to-string.js");
var bootstrap = _interopRequireWildcard(require("react-bootstrap"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _react = _interopRequireDefault(require("react"));
Expand Down Expand Up @@ -87,14 +88,15 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
* The Achievement interface, defining the properties of an achievement.
* @typedef
* @property {string} name - The name of the achievement.
* @property {string} src - The source URL of the achievement's badge image.
* @property {string} id - The ID of the achievement.
* @property {string} badgeUrl - The source URL of the achievement's badge image.
* @property {number} id - The ID of the achievement.
*/

/**
* Props for DragAndDropImage component
* @typedef {Object} Props
* @property {string} name - The name of the DragAndDrop component.
* @property {Achievement} initialAchievement - The initial achievement to display in the card.
*/

/**
Expand All @@ -105,19 +107,18 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
* @returns {JSX.Element} A React component that displays a drag-and-drop card for an achievement.
*/
function DragAndDrop(_ref) {
var name = _ref.name;
var _useState = useState({
name: 'drag badge to set',
src: '/images/blankbadge.svg'
}),
var name = _ref.name,
initialAchievement = _ref.initialAchievement;
var _useState = useState(initialAchievement),
_useState2 = (0, _slicedToArray2.default)(_useState, 2),
achievement = _useState2[0],
setAchievement = _useState2[1];
var handleClick = useCallback(function (event) {
event.preventDefault();
setAchievement({
name: 'drag badge to set',
src: '/images/blankbadge.svg'
badgeUrl: '/images/blankbadge.svg',
id: null,
name: 'drag badge to set'
});
});
var handleDragOver = useCallback(function (event) {
Expand All @@ -131,7 +132,11 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
} catch (error) {
return;
}
setAchievement(data);
setAchievement({
badgeUrl: data.src,
id: data.id,
name: data.name
});
});
return /*#__PURE__*/_react.default.createElement(Card, {
bg: "light",
Expand All @@ -141,22 +146,34 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
}, /*#__PURE__*/_react.default.createElement(Card.Img, {
className: "mt-4",
height: 100,
src: achievement.src,
src: achievement.badgeUrl,
variant: "top"
}), /*#__PURE__*/_react.default.createElement(Card.Body, {
className: "text-center"
}, /*#__PURE__*/_react.default.createElement(Form.Group, null, /*#__PURE__*/_react.default.createElement(Form.Control, {
name: name,
type: "hidden",
value: achievement.id
value: achievement.id ? achievement.id.toString() : ''
})), /*#__PURE__*/_react.default.createElement("div", {
className: "h3"
}, achievement.name)));
}
DragAndDrop.displayName = 'DragAndDrop';
DragAndDrop.propTypes = {
initialAchievement: _propTypes.default.shape({
badgeUrl: _propTypes.default.string,
id: _propTypes.default.number,
name: _propTypes.default.string.isRequired
}),
name: _propTypes.default.string.isRequired
};
DragAndDrop.defaultProps = {
initialAchievement: {
badgeUrl: '/images/blankbadge.svg',
id: null,
name: 'drag badge to set'
}
};
var _default = DragAndDrop;
exports.default = _default;
//# sourceMappingURL=drag-and-drop.js.map</code></pre>
Expand All @@ -171,7 +188,7 @@ <h1 class="page-title">client/components/input/drag-and-drop.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_about.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h1 class="page-title">client/components/pages/about.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_contribute.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ <h1 class="page-title">client/components/pages/contribute.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_develop.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h1 class="page-title">client/components/pages/develop.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_entities_wikipedia-extract.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ <h1 class="page-title">client/components/pages/entities/wikipedia-extract.js</h1
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_entity-revisions.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ <h1 class="page-title">client/components/pages/entity-revisions.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_error.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h1 class="page-title">client/components/pages/error.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_help.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h1 class="page-title">client/components/pages/help.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ <h1 class="page-title">client/components/pages/parts/admin-panel-search-results.
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_parts_call-to-action.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ <h1 class="page-title">client/components/pages/parts/call-to-action.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
10 changes: 9 additions & 1 deletion client_components_pages_parts_editor-achievements.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ <h1 class="page-title">client/components/pages/parts/editor-achievements.js</h1>
var _this;
(0, _classCallCheck2.default)(this, EditorAchievementTab);
_this = _super.call(this, props);
_this.currAchievement = props.currAchievement;
_this.state = {
achievement: props.achievement,
editor: props.editor
Expand Down Expand Up @@ -169,17 +170,21 @@ <h1 class="page-title">client/components/pages/parts/editor-achievements.js</h1>
locked = _this$renderAchieveme2[1];
var rankUpdate;
if (this.props.isOwner) {
var _this$currAchievement, _this$currAchievement2, _this$currAchievement3;
rankUpdate = /*#__PURE__*/_react.default.createElement(Form, {
className: "padding-bottom-1",
id: "rankSelectForm",
method: "post"
}, /*#__PURE__*/_react.default.createElement(CardDeck, {
className: "mb-3"
}, /*#__PURE__*/_react.default.createElement(_dragAndDrop.default, {
initialAchievement: (_this$currAchievement = this.currAchievement.model.fulfillmentValue[0]) === null || _this$currAchievement === void 0 ? void 0 : _this$currAchievement.achievement,
name: "rank1"
}), /*#__PURE__*/_react.default.createElement(_dragAndDrop.default, {
initialAchievement: (_this$currAchievement2 = this.currAchievement.model.fulfillmentValue[1]) === null || _this$currAchievement2 === void 0 ? void 0 : _this$currAchievement2.achievement,
name: "rank2"
}), /*#__PURE__*/_react.default.createElement(_dragAndDrop.default, {
initialAchievement: (_this$currAchievement3 = this.currAchievement.model.fulfillmentValue[2]) === null || _this$currAchievement3 === void 0 ? void 0 : _this$currAchievement3.achievement,
name: "rank3"
})), /*#__PURE__*/_react.default.createElement("span", {
className: "margin-left-1"
Expand Down Expand Up @@ -230,6 +235,9 @@ <h1 class="page-title">client/components/pages/parts/editor-achievements.js</h1>
achievement: _propTypes.default.shape({
model: _propTypes.default.array
}).isRequired,
currAchievement: _propTypes.default.shape({
model: _propTypes.default.array
}).isRequired,
editor: _propTypes.default.shape({
authenticated: _propTypes.default.bool,
id: _propTypes.default.number
Expand All @@ -250,7 +258,7 @@ <h1 class="page-title">client/components/pages/parts/editor-achievements.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_parts_search-results.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ <h1 class="page-title">client/components/pages/parts/search-results.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_privacy.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ <h1 class="page-title">client/components/pages/privacy.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_registration-auth.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h1 class="page-title">client/components/pages/registration-auth.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_revision.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ <h1 class="page-title">client/components/pages/revision.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_components_pages_statistics.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ <h1 class="page-title">client/components/pages/statistics.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_entity-editor_alias-editor_actions.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ <h1 class="page-title">client/entity-editor/alias-editor/actions.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h1 class="page-title">client/entity-editor/alias-editor/alias-editor-merge.js</
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_entity-editor_alias-editor_alias-editor.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h1 class="page-title">client/entity-editor/alias-editor/alias-editor.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_entity-editor_alias-editor_alias-row-merge.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ <h1 class="page-title">client/entity-editor/alias-editor/alias-row-merge.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_entity-editor_alias-editor_alias-row.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ <h1 class="page-title">client/entity-editor/alias-editor/alias-row.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_entity-editor_annotation-section_actions.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h1 class="page-title">client/entity-editor/annotation-section/actions.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ <h1 class="page-title">client/entity-editor/annotation-section/annotation-sectio
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
2 changes: 1 addition & 1 deletion client_entity-editor_author-credit-editor_actions.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ <h1 class="page-title">client/entity-editor/author-credit-editor/actions.js</h1>
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h1 class="page-title">client/entity-editor/author-credit-editor/author-credit-e
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ <h1 class="page-title">client/entity-editor/author-credit-editor/author-credit-r
<br class="clear">

<footer>
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Fri Jan 12 2024 18:20:33 GMT+0000 (Coordinated Universal Time) using the Minami theme.
Generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Thu Jan 18 2024 12:51:51 GMT+0000 (Coordinated Universal Time) using the Minami theme.
</footer>

<script>prettyPrint();</script>
Expand Down
Loading

0 comments on commit b7ce2ed

Please sign in to comment.