Added jQuery AMD shim to support jQuery < 1.7

This commit is contained in:
Ghislain Seguin 2011-11-23 10:34:04 -08:00
parent c1672dc654
commit 34ce8a8feb

3
js/jquery.amd.shim.js Normal file
View file

@ -0,0 +1,3 @@
if ( typeof define === "function" && define.amd && !define.amd.jQuery ) {
define( "jquery", [], function () { return jQuery; } );
}