Closed mzedeler closed 11 years ago
This task can make the player quite unstable, therefore we decided to remove the issue from Milestone Sprint 1. The task would be great for a clean up...
I've removed user agent sniffing from some surprising locations, so we need to test the following as part of testing this issue:
The fix didn't remove any code from the player that had any effect.
There is a lot of testing and possible bug fixing to do.
This is fixed...
Ready to be cloced @LDHgithub ?
yup...
In player.coffee, we have
@isIOS()
living alongside manual tests for the same thing (seeloadstart
). The general principle is that we shouldn't ever look at user agents identifiers because they are unreliable wrt. to detecting which features that work.This task consists of removing all references to
@isIOS()
(or other user agent sniffing tests, such as$.jPlayer.platform.*
) and the code that executes when@isIOS()
returns true. Places where user agent sniffing is required for the player to work, should be left as is.