Commit 2ad51a9b authored by Sven Franck's avatar Sven Franck

jslint pass getCommand.js (2indent)

parent aa6c318c
var getCommand = function(spec, my) { /*jslint indent: 2, maxlen: 80, sloppy: true */
/*global command: true */
var getCommand = 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 'get'; return 'get';
}; };
that.validateState = function() { that.validateState = function () {
if (!(typeof that.getDocId() === "string" && that.getDocId() !== "")) { if (!(typeof that.getDocId() === "string" &&
that.error({ that.getDocId() !== "")) {
"status": 20, that.error({
"statusText": "Document Id Required", "status": 20,
"error": "document_id_required", "statusText": "Document Id Required",
"message": "The document id is not provided", "error": "document_id_required",
"reason": "Document id is undefined" "message": "The document id is not provided",
}); "reason": "Document id is undefined"
return false; });
} return false;
if (typeof that.getAttachmentId() === "string") { }
if (that.getAttachmentId() === "") { if (typeof that.getAttachmentId() === "string") {
that.error({ if (that.getAttachmentId() === "") {
"status": 23, that.error({
"statusText": "Invalid Attachment Id", "status": 23,
"error": "invalid_attachment_id", "statusText": "Invalid Attachment Id",
"message": "The attachment id must not be an empty string", "error": "invalid_attachment_id",
"reason": "Attachment id is empty" "message": "The attachment id must not be an empty string",
}); "reason": "Attachment id is empty"
return false; });
} return false;
} }
return true; }
return true;
}; };
that.executeOn = function(storage) { that.executeOn = function (storage) {
storage.get (that); storage.get(that);
}; };
that.canBeRestored = function() { that.canBeRestored = function () {
return false; return false;
}; };
return that; return that;
}; };
\ No newline at end of file
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