You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2007/11/08 22:40:40 UTC

svn commit: r593345 - /incubator/xap/trunk/codebase/src/xap/widgets/dojo/PasswordField.js

Author: jmargaris
Date: Thu Nov  8 14:40:40 2007
New Revision: 593345

URL: http://svn.apache.org/viewvc?rev=593345&view=rev
Log:
changed border style to inset

Modified:
    incubator/xap/trunk/codebase/src/xap/widgets/dojo/PasswordField.js

Modified: incubator/xap/trunk/codebase/src/xap/widgets/dojo/PasswordField.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/codebase/src/xap/widgets/dojo/PasswordField.js?rev=593345&r1=593344&r2=593345&view=diff
==============================================================================
--- incubator/xap/trunk/codebase/src/xap/widgets/dojo/PasswordField.js (original)
+++ incubator/xap/trunk/codebase/src/xap/widgets/dojo/PasswordField.js Thu Nov  8 14:40:40 2007
@@ -36,7 +36,7 @@
 	xap.widgets.dojo.TextField.call(this);
 	// These will override the equivalent fields 
 	// that would otherwise be picked up in extend:
-	this.templateString ="<input style='border-style:solid' type='password' dojoAttachEvent='onkeyup;onchange;onkeydown;onmouseup;'></input>" ;
+	this.templateString ="<input style='border-style:inset;' type='password' dojoAttachEvent='onkeyup;onchange;onkeydown;onmouseup;'></input>" ;
 	this.widgetType = "PasswordField" ;
 }
 dojo.inherits(xap.widgets.dojo.PasswordField, xap.widgets.dojo.TextField);