Demo for custom playlist of mediaelementJS. If you're looking for a plugin, you can also try this http://jeremejazz.github.io/mep-feature-playlist/
A Pen by Jereme Causing on CodePen.
| <!-- Open Graph tags for your home page (index). --> | |
| <meta property="og:site_name" content="{Title}" /> | |
| <meta property="fb:app_id" content="FACEBOOK_APPID"/> | |
| <meta property="fb:admins" content="FACEBOOK_USERID" /> | |
| <meta property="og:description" content="{MetaDescription}" /> | |
| <meta property="og:locale" content="en_US" /> | |
| {block:IndexPage} | |
| <meta property="og:image" content="{PortraitURL-128}" /> | |
| <meta property="og:title" content="{Title}" /> |
| function polygonCenter(poly) { | |
| var lowx, | |
| highx, | |
| lowy, | |
| highy, | |
| lats = [], | |
| lngs = [], | |
| vertices = poly.getPath(); | |
| for(var i=0; i<vertices.length; i++) { |
| <?php | |
| class proCrypt | |
| { | |
| /** | |
| * | |
| * This is called when we wish to set a variable | |
| * | |
| * @access public | |
| * @param string $name | |
| * @param string $value |
| <?php | |
| a = 10; | |
| b = 20; | |
| a = a + b; // a = 30 | |
| b = a - b; // b = 10 | |
| a = a - b; // a = 20 |
| <link rel="import" href="../topeka-elements/category-icons.html"> | |
| <link rel="import" href="../core-icon/core-icon.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; |
| RewriteEngine on | |
| RewriteCond $1 !^(index\.php|images|assets|robots\.txt) | |
| RewriteRule ^(.*)$ index.php/$1 [L] |
Demo for custom playlist of mediaelementJS. If you're looking for a plugin, you can also try this http://jeremejazz.github.io/mep-feature-playlist/
A Pen by Jereme Causing on CodePen.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| /** | |
| * Simple localStorage with Cookie Fallback | |
| * v.1.0.0 | |
| * | |
| * USAGE: | |
| * ---------------------------------------- | |
| * Set New / Modify: | |
| * store('my_key', 'some_value'); | |
| * | |
| * Retrieve: |
| <?php | |
| $files = glob( __DIR__ . '/folder/*.php'); | |
| foreach ($files as $file) { | |
| require($file); | |
| } |