aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-05-01 00:42:53 -0300
committerMorris Jobke <hey@morrisjobke.de>2017-05-01 00:42:53 -0300
commit11b9d224fd5a45c726bb878737581d6285cdab1f (patch)
treee108fdc1baf26fdf7c5f33641b8bc86f7995bba0 /core/js/js.js
parent4518f6dc642e75f2aee386fc39f5e748859bda5c (diff)
downloadnextcloud-server-11b9d224fd5a45c726bb878737581d6285cdab1f.tar.gz
nextcloud-server-11b9d224fd5a45c726bb878737581d6285cdab1f.zip
Fix semicolon at end of JS lines
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/js/js.js')
-rw-r--r--core/js/js.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/js/js.js b/core/js/js.js
index d601f79033e..233bf833c9d 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;
-}
+};