Skip to content

Instantly share code, notes, and snippets.

View afarnham's full-sized avatar

Aaron Farnham afarnham

View GitHub Profile
~/work/dp-admanager $ merb
~ Loaded DEVELOPMENT Environment...
~ Connecting to database...
~ loading gem 'merb_datamapper' ...
~ Compiling routes...
/usr/lib/ruby/1.8/pathname.rb:205:in `dup': can't dup Symbol (TypeError)
from /usr/lib/ruby/1.8/pathname.rb:205:in `initialize'
from /usr/lib/ruby/1.8/pathname.rb:582:in `new'
from /usr/lib/ruby/1.8/pathname.rb:582:in `+'
from /usr/lib/ruby/gems/1.8/gems/extlib-0.9.4/lib/extlib/pathname.rb:3:in `/'
class RatingWidget(forms.MultiWidget):
def __init__(self):
widgets = (QuestionWidget, forms.RadioSelect(attrs={'class': 'yourclass'}, choices=RATINGS), forms.Textarea)
super(RatingWidget, self).__init__(widgets)
// This version works
$('#account_info_form').submit(function() {
$.facebox(function() {
$("#account_info_form").ajaxSubmit(function(respText, statusText) {
if (statusText == "success")
$.facebox("Account Information successfully update");
else
$.facebox("Failed to update Account Information.");
})
});