[#345] Use dataproxy url without http scheme to allow usage on ssl enabled pages.

This commit is contained in:
Dominik Moritz 2013-04-30 18:17:19 +02:00
parent d3b8f39213
commit a3af6af423

View File

@ -5,7 +5,7 @@ this.recline.Backend.DataProxy = this.recline.Backend.DataProxy || {};
(function($, my) {
my.__type__ = 'dataproxy';
// URL for the dataproxy
my.dataproxy_url = 'http://jsonpdataproxy.appspot.com';
my.dataproxy_url = '//jsonpdataproxy.appspot.com';
// Timeout for dataproxy (after this time if no response we error)
// Needed because use JSONP so do not receive e.g. 500 errors
my.timeout = 5000;