|
@locations.push(["<a href='#{course_url(course)}'>#{course.name}</a>", (course.logo.present? ? "<img src='#{course&.logo.url}' alt='#{course.name}' height='42' width='42'>" : "<img src='https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Google_Chrome_icon_%28September_2014%29.svg/1200px-Google_Chrome_icon_%28September_2014%29.svg.png' alt='#{course.name}' height='42' width='42'>"), course.latitude, course.longitude]) |
Avoid such usage, try to move it to private method with arguments that you need to send.
thinkiny/app/controllers/courses_controller.rb
Line 91 in bb895da
Avoid such usage, try to move it to private method with arguments that you need to send.