1
0
Fork 0
forked from 0x2620/oxjs

Ox.break -> Ox.Break

This commit is contained in:
rolux 2012-05-24 19:20:29 +02:00
commit 544e117cb3
41 changed files with 100 additions and 100 deletions

View file

@ -186,10 +186,10 @@ Ox.AnnotationPanel = function(options, self) {
if (item.id == annotationId) {
annotation = item;
found = true;
Ox.break();
Ox.Break()();
}
});
found && Ox.break();
found && Ox.Break()();
});
return annotation;
}
@ -201,10 +201,10 @@ Ox.AnnotationPanel = function(options, self) {
if (item.id == annotationId) {
folder = self.$folder[i];
found = true;
Ox.break();
Ox.Break()();
}
});
found && Ox.break();
found && Ox.Break()();
});
return folder;
}
@ -426,7 +426,7 @@ Ox.AnnotationPanel = function(options, self) {
self.deselecting = true;
$folder.options({selected: ''});
self.deselecting = false;
Ox.break();
Ox.Break()();
}
});
scrollToSelected(self.options.layers[index].type);