[Code Style] Run gulp fixstyle

...to apply code style settings from #142.
This commit is contained in:
Victor Woeltjen
2016-05-19 11:29:13 -07:00
parent f12b9704d9
commit fa77139077
440 changed files with 1885 additions and 1662 deletions

View File

@@ -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();
});