misc fixes
This commit is contained in:
parent
f71af0a205
commit
3f05b547d8
1 changed files with 23 additions and 9 deletions
|
@ -1483,20 +1483,17 @@ requires
|
||||||
if (self.leftOrTop) {
|
if (self.leftOrTop) {
|
||||||
self.options.elements[0]
|
self.options.elements[0]
|
||||||
.css(self.dimensions[1], self.options.size + 'px')
|
.css(self.dimensions[1], self.options.size + 'px')
|
||||||
.triggerEvent('resize', self.options.size);
|
|
||||||
self.options.elements[1]
|
self.options.elements[1]
|
||||||
.css(self.edges[2], (self.options.size + 1) + 'px')
|
.css(self.edges[2], (self.options.size + 1) + 'px')
|
||||||
.triggerEvent('resize', self.options.elements[1][self.dimensions[1]]());
|
|
||||||
self.options.parent.updateSize(0, self.options.size);
|
|
||||||
} else {
|
} else {
|
||||||
self.options.elements[0]
|
self.options.elements[0]
|
||||||
.css(self.edges[3], (self.options.size + 1) + 'px')
|
.css(self.edges[3], (self.options.size + 1) + 'px')
|
||||||
.triggerEvent('resize', self.options.elements[0][self.dimensions[1]]());
|
|
||||||
self.options.elements[1]
|
self.options.elements[1]
|
||||||
.css(self.dimensions[1], self.options.size + 'px')
|
.css(self.dimensions[1], self.options.size + 'px')
|
||||||
.triggerEvent('resize', self.options.size);
|
|
||||||
self.options.parent.updateSize(1, self.options.size); // fixme: listen to event instead?
|
|
||||||
}
|
}
|
||||||
|
triggerEvents('resize');
|
||||||
|
self.options.parent.updateSize(self.leftOrTop ? 0 : 1, self.options.size); // fixme: listen to event instead?
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1511,6 +1508,7 @@ requires
|
||||||
}
|
}
|
||||||
|
|
||||||
function dragStop() {
|
function dragStop() {
|
||||||
|
self.options.size != self.startSize && triggerEvents('resizeend');
|
||||||
$window.unbind('mousemove');
|
$window.unbind('mousemove');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1540,6 +1538,19 @@ requires
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function triggerEvents(event) {
|
||||||
|
self.options.elements[0].triggerEvent(event,
|
||||||
|
self.leftOrTop ?
|
||||||
|
self.options.size :
|
||||||
|
self.options.elements[0][self.dimensions[1]]()
|
||||||
|
);
|
||||||
|
self.options.elements[1].triggerEvent(event,
|
||||||
|
self.leftOrTop ?
|
||||||
|
self.options.elements[1][self.dimensions[1]]() :
|
||||||
|
self.options.size
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return that;
|
return that;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -2734,6 +2745,8 @@ requires
|
||||||
|
|
||||||
function autocomplete(oldValue, oldCursor) {
|
function autocomplete(oldValue, oldCursor) {
|
||||||
|
|
||||||
|
Ox.print('autocomplete', oldValue, oldCursor)
|
||||||
|
|
||||||
if (self.options.value || self.options.autocompleteReplaceCorrect) {
|
if (self.options.value || self.options.autocompleteReplaceCorrect) {
|
||||||
Ox.isFunction(self.options.autocomplete) ?
|
Ox.isFunction(self.options.autocomplete) ?
|
||||||
(self.options.key ? self.options.autocomplete(
|
(self.options.key ? self.options.autocomplete(
|
||||||
|
@ -6692,7 +6705,6 @@ requires
|
||||||
$emptyPage.remove();
|
$emptyPage.remove();
|
||||||
self.$pages[page].appendTo(that.$content);
|
self.$pages[page].appendTo(that.$content);
|
||||||
!Ox.isUndefined(callback) && callback(); // fixme: callback necessary? why not bind to event?
|
!Ox.isUndefined(callback) && callback(); // fixme: callback necessary? why not bind to event?
|
||||||
that.triggerEvent('load');
|
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
//Ox.print('loading a page from cache, this should probably not happen -----------')
|
//Ox.print('loading a page from cache, this should probably not happen -----------')
|
||||||
|
@ -6705,7 +6717,10 @@ requires
|
||||||
var counter = 0,
|
var counter = 0,
|
||||||
fn = function() {
|
fn = function() {
|
||||||
//Ox.print('---- self.$pages', self.$pages)
|
//Ox.print('---- self.$pages', self.$pages)
|
||||||
++counter == 3 && !Ox.isUndefined(callback) && callback();
|
if (++counter == 3) {
|
||||||
|
!Ox.isUndefined(callback) && callback();
|
||||||
|
that.triggerEvent('load');
|
||||||
|
}
|
||||||
};
|
};
|
||||||
// fixme: find out which option is better
|
// fixme: find out which option is better
|
||||||
/*
|
/*
|
||||||
|
@ -7795,7 +7810,6 @@ requires
|
||||||
}
|
}
|
||||||
|
|
||||||
function resizeColumn(id, width) {
|
function resizeColumn(id, width) {
|
||||||
Ox.print('resizeColumn', id, width)
|
|
||||||
var i = getColumnIndexById(id),
|
var i = getColumnIndexById(id),
|
||||||
pos = getColumnPositionById(id);
|
pos = getColumnPositionById(id);
|
||||||
self.options.columns[i].width = width;
|
self.options.columns[i].width = width;
|
||||||
|
|
Loading…
Reference in a new issue