Alexander Jeurissen
Alexander Jeurissen
@poteto could you elaborate on this ?
@kmiyashiro I didn't extend the `flash-message` component from the add-on, because i was unaware that was possible when i also want to override the `ClassNames` and `ClassNameBindings` the later being...
I guess the code would look something like this: ``` javascript import flashComponent from 'ember-cli-flash/flash-message'; export default flashComponent.extend({ classNames: ['flash-message'], classNameBindings: 'flashType', flashType: Ember.computed('flash', function() { return `is-${this.get('flash.type')}`; }), elementInserted:...
@ngortheone If you are using neovim there is an easy way to do this as most neovim supported colorschemes have terminal colors defined (for neovim terminal) these can be read...
Yes that is right, as long as the author of the colorscheme has defined colors for neovim's `terminal` mode. I'm not sure if this also applies to Vim8
which of the two would seem more logical to you @jurre ? (based on recent activity of the user, or based on recent activity of the tenant as a whole...
@jurre the `entry` model already has ``` ruby belongs_to :project, touch: true ``` Only sorting the project list that is rendered is necessary, however that would result in sorting the...
I just checked and the `Project` model already has a scope named `by_last_updated` so changing the relevant line in https://github.com/DefactoSoftware/Hours/blob/development/app/views/application/_entry_form.html.haml#L5 to use that scope instead of `by_name` will result in...
We could do both ;) but yeah better suggestions is also a possible use-case for similarity measures. We could basically have a class method that would return all tags that...
I'm experiencing the same issue when trying to generate keys on IOS. This is the object that comes back from `const Rsa = require('react-native-rsa-native');`: I tried downgrading to the version...