actual dists
This commit is contained in:
parent
95453ab4b3
commit
e68e7d3d37
14
dist/torque.full.js
vendored
14
dist/torque.full.js
vendored
File diff suppressed because one or more lines are too long
6
dist/torque.full.uncompressed.js
vendored
6
dist/torque.full.uncompressed.js
vendored
@ -85,7 +85,7 @@ var cancelAnimationFrame = global.cancelAnimationFrame
|
|||||||
this.range = torque.math.linear(0, this.options.steps);
|
this.range = torque.math.linear(0, this.options.steps);
|
||||||
this.rangeInv = this.range.invert();
|
this.rangeInv = this.range.invert();
|
||||||
this.time(this._time);
|
this.time(this._time);
|
||||||
this.start();
|
this.running? this.start(): this.pause();
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -1812,7 +1812,7 @@ GMapsTorqueLayer.prototype = torque.extend({},
|
|||||||
* set the cartocss for the current renderer
|
* set the cartocss for the current renderer
|
||||||
*/
|
*/
|
||||||
setCartoCSS: function(cartocss) {
|
setCartoCSS: function(cartocss) {
|
||||||
if (this.provider.options.named_map) throw new Error("CartoCSS style on named maps is read-only");
|
if (this.provider && this.provider.options.named_map) throw new Error("CartoCSS style on named maps is read-only");
|
||||||
var shader = new carto.RendererJS().render(cartocss);
|
var shader = new carto.RendererJS().render(cartocss);
|
||||||
this.shader = shader;
|
this.shader = shader;
|
||||||
if (this.renderer) {
|
if (this.renderer) {
|
||||||
@ -3573,7 +3573,7 @@ var Profiler = require('../profiler');
|
|||||||
torque.net.jsonp(url, function (data) {
|
torque.net.jsonp(url, function (data) {
|
||||||
var query = format("select * from ({sql}) __torque_wrap_sql limit 0", { sql: self.getSQL() });
|
var query = format("select * from ({sql}) __torque_wrap_sql limit 0", { sql: self.getSQL() });
|
||||||
self.sql(query, function (queryData) {
|
self.sql(query, function (queryData) {
|
||||||
if (data) {
|
if (data && queryData) {
|
||||||
callback({
|
callback({
|
||||||
updated_at: data.last_updated,
|
updated_at: data.last_updated,
|
||||||
fields: queryData.fields
|
fields: queryData.fields
|
||||||
|
6
dist/torque.js
vendored
6
dist/torque.js
vendored
File diff suppressed because one or more lines are too long
6
dist/torque.uncompressed.js
vendored
6
dist/torque.uncompressed.js
vendored
@ -92,7 +92,7 @@ var cancelAnimationFrame = global.cancelAnimationFrame
|
|||||||
this.range = torque.math.linear(0, this.options.steps);
|
this.range = torque.math.linear(0, this.options.steps);
|
||||||
this.rangeInv = this.range.invert();
|
this.rangeInv = this.range.invert();
|
||||||
this.time(this._time);
|
this.time(this._time);
|
||||||
this.start();
|
this.running? this.start(): this.pause();
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -1819,7 +1819,7 @@ GMapsTorqueLayer.prototype = torque.extend({},
|
|||||||
* set the cartocss for the current renderer
|
* set the cartocss for the current renderer
|
||||||
*/
|
*/
|
||||||
setCartoCSS: function(cartocss) {
|
setCartoCSS: function(cartocss) {
|
||||||
if (this.provider.options.named_map) throw new Error("CartoCSS style on named maps is read-only");
|
if (this.provider && this.provider.options.named_map) throw new Error("CartoCSS style on named maps is read-only");
|
||||||
var shader = new carto.RendererJS().render(cartocss);
|
var shader = new carto.RendererJS().render(cartocss);
|
||||||
this.shader = shader;
|
this.shader = shader;
|
||||||
if (this.renderer) {
|
if (this.renderer) {
|
||||||
@ -3580,7 +3580,7 @@ var Profiler = require('../profiler');
|
|||||||
torque.net.jsonp(url, function (data) {
|
torque.net.jsonp(url, function (data) {
|
||||||
var query = format("select * from ({sql}) __torque_wrap_sql limit 0", { sql: self.getSQL() });
|
var query = format("select * from ({sql}) __torque_wrap_sql limit 0", { sql: self.getSQL() });
|
||||||
self.sql(query, function (queryData) {
|
self.sql(query, function (queryData) {
|
||||||
if (data) {
|
if (data && queryData) {
|
||||||
callback({
|
callback({
|
||||||
updated_at: data.last_updated,
|
updated_at: data.last_updated,
|
||||||
fields: queryData.fields
|
fields: queryData.fields
|
||||||
|
Loading…
Reference in New Issue
Block a user