Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/maven/fixes/8.0' into maven/rele…
Browse files Browse the repository at this point in the history
…ase/8.0
  • Loading branch information
metaventis-build committed Nov 10, 2023
2 parents b0dc500 + b46de97 commit f8dd17f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ deploy_release:
image: php:latest
stage: deploy
artifacts:
name: 'educonnector_release$(date +"%Y-%m-%d")${CI_COMMIT_SHORT_SHA}'
name: "educonnector_release-$CI_PIPELINE_CREATED_AT-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA"
paths:
- ./service/src/main/php
before_script:
Expand Down
3 changes: 3 additions & 0 deletions service/src/main/php/src/tools/h5p/js/customEdu.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.field-name-extraTitle {
display: none;
}
3 changes: 2 additions & 1 deletion service/src/main/php/src/tools/h5p/js/h5peditor-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

// Required styles and scripts for the editor
H5PEditor.assets = H5PIntegration.editor.assets;
H5PEditor.assets.css.push('/src/tools/h5p/js/customEdu.css')

// Required for assets
H5PEditor.baseUrl = '';
Expand Down Expand Up @@ -103,7 +104,7 @@
}
});

clearInterval(window.i);;
clearInterval(window.i);
};

H5PEditor.getAjaxUrl = function (action, parameters) {
Expand Down
2 changes: 1 addition & 1 deletion service/src/main/php/src/tools/tinymce/js/tool.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ $(document).ready(function() {
tinyMCE.activeEditor.save(); // to reset isDirty
save();
}
}, 300000);
}, 30000);

if(access < 1) {
destroy([language.functiondeactivatedheading, language.functiondeactivatedtext, language.closeeditor]);
Expand Down

0 comments on commit f8dd17f

Please sign in to comment.