fixed whitespace (8 space instead tab)

This commit is contained in:
Ralf Becker 2013-04-12 09:38:12 +00:00
parent 280420f2cc
commit 4a26ad18c0

View File

@ -222,20 +222,20 @@ var et2_textbox_ro = et2_valueWidget.extend([et2_IDetachedDOM], {
this.span.text(_value); this.span.text(_value);
}, },
/** /**
* Code for implementing et2_IDetachedDOM * Code for implementing et2_IDetachedDOM
*/ */
getDetachedAttributes: function(_attrs) getDetachedAttributes: function(_attrs)
{ {
_attrs.push("value"); _attrs.push("value");
}, },
getDetachedNodes: function() getDetachedNodes: function()
{ {
return [this.span[0]]; return [this.span[0]];
}, },
setDetachedAttributes: function(_nodes, _values) setDetachedAttributes: function(_nodes, _values)
{ {
this.span = jQuery(_nodes[0]); this.span = jQuery(_nodes[0]);
if(typeof _values["value"] != 'undefined') if(typeof _values["value"] != 'undefined')
{ {