Ben Orozco

Results 35 issues of Ben Orozco

[Avoid conditionals](https://github.com/ryanmcdermott/clean-code-javascript#avoid-conditionals): Favor Composition instead of Classes It's preferred for newcomers to learn about composition first, and Classes as a syntax sugar on top of Prototypal inheritance later. As explained...

I would like to have access to the directive's `itemsPerPage` property in order bind it in my custom pagination template: ``` records per page ```

enhancement

When working with Asynchronous Data, a change in `pageSize` should re-trigger an async call as well (and possibly do some recalculation): ``` $scope.pageChanged = function(newPage, newPageSize) { getResultsPage(newPage, newPageSize); };...

enhancement

And more importantly, would someone with significant contributions ([network graph](https://github.com/nickperkinslondon/angular-bootstrap-nav-tree/network)) be willing to adopt it? @nickperkinslondon

What is the right way to use this directive along with [UI-Router](https://github.com/angular-ui/ui-router) (part of [Angular-UI](http://angular-ui.github.io/ui-router/))? More specifically, how to make the tree to use **ui-sref**, and change according to the...

I have the following models: ```javascript // app/models/user.js import Model from 'ember-data/model'; import { fragment } from 'model-fragments/attributes'; export default Model.extend({ family : fragment('family') // other attrs }); ``` ```javascript...

I have a use case where I need to add new `attr()`'s to a ModelFragment on runtime. TL;DR; It involves getting metadata from a remote API, and based on that...

ember-admin.com

Support specifying a room in custom actions Dependant on: PR https://github.com/hubot-scripts/hubot-github-repo-event-notifier/pull/38

Fix https://github.com/hubot-scripts/hubot-github-repo-event-notifier/issues/37