Bryan Spears

Results 9 issues of Bryan Spears

Running on Ubuntu 18.04 on a Jenkins slave headlessly. ```docker run --cap-add=NET_ADMIN --rm -v "$(pwd)":/sitespeed.io -e REPLAY=true -e LATENCY=100 sitespeedio/sitespeed.io:8.7.5 \ -b chrome \ -n 3 \ --chrome.timeline true \...

My specific example is a 'number' type where the incoming JSON value is a numeric 0. Doesn't trigger the subview render. After some testing, this affects ALL falsey values I've...

``` const State = require('ampersand-state'); const Collection = require('ampersand-collection'); const StateCollection = Collection.extend({}); const Country = State.extend({ collections: { states: StateCollection, }, }); const ugh = new Country({ states: null,...

I outlined the issue in the wrong repo: https://github.com/AmpersandJS/ampersand-collection/issues/85

Due to: https://github.com/AmpersandJS/ampersand-input-view/blob/master/ampersand-input-view.js#L68 Parent update gets duplicate call. At least it appears to be duplicated. I don't see any differences on the object passed. Not sure what a proper fix...

bug
new contributor

A use case: I have two, numeric text inputs. One cannot be greater than the other. How would I validate that using ampersand input/form/whatever and still have input errors/messages work...

A suggestion to add a quality of life feature. :smile:

I don't have any example other than the checkbox indeterminate state, but it's still something to consider. Here's the issue I initially reported on dom-bindings. https://github.com/AmpersandJS/ampersand-dom-bindings/issues/38 Simply put: `setAttribute('indeterminate', true)`...

I noticed that LESS compile errors aren't being output to the console in development mode. I tried it on a fresh kraken app to verify it wasn't my app. I...

enhancement