|
|
|
@ -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; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|