Skip to content

Commit

Permalink
* Moar whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
cpojer committed May 30, 2010
1 parent f6baa75 commit d3f1213
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Source/Element/Element.js
Expand Up @@ -76,7 +76,12 @@ Element.Constructors = new Hash;
//</1.2compat>

var IFrame = new Type('IFrame', function(){
var params = Array.link(arguments, {properties: Type.isObject, iframe: function(obj){ return (obj != null); }});
var params = Array.link(arguments, {
properties: Type.isObject,
iframe: function(obj){
return (obj != null);
}
});
var props = params.properties || {};
var iframe = document.id(params.iframe);
var onload = props.onload || function(){};
Expand Down

0 comments on commit d3f1213

Please sign in to comment.