1
0
Fork 0
forked from 0x2620/oxjs

selectbefore/selectafter -> selectprevious/selectnext

This commit is contained in:
rlx 2013-05-08 16:53:33 +00:00
commit 74e6c12904
4 changed files with 19 additions and 19 deletions

View file

@ -340,10 +340,10 @@ Ox.AnnotationPanel = function(options, self) {
select: function(data) {
selectAnnotation(data, index);
},
selectafter: function() {
selectnext: function() {
selectNext(layer.id, 1);
},
selectbefore: function() {
selectprevious: function() {
selectNext(layer.id, -1);
},
selectnone: selectNone,