Commit 15509d82 authored by Sven Franck's avatar Sven Franck

jslint pass allDocsCommand.js (2indent)

parent 14aa39ea
var allDocsCommand = function(spec, my) { var allDocsCommand = function (spec, my) {
var that = command(spec, my); var that = command(spec, my);
spec = spec || {}; spec = spec || {};
my = my || {}; my = my || {};
// Attributes // // Attributes //
// Methods // // Methods //
that.getLabel = function() { that.getLabel = function () {
return 'allDocs'; return 'allDocs';
}; };
that.executeOn = function(storage) { that.executeOn = function (storage) {
storage.allDocs (that); storage.allDocs(that);
}; };
that.canBeRestored = function() { that.canBeRestored = function () {
return false; return false;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment