Fix for Samsung Galaxy S Video Issue


/ Published in: JavaScript
Save to your folder(s)

Put this code in the global_view.js


Copy this code and paste it in your HTML
  1. , events: {
  2. 'click video': 'play_video'
  3. }
  4.  
  5. , play_video: function (event) {
  6. var _this = this;
  7. try {
  8. event.currentTarget.play();
  9. } catch (err) { };
  10. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.