Manuel Darveau

Results 8 comments of Manuel Darveau

The problem is that, as the doc says: `result (Type: promise) - Is resolved when a modal is closed and rejected when a modal is dismissed.` I think dialog dismiss...

The way I handle it is: ``` $uibModal.open({ ... }).result.catch(function(res) { if (!(res === 'cancel' || res === 'escape key press')) { throw res; } }); ``` This basically swallow...

You have to render the calendar when the tab is selected. In Jade/coffeescript: `tab(heading="#{__('Schedule')}", select="renderCalendar()")` ``` $scope.renderCalendar = () -> # FIXME Not sure why setTimeout is required... setTimeout ()->...

See https://github.com/kamilkp/angular-vs-repeat/issues/144

See https://github.com/kamilkp/angular-vs-repeat/issues/144

I created this directive (coffeescript): ``` angular.module( 'maligue.common' ).directive "vsRepeatScrollTo", [ '$parse', ( $parse ) -> { restrict: 'A' link: ( scope, elem, attrs ) -> getOffset = $parse( attrs.vsRepeatScrollTo...

Hi Marcos, I am using openfire 3.9.1 with hubot without any problem. What exactly do you expect to see in the console? AFAIK, the output you send is normal and...