mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Fix scroller overflows apparitions
This commit is contained in:
parent
fcb5563e29
commit
1b023a58c7
@ -12,17 +12,16 @@
|
|||||||
$.subscribe(Events.FRAMESHEET_RESET, this.flagForRedraw_.bind(this));
|
$.subscribe(Events.FRAMESHEET_RESET, this.flagForRedraw_.bind(this));
|
||||||
$.subscribe(Events.FRAMESHEET_RESET, this.refreshDPI_.bind(this));
|
$.subscribe(Events.FRAMESHEET_RESET, this.refreshDPI_.bind(this));
|
||||||
|
|
||||||
$('#preview-list-scroller').scroll(this.onScroll_.bind(this))
|
$('#preview-list-scroller').scroll(this.updateScrollerOverflows.bind(this));
|
||||||
|
this.updateScrollerOverflows();
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.PreviewFilmController.prototype.init = function() {
|
ns.PreviewFilmController.prototype.init = function() {};
|
||||||
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
ns.PreviewFilmController.prototype.addFrame = function () {
|
ns.PreviewFilmController.prototype.addFrame = function () {
|
||||||
this.framesheet.addEmptyFrame();
|
this.framesheet.addEmptyFrame();
|
||||||
this.framesheet.setCurrentFrameIndex(this.framesheet.getFrameCount() - 1);
|
this.framesheet.setCurrentFrameIndex(this.framesheet.getFrameCount() - 1);
|
||||||
|
this.updateScrollerOverflows();
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.PreviewFilmController.prototype.flagForRedraw_ = function () {
|
ns.PreviewFilmController.prototype.flagForRedraw_ = function () {
|
||||||
@ -41,12 +40,12 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.PreviewFilmController.prototype.onScroll_ = function (evt) {
|
ns.PreviewFilmController.prototype.updateScrollerOverflows = function () {
|
||||||
var scroller = $('#preview-list-scroller');
|
var scroller = $('#preview-list-scroller');
|
||||||
var scrollerHeight = scroller.height();
|
var scrollerHeight = scroller.height();
|
||||||
var scrollTop = scroller.scrollTop();
|
var scrollTop = scroller.scrollTop();
|
||||||
var scrollerContentHeight = $('#preview-list').height();
|
var scrollerContentHeight = $('#preview-list').height();
|
||||||
var treshold = 30;
|
var treshold = $('.top-overflow').height();
|
||||||
var overflowTop = false,
|
var overflowTop = false,
|
||||||
overflowBottom = false;
|
overflowBottom = false;
|
||||||
if (scrollerHeight < scrollerContentHeight) {
|
if (scrollerHeight < scrollerContentHeight) {
|
||||||
@ -87,6 +86,7 @@
|
|||||||
if(needDragndropBehavior) {
|
if(needDragndropBehavior) {
|
||||||
this.initDragndropBehavior_();
|
this.initDragndropBehavior_();
|
||||||
}
|
}
|
||||||
|
this.updateScrollerOverflows();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -192,12 +192,14 @@
|
|||||||
ns.PreviewFilmController.prototype.onDeleteButtonClick_ = function (index, evt) {
|
ns.PreviewFilmController.prototype.onDeleteButtonClick_ = function (index, evt) {
|
||||||
this.framesheet.removeFrameByIndex(index);
|
this.framesheet.removeFrameByIndex(index);
|
||||||
$.publish(Events.LOCALSTORAGE_REQUEST); // Should come from model
|
$.publish(Events.LOCALSTORAGE_REQUEST); // Should come from model
|
||||||
|
this.updateScrollerOverflows();
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.PreviewFilmController.prototype.onAddButtonClick_ = function (index, evt) {
|
ns.PreviewFilmController.prototype.onAddButtonClick_ = function (index, evt) {
|
||||||
this.framesheet.duplicateFrameByIndex(index);
|
this.framesheet.duplicateFrameByIndex(index);
|
||||||
$.publish(Events.LOCALSTORAGE_REQUEST); // Should come from model
|
$.publish(Events.LOCALSTORAGE_REQUEST); // Should come from model
|
||||||
this.framesheet.setCurrentFrameIndex(index + 1);
|
this.framesheet.setCurrentFrameIndex(index + 1);
|
||||||
|
this.updateScrollerOverflows();
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user