clandher
Member since Nov 18, 2016
- Profile: /members/13362-clandher.htm
- URL: http://veganet.mx
- Comments: 4
Recent Blog Comments By clandher
-
Creating A Simple Modal System In AngularJS
Posted on Nov 21, 2016 at 2:22 AM
@Akhilesh, remove or comments this part of code in bnModals directive... //element.on( // "click", // function handleClickEvent( event ) { // if ( element[ 0 ] !== event.target ) { // return; // } // scope.$apply( modals.reject ); // } //);... read more »
-
Creating A Simple Modal System In AngularJS
Posted on Nov 21, 2016 at 2:20 AM
@Emisael, try this in any modalController... document.querySelector('body').onkeydown = function (e) { if (e.keyCode === 27) { document.querySelector('body').onkeydown = undefined; $scope.$apply(modals.reject); ... read more »
-
Creating A Simple Modal System In AngularJS
Posted on Nov 18, 2016 at 6:08 PM
i found that solution for the issue, i haven't had the v1.4.1 of animate!... read more »
-
Creating A Simple Modal System In AngularJS
Posted on Nov 18, 2016 at 5:45 PM
thanks for this... i make integration in my project with angular v1.4.1 and doesn't work, with angular v1.3.15 is good, so i will try to fix this. blessings... read more »