Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

286
Views
Trying to implement angularJs $uibModal but is it not popping up. Giving an error angular.min.js:129 Possibly unhandled rejection: backdrop click

Trying to implement angularJs $uibModal but is it not popping up. Giving an error angular.min.js:129 Possibly unhandled rejection: backdrop click

(function(){ angular .module('ubwinoApp') .controller('scheduleCtrl', scheduleCtrl);

   scheduleCtrl.$inject = ['$location','$uibModal','authentication'];

   function scheduleCtrl($location, $uibModal, authentication){
    
    var vm = this;
    vm.currentPath = $location.path();
    vm.isLoggedIn = authentication.isLoggedIn();
    vm.currentUser = authentication.currentUser();

    vm.popupEventForm = function(){
        var modalInstance = $uibModal.open({
              templateUrl: '/eventModal/eventModal.view.html',
              controller: 'eventModalCtrl as vm',
              backdrop: false,
            });
      // alert("Lets add an event"); 
    }
   
   }

})()

(function () {

angular
.module('ubwinoApp')
.controller('eventModalCtrl', eventModalCtrl);

  eventModalCtrl.$inject = ['$uibModalInstance'];
  function eventModalCtrl($uibModalInstance){
      var vm = this;
      vm.modal = {
        close : function(result){
          $uibModalInstance.close(result);
        },
        cancel : function () {
            $uibModalInstance.dismiss('cancel');
        }
    };
}

})();

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!