Alexander S.

Results 57 issues of Alexander S.

Getting this in Rails 4 on every change to my controller that inherits from SamlIdp::IdpController. Removing `unloadable` statement solves this.

We try using Ahoy with a React.js application and need to add custom token authentication to controllers. The gem inherits from the `ApplicationsController` which isn't used in our application for...

I was need to override default wrapper's "fields" class with some twitter bootstrap col-\* classes.

Hi, it's me again ;) In hide, there is `this.isLoading && this.loading();` which does not work properly and leave `div.loading-mask` in popup, over the content. This could be easily fixed...

bug

Hi, this: ``` javascript } else if (this.isLoading && this.$loading) { this.$loading.removeClass('in'); var that = this; $.support.transition && this.$element.hasClass('fade') ? this.$loading.one($.support.transition.end, function() { that.removeLoading() }) : that.removeLoading(); } else if...

bug

getLastChild looks odd, you should check if elem.lastChild exists before use it: ``` if (elem.lastChild.children && elem.lastChild.children.length > 0) { ``` Another conditional has if (!elem.lastChild and then tries to...

Getting this error when using get_categorization_from_html: ``` 1.9.3p0 :003 > response = AlchemyApi::Categorization.get_categorization_from_html(rss.title) DEPRECATED: Typhoeus::Request#user_agent=(value). This will be removed in a later version. AlchemyApi::UnknownError: Got an unknown error: invalid-url from...

Hi, I have the next STI set up: ``` ruby class User < ActiveRecord::Base; end class Member < User; end class Employee < User; end ``` And ``` Member.table_name =>...

### Steps to reproduce The code below produces this error when assigning the parent to the new resource using the `:through` parameter that points to a method in the controller....