我在我的应用中使用uibmodal。问题是,当我打开它时,我的身体滚动到顶部。这样做的缺点是如果取消或确认模态,则用户返回应用程序的顶部。如何让身体保持在同一个位置?
ctrl.openModal = function(ord, line) {
var modal = $uibModal.open({
animation: true,
backdrop: "static",
keyboard: false,
resolve: {
orderline: function() {
return line;
},
order: function() {
return ord;
}
},
template: $templateCache.get("tpl/temp.html")[1],
controller: "ControllerModal"
});
modal.result.then(
function() {
if (line.free3 != 0) {
console.log("");
} else {
var payload = {
};
}
},
function() {
//finish();
}
);
};