diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-01 16:55:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-01 16:55:35 +0200 |
commit | a2f6fea4081e7920ed6cd33a96e2b80dc0c51303 (patch) | |
tree | c132f52ece820eb3368d7595feb0d61ebd415d09 /core/js/js.js | |
parent | 99f98ca34337eb4e9908d569d6009f7d24e289e1 (diff) | |
parent | 11b9d224fd5a45c726bb878737581d6285cdab1f (diff) | |
download | nextcloud-server-a2f6fea4081e7920ed6cd33a96e2b80dc0c51303.tar.gz nextcloud-server-a2f6fea4081e7920ed6cd33a96e2b80dc0c51303.zip |
Merge pull request #4610 from nextcloud/js-semicolons
Fix semicolon at end of JS lines
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/js/js.js b/core/js/js.js index 407fbc8cb8e..b6086846d59 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1422,7 +1422,7 @@ function initCore() { } else { // Close navigation when opening app in // a new tab - OC.hideMenus(function(){return false}); + OC.hideMenus(function(){return false;}); } }); @@ -1430,7 +1430,7 @@ function initCore() { if(event.which === 2) { // Close navigation when opening app in // a new tab via middle click - OC.hideMenus(function(){return false}); + OC.hideMenus(function(){return false;}); } }); @@ -1444,7 +1444,7 @@ function initCore() { } else { // Close navigation when opening app in // a new tab - OC.hideMenus(function(){return false}); + OC.hideMenus(function(){return false;}); } }); } @@ -1465,7 +1465,7 @@ function initCore() { } else { // Close navigation when opening menu entry in // a new tab - OC.hideMenus(function(){return false}); + OC.hideMenus(function(){return false;}); } }); @@ -1473,7 +1473,7 @@ function initCore() { if(event.which === 2) { // Close navigation when opening app in // a new tab via middle click - OC.hideMenus(function(){return false}); + OC.hideMenus(function(){return false;}); } }); } @@ -1884,7 +1884,7 @@ OC.Util = { * @return {boolean} true if the browser supports SVG, false otherwise */ hasSVGSupport: function(){ - return true + return true; }, /** * If SVG is not supported, replaces the given icon's extension @@ -2385,4 +2385,4 @@ jQuery.fn.tipsy = function(argument) { jQuery.fn.tooltip.call(this, argument); } return this; -} +}; |