Skip to content

Commit 6ed17f4

Browse files
darwintuupola
authored andcommitted
converted tabs to spaces
Signed-off-by: Mika Tuupola <tuupola@appelsiini.net>
1 parent ec67574 commit 6ed17f4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

jquery.jeditable.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@
9999
/* add custom event if it does not exist */
100100
if (!$.isFunction($(this)[settings.event])) {
101101
$.fn[settings.event] = function(fn){
102-
return fn ? this.bind(settings.event, fn) : this.trigger(settings.event);
103-
}
102+
return fn ? this.bind(settings.event, fn) : this.trigger(settings.event);
103+
}
104104
}
105105

106106
/* show tooltip */
@@ -209,8 +209,8 @@
209209
data : loaddata,
210210
async : false,
211211
success: function(result) {
212-
window.clearTimeout(t);
213-
input_content = result;
212+
window.clearTimeout(t);
213+
input_content = result;
214214
input.disabled = false;
215215
}
216216
});
@@ -457,7 +457,7 @@
457457
return(select);
458458
},
459459
content : function(string, settings, original) {
460-
if (String == string.constructor) {
460+
if (String == string.constructor) {
461461
eval ('var json = ' + string);
462462
for (var key in json) {
463463
if (!json.hasOwnProperty(key)) {
@@ -467,7 +467,7 @@
467467
continue;
468468
}
469469
var option = $('<option />').val(key).append(json[key]);
470-
$('select', this).append(option);
470+
$('select', this).append(option);
471471
}
472472
}
473473
/* Loop option again to set selected. IE needed this... */

0 commit comments

Comments
 (0)