Merge branch 'fix_windshaft'

This commit is contained in:
javi 2014-03-11 08:20:09 +01:00
commit 6885e69187

View File

@ -326,6 +326,13 @@
return this.options.sql || "select * from " + this.options.table;
},
setSQL: function(sql) {
if (this.options.sql != sql) {
this.options.sql = sql;
this.reload();
}
},
_tilerHost: function() {
var opts = this.options;
var user = (opts.user_name || opts.user);