[Code Style] Rename shadowing variables

This commit is contained in:
Victor Woeltjen
2016-05-20 11:39:49 -07:00
parent e468080373
commit ad5691142e
56 changed files with 256 additions and 262 deletions

View File

@ -154,12 +154,12 @@ define(
activeTemplateUrl = templateUrl;
}
function changeTemplate(ext) {
ext = ext || {};
if (ext.templateUrl) {
changeTemplateUrl(self.getPath(ext));
} else if (ext.template) {
showTemplate(ext.template);
function changeTemplate(templateExt) {
templateExt = templateExt || {};
if (templateExt.templateUrl) {
changeTemplateUrl(self.getPath(templateExt));
} else if (templateExt.template) {
showTemplate(templateExt.template);
} else {
removeElement();
}