parent
9a7a343844
commit
8d30949969
18
js/h5p.js
18
js/h5p.js
|
@ -144,7 +144,8 @@ H5P.init = function (target) {
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'</div>')
|
'</div>')
|
||||||
.prependTo($container)
|
.prependTo($container)
|
||||||
.children().click(function () {
|
.children()
|
||||||
|
.click(function () {
|
||||||
H5P.fullScreen($container, instance);
|
H5P.fullScreen($container, instance);
|
||||||
})
|
})
|
||||||
.keydown(function (e) {
|
.keydown(function (e) {
|
||||||
|
@ -931,15 +932,20 @@ H5P.Dialog = function (name, title, content, $element) {
|
||||||
.click(function () {
|
.click(function () {
|
||||||
self.close();
|
self.close();
|
||||||
})
|
})
|
||||||
.children('.h5p-inner').click(function () {
|
.children('.h5p-inner')
|
||||||
|
.click(function () {
|
||||||
return false;
|
return false;
|
||||||
})
|
})
|
||||||
.find('.h5p-close').click(function () {
|
.find('.h5p-close')
|
||||||
|
.click(function () {
|
||||||
self.close();
|
self.close();
|
||||||
}).end()
|
})
|
||||||
.find('a').click(function (e) {
|
.end()
|
||||||
|
.find('a')
|
||||||
|
.click(function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
}).end()
|
})
|
||||||
|
.end()
|
||||||
.end();
|
.end();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue