[#67,app][s]: first pass at sharable link support in app (though seems rather buggy).
This commit is contained in:
@@ -682,6 +682,9 @@ my.composeQueryString = function(queryParams) {
|
||||
var queryString = '?';
|
||||
var items = [];
|
||||
$.each(queryParams, function(key, value) {
|
||||
if (typeof(value) === 'object') {
|
||||
value = JSON.stringify(value);
|
||||
}
|
||||
items.push(key + '=' + value);
|
||||
});
|
||||
queryString += items.join('&');
|
||||
|
||||
Reference in New Issue
Block a user