Sha256: 1a902b2b9ff6dc315b489b9410a2611e4042445e45116cad7349a0c23dd188f6
Contents?: true
Size: 681 Bytes
Versions: 1
Compression:
Stored size: 681 Bytes
Contents
define("dojox/mobile/Video", [ "dojo/_base/declare", "dojo/_base/sniff", "./Audio" ], function(declare, has, Audio){ // module: // dojox/mobile/Video return declare("dojox.mobile.Video", Audio, { // summary: // A thin wrapper around the HTML5 `<video>` element. // width: String // The width of the embed element. width: "200px", // height: String // The height of the embed element. height: "150px", _tag: "video", _getEmbedRegExp: function(){ return has('ff') ? /video\/mp4/i : has.isIE >= 9 ? /video\/webm/i : //has("safari") ? /video\/webm/i : //Google is gooing to provide webm plugin for safari null; } }); });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dojox-rails-0.11.0 | vendor/assets/javascripts/mobile/Video.js.uncompressed.js |