Ewan McDougall
Ewan McDougall
``` ruby {{#each selections in allMySelections}} {{select-2 value=selections content=aContentArray multiple=true}} {{/end}} ``` Without update allMySelections doesn't get updated when sub-array selections change.
Replacing findPos function with following fixes issue ``` js //https://stackoverflow.com/questions/442404/retrieve-the-position-x-y-of-an-html-element function findPos(e) { var bodyRect = document.body.getBoundingClientRect(), elemRect = e.getBoundingClientRect(), x = elemRect.left - bodyRect.left, y = elemRect.top - bodyRect.top;...
[Rendered view](https://github.com/adopted-ember-addons/ember-cp-validations/blob/9e11dfa4551992121f360da3b3a2f2c9e44efcb5/README.md) Replace offirgolan with ember-cp-validations in URLs Note that link to v.3 docs is still broken as rawgit.com no longer works Resolves #707 . Tasks: - [x] Updated documentation
Enables rebuilding of STI subclass correctly. See bug report https://github.com/Casecommons/pg_search/pull/225. @nertzy not sure if this is the correct way to add table column.
**Issue:** Your using grape, rails 4.2.x and rspec and you get an error about Array not responding to url_helpers **Fix:** ``` ruby if Rails.version >= '4.2' && Rails.version < '5'...
The flag `--time` was not used a `time` is already a `Command::time` method. The flag `-d` was not used as already used for `--date` This is useful for looking at...
Occasionally I want to make assertions about what requests are made during a test without changing the behaviour of an existing mocked endpoint. To accomplish this I've implemented and am...
Related to https://github.com/rwjblue/git-repo-info/pull/11 From a git submodule I get the following error ``` sh +- prepare | | | +- revision-data | - creating revision data using `git-commit` | +-...
Similar to #32 but deals with unwanted alpha channel info on osx. The color gem expects hex color string with 3 or 6 digits, see: https://github.com/halostatue/color/blob/2159ca233851ca3304414b831d9da368dcbafb04/lib/color/rgb.rb#L609 When miro generates a...