Commit dda2573d authored by Sven Franck's avatar Sven Franck

jslint pass postCommand.js (2indent)

parent 27892c94
var postCommand = function(spec, my) { /*jslint indent: 2, maxlen: 80, sloppy: true */
/*global command: true */
var postCommand = function (spec, my) {
var that = command(spec, my); var that = command(spec, my);
spec = spec || {}; spec = spec || {};
my = my || {}; my = my || {};
// Attributes //
var priv = {};
// Methods // // Methods //
that.getLabel = function() { that.getLabel = function () {
return 'post'; return 'post';
}; };
that.validateState = function () { that.validateState = function () {
if (typeof that.getAttachmentId() !== "undefined") { if (that.getAttachmentId() !== undefined) {
that.error({ that.error({
"status": 21, "status": 21,
"statusText": "Invalid Document Id", "statusText": "Invalid Document Id",
"error": "invalid_document_id", "error": "invalid_document_id",
"message": "The document id contains '/' characters "+ "message": "The document id contains '/' characters " +
"which are forbidden", "which are forbidden",
"reason": "Document id contains '/' character(s)" "reason": "Document id contains '/' character(s)"
}); });
...@@ -24,10 +25,8 @@ var postCommand = function(spec, my) { ...@@ -24,10 +25,8 @@ var postCommand = function(spec, my) {
} }
return true; return true;
}; };
that.executeOn = function (storage) {
that.executeOn = function(storage) { storage.post(that);
storage.post (that);
}; };
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