This file contains 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> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script src="dist/jquery.tubeplayer.min.js"></script> | |
</head> | |
<body> | |
<div id="youtube-player"></div> | |
<script type="text/javascript"> |
This file contains 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
/** | |
* CSS Inline Transform v0.1 | |
* http://tikku.com/css-inline-transformer-simplified | |
* | |
* Copyright 2010-2012, Nirvana Tikku | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt | |
* | |
* This tool leverages the jQuery library. | |
* |
This file contains 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
// For those using Backbone within an Angular application | |
Backbone.ajax = function(arg){ | |
var success = arg.success; | |
var error = arg.error; | |
arg.method = arg.type; | |
return $http(arg) | |
.success(success) | |
.error(error); | |
}; |