@@ -191,7 +191,7 @@ $.widget( "ui.editable", {
191
191
} ) ;
192
192
193
193
$ . ui . editable . saveButtons = {
194
- button : function ( editable ) {
194
+ button : function ( editable ) {
195
195
return $ ( "<button></button>" )
196
196
. html ( editable . options . save . text )
197
197
. button ( {
@@ -201,7 +201,7 @@ $.ui.editable.saveButtons = {
201
201
text : false
202
202
} ) ;
203
203
} ,
204
- submit : function ( editable ) {
204
+ submit : function ( editable ) {
205
205
return $ ( "<input/>" )
206
206
. attr ( "type" , "submit" )
207
207
. val ( editable . options . save . text )
@@ -210,7 +210,7 @@ $.ui.editable.saveButtons = {
210
210
} ;
211
211
212
212
$ . ui . editable . cancelButtons = {
213
- button : function ( editable ) {
213
+ button : function ( editable ) {
214
214
return $ ( "<button></button>" )
215
215
. html ( editable . options . cancel . text )
216
216
. button ( {
@@ -220,7 +220,7 @@ $.ui.editable.cancelButtons = {
220
220
text : false
221
221
} ) ;
222
222
} ,
223
- link : function ( editable ) {
223
+ link : function ( editable ) {
224
224
return $ ( "<a></a>" )
225
225
. attr ( "href" , "#" )
226
226
. attr ( "title" , editable . options . cancel . text )
@@ -232,7 +232,7 @@ $.ui.editable.cancelButtons = {
232
232
233
233
$ . ui . editable . editors = {
234
234
text : {
235
- element :function ( editable ) {
235
+ element :function ( editable ) {
236
236
return $ ( "<input/>" )
237
237
. attr ( "type" , "text" )
238
238
. val ( editable . value ( ) )
@@ -241,10 +241,10 @@ $.ui.editable.editors = {
241
241
bind : function ( editable ) {
242
242
var self = editable ;
243
243
$ ( "input" , editable . element )
244
- . focus ( function ( ) {
244
+ . focus ( function ( ) {
245
245
self . frame . addClass ( activeStateClass ) ;
246
246
} )
247
- . blur ( function ( ) {
247
+ . blur ( function ( ) {
248
248
self . frame . removeClass ( activeStateClass ) ;
249
249
} )
250
250
. bind ( "keydown" , function ( event ) {
0 commit comments