Skip to content

Commit

Permalink
closed #375 - now asking socket.io to connect to "current page" inste…
Browse files Browse the repository at this point in the history
…ad of hardcoded url, removed api_url and "socket" section from public config
  • Loading branch information
julianlam committed Oct 3, 2013
1 parent f173a79 commit 948949c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion public/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var socket,
socket.socket.connect();
}, 200);
} else {
socket = io.connect(config.socket.address);
socket = io.connect(RELATIVE_PATH);

var reconnecting = false,
reconnectEl, reconnectTimer;
Expand Down
10 changes: 5 additions & 5 deletions public/templates/admin/testing/categories.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ jQuery(document).ready(function () {
QUnit.init();
asyncTest( "Loading Categories", function() {
jQuery.get(RELATIVE_PATH + '/api/home', function(data) {
ok( data.categories.length > 0, JSON.stringify(data.categories) );
start();
for (var i = 0, ii = data.categories.length; i < ii; i++) {
var category = data.categories[i],
slug = 'category/' + category.slug;
asyncTest( "Loading Category '" + category.name + "' located at " + slug, function() {
jQuery.get(config.api_url + slug, function(data) {
jQuery.get(RELATIVE_PATH + '/api/' + slug, function(data) {
ok( data.category_name, JSON.stringify(data) ); //todo: check this against data.categories
start();
});
});
}
});
});
});
QUnit.start();
});
Expand Down
4 changes: 0 additions & 4 deletions src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ var async = require('async'),
protocol = urlObject.protocol,
server_conf = config,
client_conf = {
socket: {
address: protocol + '//' + host + (config.use_port ? ':' + config.port : '')
},
api_url: protocol + '//' + host + (config.use_port ? ':' + config.port : '') + relative_path + '/api/',
relative_path: relative_path
};

Expand Down

0 comments on commit 948949c

Please sign in to comment.