[whitespace][xs]: correct indentation issues introduced in b3a71e82cc.
This commit is contained in:
@@ -12,6 +12,7 @@ this.recline.Model = this.recline.Model || {};
|
|||||||
my.Dataset = Backbone.Model.extend({
|
my.Dataset = Backbone.Model.extend({
|
||||||
__type__: 'Dataset',
|
__type__: 'Dataset',
|
||||||
initialize: function(options) {
|
initialize: function(options) {
|
||||||
|
console.log(options);
|
||||||
this.currentDocuments = new my.DocumentList();
|
this.currentDocuments = new my.DocumentList();
|
||||||
this.docCount = null;
|
this.docCount = null;
|
||||||
this.backend = null;
|
this.backend = null;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
(function ($) {
|
(function ($) {
|
||||||
|
|
||||||
module("Dataset");
|
module("Dataset");
|
||||||
|
|
||||||
test('new Dataset', function () {
|
test('new Dataset', function () {
|
||||||
@@ -452,9 +451,6 @@
|
|||||||
"encoding": "UTF-8"
|
"encoding": "UTF-8"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
test("GDoc Backend", function() {
|
test("GDoc Backend", function() {
|
||||||
var dataset = new recline.Model.Dataset();
|
var dataset = new recline.Model.Dataset();
|
||||||
dataset.backendConfig = {
|
dataset.backendConfig = {
|
||||||
@@ -469,7 +465,6 @@
|
|||||||
var partialUrl = 'spreadsheets.google.com';
|
var partialUrl = 'spreadsheets.google.com';
|
||||||
if (options.indexOf(partialUrl) != -1) {
|
if (options.indexOf(partialUrl) != -1) {
|
||||||
cb(sample_gdocs_spreadsheet_data)
|
cb(sample_gdocs_spreadsheet_data)
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -486,9 +481,6 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
$.getJSON.restore();
|
$.getJSON.restore();
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
})(this.jQuery);
|
})(this.jQuery);
|
||||||
|
|||||||
Reference in New Issue
Block a user