mirror of
https://github.com/videojs/video.js.git
synced 2025-03-05 15:16:06 +02:00
Revert "Close GH-630: prevent default action for simple html5 media events. fixes #573, fixes #620 (duplicate bug)."
This reverts commit 15544c3d05988cda490ab491d9d68045f1468624.
This commit is contained in:
parent
15544c3d05
commit
9030a5655e
@ -277,9 +277,8 @@ vjs.trigger = function(elem, event) {
|
||||
elemData.dispatcher.call(elem, event);
|
||||
}
|
||||
|
||||
// Unless explicitly stopped or the event does not bubble (e.g. media events)
|
||||
// recursively calls this function to bubble the event up the DOM.
|
||||
if (parent && !event.isPropagationStopped() && event.bubbles !== false) {
|
||||
// Unless explicitly stopped, recursively calls this function to bubble the event up the DOM.
|
||||
if (parent && !event.isPropagationStopped()) {
|
||||
vjs.trigger(parent, event);
|
||||
|
||||
// If at the top of the DOM, triggers the default action unless disabled.
|
||||
|
@ -89,28 +89,3 @@ test('should stop immediate propagtion', function(){
|
||||
|
||||
vjs.trigger(el, 'test');
|
||||
});
|
||||
|
||||
test('should bubble up DOM unless bubbles == false', function(){
|
||||
expect(3);
|
||||
|
||||
var outer = document.createElement('div');
|
||||
var inner = outer.appendChild(document.createElement('div'));
|
||||
|
||||
// Verify that if bubbles === true, event bubbles up dom.
|
||||
vjs.on(inner, 'bubbles', function(e){
|
||||
ok(true, 'Inner listener fired');
|
||||
});
|
||||
vjs.on(outer, 'bubbles', function(e){
|
||||
ok(true, 'Outer listener fired');
|
||||
});
|
||||
vjs.trigger(inner, { type:'bubbles', target:inner, bubbles:true });
|
||||
|
||||
// Only change 'bubbles' to false, and verify only inner handler is called.
|
||||
vjs.on(inner, 'nobub', function(e){
|
||||
ok(true, 'Inner listener fired');
|
||||
});
|
||||
vjs.on(outer, 'nobub', function(e){
|
||||
ok(false, 'Outer listener fired');
|
||||
});
|
||||
vjs.trigger(inner, { type:'nobub', target:inner, bubbles:false });
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user