Skip to content

Commit

Permalink
fixed width=null error
Browse files Browse the repository at this point in the history
  • Loading branch information
tboetig committed Jul 12, 2011
1 parent e0987bb commit 3fda0b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jquery.embedly.js
@@ -1,5 +1,5 @@
/*
* Embedly JQuery v2.1.1
* Embedly JQuery v2.1.2
* ==============
* This library allows you to easily embed objects on any page.
*
Expand Down Expand Up @@ -104,7 +104,7 @@
_p += '&wmode='+ settings.wmode;
if (typeof settings.key == "string") _p += "&key="+settings.key;
if (typeof settings.autoplay == "string") _p += "&autoplay="+settings.autoplay;
if (typeof settings.width != null) _p += "&width="+settings.width;
if (settings.width) _p += "&width="+settings.width;
return _p;
}
var getUrl = function(){
Expand Down
2 changes: 1 addition & 1 deletion jquery.embedly.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3fda0b2

Please sign in to comment.