Amit Patel

Results 9 comments of Amit Patel

I too have similar requirement. We have been using AWS and any settings store locally ends up being burnt into the machine image from which new instances are launched. So...

Getting following error in FF 16.0.1 and Chrome 22.0.1229.94 on Ubuntu at chat_action.rb:58:in `parse_json' ``` Yajl::ParseError: lexical error: invalid char in json text. ����m�t�b�z�4�7�y�{�:�`�s�7�4 (right here) ------^ ```

The workaround is to create empty JSON before crawling `open_spider` callback ```ruby # Empty file before start crawling def self.open_spider File.open('path/to/output.json', 'w') { |file| file.write([].to_s) } end ```

Yes. It does. We have been using for years.

Thanks @goulvench for sharing solution. I am using `include Prawn::View` over extending `< Prawn::Document` and so getting following error on calling `y` method for `@repeat_box_height = y` ``` NoMethodError: undefined...

I am facing same issue as @mflalor do. Also I can click on the disabled tab, even if it is disabled.

Here is how I configure tinyMCE but it doesn't work. ``` if (typeof tinyMCE != 'undefined') { tinyMCE.init({ selector: "textarea.tinymce", toolbar: ["bold italic | styleselect | alignleft aligncenter alignright alignjustify...

I got a solution which might not optimal but works perfectly. ``` ed.on('change', function(e) { tinyMCE.triggerSave(); $('#post-form').trigger('checkform.areYouSure'); }); ed.on('keyup', function(e) { tinyMCE.triggerSave(); $('#post-form').trigger('checkform.areYouSure'); }); ```