Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>2015-06-16 20:02:05 +0300
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2015-06-16 21:53:51 +0300
commit0606fc58a5b1d4476258f6005ba05824478e9299 (patch)
treed4ed13bfe4931a4bb27ccefce498ecab6ca0c40a /js/personal.js
parenta5ae82e870a78dea4fb8f92e59b2a4119a4ef29d (diff)
Fix coding style complaints
Diffstat (limited to 'js/personal.js')
-rw-r--r--js/personal.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/personal.js b/js/personal.js
index ed92c097..3ff0a69b 100644
--- a/js/personal.js
+++ b/js/personal.js
@@ -14,8 +14,8 @@ $(document).ready(function(){
$('#documents-default-path').blur(documentsSettings.save);
$('#documents-default-path').keypress(function( event ) {
if (event.which == 13) {
- event.preventDefault();
- documentsSettings.save();
+ event.preventDefault();
+ documentsSettings.save();
}
});
});