This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>JW Player</title> | |
| </head> | |
| <body> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
| <script type='text/javascript' src='./jwplayer.js'></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>JW Player Example - With Dynamic Video Changes</title> | |
| <!-- Stylesheet for the Punndit Bar --> | |
| <link rel="stylesheet" href="http://cdn.punndit.com/stylesheets/bar.css" type="text/css" media="screen" charset="utf-8" id="pndt-bar-css" /> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script> | |
| <script type='text/javascript' src='./jwplayer.js'></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Flag indicating that the punndit bar has | |
| // already been loaded and initialized at least once. | |
| var punnditLoaded = false; | |
| // The WGNCustomAdHandler is going to be fired when the | |
| // media in the WN player changes. The specific event we | |
| // are interested in is the NewMedia event. It is fired | |
| // whenever a pre-roll, clip and post-roll video is started. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find ./ -type f | grep .DS_Store | xargs rm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define STATIC_CONSTRUCTOR(className, methodPostfix, methodArgs, initArgs, constructorArgs) \ | |
| static className* create ## methodPostfix methodArgs \ | |
| { \ | |
| className *instance = new className constructorArgs; \ | |
| if (instance && instance->init ## methodPostfix initArgs) \ | |
| { \ | |
| instance->autorelease(); \ | |
| } \ | |
| else \ | |
| { \ |
OlderNewer