Fixed small issue with JT form vars

A '$' got deleted somewhere along the line
This commit is contained in:
Jared Tabor
2014-12-03 16:33:33 -05:00
parent e05f9e081c
commit f893e4b00b

View File

@@ -264,7 +264,7 @@ function JobTemplatesAdd($scope, $rootScope, $compile, $location, $log, $routePa
callback = function() {
// Make sure the form controller knows there was a change
$scope[form.name + '_form'].setDirty();
$scope[form.name + '_form'].$setDirty();
};
$scope.mode = "add";
$scope.parseType = 'yaml';