░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/datadrive/moodledata/filedir/19/d9
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: 19d942f18cc05a1c38e913db119ca8440ef3ddf6
var H5PPresave = H5PPresave || {}; /** * Resolve the presave logic for the content type Column * * @param {object} content * @param finished * @constructor */ H5PPresave['H5P.RowColumn'] = function (content, finished) { console.debug('H5P.RowColumn presave running'); var presave = H5PEditor.Presave; if (isContentInvalid()) { throw new presave.exceptions.InvalidContentSemanticsException('Invalid Column Error'); } var score = content.content .map(function (content) { return content.content; }) .filter(function (action) { return action.hasOwnProperty('library') && action.hasOwnProperty('params'); }) .map(function (action) { return (new presave).process(action.library, action.params).maxScore; }) .reduce(function (currentScore, scoreToAdd) { if (presave.isInt(scoreToAdd)) { currentScore += scoreToAdd; } return currentScore; }, 0); presave.validateScore(score); finished({maxScore: score}); /** * Check if required parameters is present * @return {boolean} */ function isContentInvalid() { return !presave.checkNestedRequirements(content, 'content.content') || !Array.isArray(content.content); } };
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 19d942f18cc05a1c38e913db119ca8440ef3ddf6
?
1.2 KB
2026-04-01 13:33
EDIT