4
votes
5answers
88 views
+50
getScript jQuery path not working / Ruby on Rails
I've got a jQuery function that is called after a doubleclick on a list item.
app/assets/javascripts/tile/tile.js
$('#list > li').dblclick(function(){
// styling
...
1
vote
1answer
25 views
+50
Concurrent SOAP api requests taking collectively longer time
I'm using savon gem to interact with a soap api. I'm trying to send three parallel request to the api using parallel gem. Normally each request takes around 13 seconds to complete so for three ...