make AnnotatoinFolder slightly async #2125

This commit is contained in:
j 2014-02-01 15:09:05 +05:30
parent e3d8b5d3b0
commit 0df1056d3f

View file

@ -268,9 +268,6 @@ Ox.AnnotationFolder = function(options, self) {
: null,
globalAttributes: ['lang'],
highlight: self.options.highlight,
items: self.annotations,
placeholder: getPlaceholder(),
selected: self.options.selected,
separator: ';',
sort: self.sort,
submitOnBlur: false,
@ -303,6 +300,7 @@ Ox.AnnotationFolder = function(options, self) {
insert: function(data) {
that.triggerEvent('insert', data);
},
placeholder: Ox._('Loading...'),
open: function() {
that.triggerEvent('open');
},
@ -323,6 +321,13 @@ Ox.AnnotationFolder = function(options, self) {
? self.$outer : that.$content
);
setTimeout(function() {
self.$annotations.options({
items: self.annotations,
placeholder: getPlaceholder(),
selected: self.options.selected
});
});
[
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'b', 'backslash', 'closebracket', 'comma', 'dot',