Prevent js error
This commit is contained in:
parent
c09852e006
commit
7272779456
|
@ -277,7 +277,9 @@ OC.Settings.Apps = OC.Settings.Apps || {
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$('#app-navigation ul li').each(function(index,li){
|
$('#app-navigation ul li').each(function(index,li){
|
||||||
var app = OC.get('appData_'+$(li).data('id'));
|
var app = OC.get('appData_'+$(li).data('id'));
|
||||||
app.groups= $(li).data('groups') || [];
|
if (app) {
|
||||||
|
app.groups= $(li).data('groups') || [];
|
||||||
|
}
|
||||||
$(li).data('app',app);
|
$(li).data('app',app);
|
||||||
$(this).find('span.hidden').remove();
|
$(this).find('span.hidden').remove();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue