Michael Stramel

Results 40 issues of Michael Stramel

I'm running into issues using `subscriptions-transport-ws` with this. The subscriptions never close and don't seem to be getting data. ```js import { SubscriptionClient } from 'subscriptions-transport-ws' // ... const client...

http://www.fascinatingnepal.com/photo-gallery/ Doesn't seem to actually be using bricklayer.js

`bricklayer.redraw()` is causing the page to scroll to the top. I was previously using masonry and didn't run across this issue. Is there a way to prevent this?

It would be nice to be able to reference another validation. Something like: ```js password: t.applyCascade(t.isString(), [t.matchesRegex()]), repeatPassword: t.applyCascade(t.isString(), [t.isOneOf(t.ref('password'))]), //or repeatPassword: t.applyCascade(t.isString(), [t.matchesRef('password')]), ```

I think it would be awesome to see a docker image to maintain the dependencies and setup of this. Would also allow others to easily run their own version of...

Old Site

According to the official documentation, Angular allows the following: ``` html ``` Currently, only `ng-` and `data-ng-` are supported. (https://github.com/ramonvictor/gulp-protractor-qa/blob/master/lib/find-view-matches.js#L55) Reference: https://docs.angularjs.org/guide/directive#normalization

enhancement

My code looks like: ```ts /** * Hook to check the action permission based on the rules and user's roles * * @param action - Action to check permission for...

It would be great to be able to check the form's validation state without triggering invalid property on all the inputs within it. Use Case: Disabling a submit button until...

Discussion was happening in `polymer-build`. This was the suggested solution. https://github.com/Polymer/polymer-build/issues/56#issuecomment-265967662 `gulp-rev` is very popular among angular apps

currently, if I have ``` const state = {} ``` and I attempt to update the state with devices like so, ``` const id = '123' dotProp.set(state, 'devices', list =>...