123456789101112131415161718192021222324 |
- /**
- * $.os.plus
- * @param {type} $
- * @returns {undefined}
- */
- (function($, document) {
- function detect(ua) {
- this.os = this.os || {};
- var plus = ua.match(/Html5Plus/i); //TODO 5\+Browser?
- if (plus) {
- this.os.plus = true;
- $(function() {
- document.body.classList.add($.className('plus'));
- });
- if (ua.match(/StreamApp/i)) { //TODO 最好有流应用自己的标识
- this.os.stream = true;
- $(function() {
- document.body.classList.add($.className('plus-stream'));
- });
- }
- }
- }
- detect.call($, navigator.userAgent);
- })(mui, document);
|