[Code Style] Run gulp fixstyle
...to apply code style settings from #142.
This commit is contained in:
@@ -33,29 +33,41 @@ define(
|
||||
actionProvider;
|
||||
|
||||
function SimpleAction() {
|
||||
return { perform: function () { return "simple"; } };
|
||||
return { perform: function () {
|
||||
return "simple";
|
||||
} };
|
||||
}
|
||||
|
||||
function CategorizedAction() {
|
||||
return { perform: function () { return "categorized"; } };
|
||||
return { perform: function () {
|
||||
return "categorized";
|
||||
} };
|
||||
}
|
||||
CategorizedAction.category = "someCategory";
|
||||
|
||||
function KeyedAction() {
|
||||
return { perform: function () { return "keyed"; } };
|
||||
return { perform: function () {
|
||||
return "keyed";
|
||||
} };
|
||||
}
|
||||
KeyedAction.key = "someKey";
|
||||
|
||||
function CategorizedKeyedAction() {
|
||||
return { perform: function () { return "both"; } };
|
||||
return { perform: function () {
|
||||
return "both";
|
||||
} };
|
||||
}
|
||||
CategorizedKeyedAction.key = "someKey";
|
||||
CategorizedKeyedAction.category = "someCategory";
|
||||
|
||||
function MetadataAction() {
|
||||
return {
|
||||
perform: function () { return "metadata"; },
|
||||
getMetadata: function () { return "custom metadata"; }
|
||||
perform: function () {
|
||||
return "metadata";
|
||||
},
|
||||
getMetadata: function () {
|
||||
return "custom metadata";
|
||||
}
|
||||
};
|
||||
}
|
||||
MetadataAction.key = "metadata";
|
||||
@@ -152,7 +164,7 @@ define(
|
||||
}
|
||||
|
||||
provided = new ActionProvider(
|
||||
[ SimpleAction, BadAction ],
|
||||
[SimpleAction, BadAction],
|
||||
mockLog
|
||||
).getActions();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user