Compare commits
3 Commits
attempts-c
...
master
Author | SHA1 | Date |
---|---|---|
Ravi Majithia | c79f97a16f | |
Oliver Tacke | d3d003e978 | |
Ravi Majithia | 22115c0aea |
|
@ -704,15 +704,15 @@ class H5PValidator {
|
||||||
'source' => '/^(http[s]?:\/\/.+)$/',
|
'source' => '/^(http[s]?:\/\/.+)$/',
|
||||||
'license' => '/^(CC BY|CC BY-SA|CC BY-ND|CC BY-NC|CC BY-NC-SA|CC BY-NC-ND|CC0 1\.0|GNU GPL|PD|ODC PDDL|CC PDM|U|C)$/',
|
'license' => '/^(CC BY|CC BY-SA|CC BY-ND|CC BY-NC|CC BY-NC-SA|CC BY-NC-ND|CC0 1\.0|GNU GPL|PD|ODC PDDL|CC PDM|U|C)$/',
|
||||||
'licenseVersion' => '/^(1\.0|2\.0|2\.5|3\.0|4\.0)$/',
|
'licenseVersion' => '/^(1\.0|2\.0|2\.5|3\.0|4\.0)$/',
|
||||||
'licenseExtras' => '/^.{1,5000}$/',
|
'licenseExtras' => '/^.{1,5000}$/s',
|
||||||
'yearsFrom' => '/^([0-9]{1,4})$/',
|
'yearsFrom' => '/^([0-9]{1,4})$/',
|
||||||
'yearsTo' => '/^([0-9]{1,4})$/',
|
'yearsTo' => '/^([0-9]{1,4})$/',
|
||||||
'changes' => array(
|
'changes' => array(
|
||||||
'date' => '/^[0-9]{2}-[0-9]{2}-[0-9]{2} [0-9]{1,2}:[0-9]{2}:[0-9]{2}$/',
|
'date' => '/^[0-9]{2}-[0-9]{2}-[0-9]{2} [0-9]{1,2}:[0-9]{2}:[0-9]{2}$/',
|
||||||
'author' => '/^.{1,255}$/',
|
'author' => '/^.{1,255}$/',
|
||||||
'log' => '/^.{1,5000}$/'
|
'log' => '/^.{1,5000}$/s'
|
||||||
),
|
),
|
||||||
'authorComments' => '/^.{1,5000}$/',
|
'authorComments' => '/^.{1,5000}$/s',
|
||||||
'w' => '/^[0-9]{1,4}$/',
|
'w' => '/^[0-9]{1,4}$/',
|
||||||
'h' => '/^[0-9]{1,4}$/',
|
'h' => '/^[0-9]{1,4}$/',
|
||||||
// deprecated
|
// deprecated
|
||||||
|
@ -3736,7 +3736,8 @@ class H5PCore {
|
||||||
'copyrightWarning' => $this->h5pF->t('Copyrighted material cannot be shared in the H5P Content Hub. If the content is licensed with a OER friendly license like Creative Commons, please choose the appropriate license. If not this content cannot be shared.'),
|
'copyrightWarning' => $this->h5pF->t('Copyrighted material cannot be shared in the H5P Content Hub. If the content is licensed with a OER friendly license like Creative Commons, please choose the appropriate license. If not this content cannot be shared.'),
|
||||||
'keywordsExits' => $this->h5pF->t('Keywords already exists!'),
|
'keywordsExits' => $this->h5pF->t('Keywords already exists!'),
|
||||||
'someKeywordsExits' => $this->h5pF->t('Some of these keywords already exist'),
|
'someKeywordsExits' => $this->h5pF->t('Some of these keywords already exist'),
|
||||||
|
'width' => $this->h5pF->t('width'),
|
||||||
|
'height' => $this->h5pF->t('height')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1348,7 +1348,7 @@ H5P.openReuseDialog = function ($element, contentData, library, instance, conten
|
||||||
*/
|
*/
|
||||||
H5P.openEmbedDialog = function ($element, embedCode, resizeCode, size, instance) {
|
H5P.openEmbedDialog = function ($element, embedCode, resizeCode, size, instance) {
|
||||||
var fullEmbedCode = embedCode + resizeCode;
|
var fullEmbedCode = embedCode + resizeCode;
|
||||||
var dialog = new H5P.Dialog('embed', H5P.t('embed'), '<textarea class="h5p-embed-code-container" autocorrect="off" autocapitalize="off" spellcheck="false"></textarea>' + H5P.t('size') + ': <input type="text" value="' + Math.ceil(size.width) + '" class="h5p-embed-size"/> × <input type="text" value="' + Math.ceil(size.height) + '" class="h5p-embed-size"/> px<br/><div role="button" tabindex="0" class="h5p-expander">' + H5P.t('showAdvanced') + '</div><div class="h5p-expander-content"><p>' + H5P.t('advancedHelp') + '</p><textarea class="h5p-embed-code-container" autocorrect="off" autocapitalize="off" spellcheck="false">' + resizeCode + '</textarea></div>', $element);
|
var dialog = new H5P.Dialog('embed', H5P.t('embed'), '<textarea class="h5p-embed-code-container" autocorrect="off" autocapitalize="off" spellcheck="false"></textarea>' + H5P.t('size') + ': <input aria-label="'+ H5P.t('width') +'" type="text" value="' + Math.ceil(size.width) + '" class="h5p-embed-size"/> × <input aria-label="'+ H5P.t('width') +'" type="text" value="' + Math.ceil(size.height) + '" class="h5p-embed-size"/> px<br/><div role="button" tabindex="0" class="h5p-expander">' + H5P.t('showAdvanced') + '</div><div class="h5p-expander-content"><p>' + H5P.t('advancedHelp') + '</p><textarea class="h5p-embed-code-container" autocorrect="off" autocapitalize="off" spellcheck="false">' + resizeCode + '</textarea></div>', $element);
|
||||||
|
|
||||||
// Selecting embed code when dialog is opened
|
// Selecting embed code when dialog is opened
|
||||||
H5P.jQuery(dialog).on('dialog-opened', function (event, $dialog) {
|
H5P.jQuery(dialog).on('dialog-opened', function (event, $dialog) {
|
||||||
|
|
|
@ -55,6 +55,8 @@ html.h5p-iframe .h5p-content {
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
text-size-adjust: none;
|
||||||
}
|
}
|
||||||
html.h5p-iframe .h5p-fullscreen .h5p-content,
|
html.h5p-iframe .h5p-fullscreen .h5p-content,
|
||||||
html.h5p-iframe .h5p-semi-fullscreen .h5p-content {
|
html.h5p-iframe .h5p-semi-fullscreen .h5p-content {
|
||||||
|
|
Loading…
Reference in New Issue