Rajat Mittal
Rajat Mittal
Hi, I am struggling to understand basic installation in a react-router enabled app. Where should I do this: ``` import ReactGA from 'react-ga'; ReactGA.initialize('UA-000000-01'); ReactGA.pageview(window.location.pathname + window.location.search); ``` My app.js...
I have a component like the following: ``` import Ember from 'ember'; import RecognizerMixin from 'ember-gestures/mixins/recognizers'; export default Ember.Component.extend(RecognizerMixin, { recognizers: 'swipe', isContentInViewport: false, swipeRight() { this.set('isContentInViewport', true); }, swipeLeft()...
Currently, there doesn't seem to be a way to use it on file input elements that are adding dynamically to the DOM.
When webpack builds this project, it spits out a `background.bundle.js` which is ~5k loc. The project's `background.js` is only 2 loc. This is dev tooling issue as this makes inspecting...
I often see this error in the logs of `rakep server` ``` ERROR Rack::Lint::LintError: The file identified by body.to_path does not exist /Users/rajat/.rvm/gems/ruby-1.9.2-p320/gems/rack-1.4.1/lib/rack/lint.rb:19:in `assert' /Users/rajat/.rvm/gems/ruby-1.9.2-p320/gems/rack-1.4.1/lib/rack/lint.rb:543:in `each' /Users/rajat/.rvm/gems/ruby-1.9.2-p320/gems/rack-1.4.1/lib/rack/body_proxy.rb:26:in `method_missing' /Users/rajat/.rvm/gems/ruby-1.9.2-p320/gems/rack-1.4.1/lib/rack/chunked.rb:23:in `each'...
I tried to migrate an ember app but ran into the following issue: ``` Preprocessing files Failed to parse app.js Note that you probably don't want to run the migrator...
``` EmberFormComponents.Form = Ember.Mixin.create({ showFieldValidation: false, validationFields: Ember.A(), isFormValid: function () { return !this.get('validationFields').any(function (field) { return !field.get('isValid'); }); }.property('[email protected]') }); ``` Lets say two controllers A & B mix...
On trying to use github auth in everyauth, I get an error on callback: > starting step - getAuthUri > ...finished step > starting step - requestAuthUri > ...finished step...