add loading/seeking icon

This commit is contained in:
rolux 2011-05-12 12:51:17 +02:00
commit a7d5774855
2 changed files with 34 additions and 1 deletions

View file

@ -47,6 +47,12 @@ Ox.VideoElement = function(options, self) {
that.triggerEvent('progress', {
video: self.video
});
},
seeked: function() {
that.triggerEvent('seeked');
},
seeking: function() {
that.triggerEvent('seeking');
}
});