Michael Bromley

Results 750 comments of Michael Bromley

What is the expected result? What is the actual result? Include your code. Without the above information, I cannot help. Your English is fine, by the way :)

Okay. Have you read this page: https://docs.angularjs.org/api/ng/filter/filter? These docs provide a way to filter by multiple keys. See the example at the bottom of the page. I'm not yet sure...

Hi, Sounds weird. `reset()` is only called in a single place: ``` JavaScript if (!$window.DISQUS) { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' +...

Hi, The way the directive itself works involved dynamically calling $compile() after doing some manipulation - adding an ngRepeat directive etc. I can imagine there is some conflict arising perhaps...

Ok, thanks. Off the top of my head I can't say what the side effects may be. I suspect that there is a specific reason why I wrote it that...

Hi, Finally got round to looking at this again. Making your suggested change and running through the tests, I get a failure [of this test](https://github.com/michaelbromley/angularUtils/blob/31e6b6e506a1f5f71860c06b737a514101ad21c0/src/directives/pagination/dirPagination.spec.js#L1108) ``` dirPagination directive dynamic pagination...

Need to see more code - controller? Also, what is the value of `$scope.limit` and how many items in `users.data`?

Try to reproduce it here and show me: http://plnkr.co/edit/b37IdFFJUokaeSummETX?p=preview

Hi, thanks for the PR. Could your use case not be satisfied by using the `current-page` attribute and setting it to, say, 4 when the controller is initially loaded?

Hi guys, Sorry about the long delay. I still don't understand why you needed to get so hacky with the paginationService stuff. What about this: http://plnkr.co/edit/Cycne8sw1lRlMqpc0rRS?p=preview Here I am simple...