Better debugging and fix click on mobile devices that implement draggable

This commit is contained in:
2015-10-07 17:43:45 +02:00
parent b540f5945e
commit 546e1fe10d
4 changed files with 5 additions and 15 deletions
+2 -12
View File
@@ -16,27 +16,17 @@ Qwaiter::Application.configure do
config.ember.variant = :development
config.action_controller.asset_host = "http://localhost:3000"
config.action_controller.asset_host = "http://#{ENV['MOZO_LOCAL_IP'] || 'localhost'}:3000"
# config.web_console.automount = true
# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false
config.action_mailer.delivery_method = :letter_opener
config.action_mailer.default_url_options = {
host: 'localhost',
host: ENV['MOZO_LOCAL_IP'] || 'localhost',
port: 3000
}
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
domain: "atool.nl",
authentication: :plain,
user_name: "bterkuile@companytools.nl",
password: "BjTKct22",
enable_starttls_auto: true
}
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log
+1 -1
View File
@@ -1,4 +1,4 @@
Qwaiter.event_host = "http://#{(Rails.env.development? or Rails.env.test?) ? 'localhost' : 'events.mozo.bar'}:9296/faye"
Qwaiter.event_host = "http://#{(Rails.env.development? or Rails.env.test?) ? ENV['MOZO_LOCAL_IP'] || 'localhost' : 'events.mozo.bar'}:9296/faye"
Qwaiter.broadcaster = Qwaiter::Broadcaster::Faye.new
# use the connection from couchbase-structures/documents