当我打开Modal时,背景滚动到顶部

时间:2017-11-14 10:35:55

标签: angularjs modal-dialog

我在我的应用中使用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();
    }
  );
};

0 个答案:

没有答案