some whitespace/warning cleanup

This commit is contained in:
Obexer Christoph
2012-03-05 07:56:45 +01:00
parent 0674543ab1
commit cfde57cb9f
2 changed files with 9 additions and 10 deletions

View File

@ -205,13 +205,12 @@ _html2canvas.Util.BackgroundPosition = function ( el, bounds, image ) {
};
_html2canvas.Util.Extend = function (options, defaults) {
var key;
for (key in options) {
for (var key in options) {
if (options.hasOwnProperty(key)) {
defaults[key] = options[key];
}
}
return defaults;
return defaults;
};
_html2canvas.Util.Children = function(el) {