(opts)
| 624 | |
| 625 | |
| 626 | function _makeFlashHTML(opts){ |
| 627 | return ('<object id="#id#" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+(opts.width || '100%')+'" height="'+(opts.height || '100%')+'">' |
| 628 | + '<param name="movie" value="#src#" />' |
| 629 | + '<param name="flashvars" value="#flashvars#" />' |
| 630 | + '<param name="swliveconnect" value="true" />' |
| 631 | + '<param name="allowscriptaccess" value="always" />' |
| 632 | + '<param name="allownetworking" value="all" />' |
| 633 | + '<param name="menu" value="false" />' |
| 634 | + '<param name="wmode" value="#wmode#" />' |
| 635 | + '<embed flashvars="#flashvars#" swliveconnect="true" allownetworking="all" allowscriptaccess="always" name="#id#" src="#src#" width="'+(opts.width || '100%')+'" height="'+(opts.height || '100%')+'" menu="false" wmode="transparent" type="application/x-shockwave-flash"></embed>' |
| 636 | + '</object>').replace(/#(\w+)#/ig, function (a, name){ return opts[name]; }) |
| 637 | ; |
| 638 | } |
| 639 | |
| 640 | |
| 641 | function _css(el, css){ |
no outgoing calls
no test coverage detected