dcbia-surveys
Version:
A form to fill in order to collect information about TMJ.
33 lines (26 loc) • 845 B
JavaScript
angular.module('dcbia-surveys')
.directive('diagnosticTemporoMandibular', function($rootScope, $location, $anchorScroll) {
function link($scope){
if(!$scope.formData || ($scope.formData && $scope.formData.formId !== 'diagnosticTemporoMandibular')){
$scope.formData = {};
$scope.formData.formId = 'diagnosticTemporoMandibular';
$scope.formData.date = new Date();
}
$scope.goToScroll = function(location) {
// set the location.hash to the id of
// the element you wish to scroll to.
$location.hash(location);
// call $anchorScroll()
$anchorScroll();
};
}
return {
restrict : 'E',
link : link,
scope: {
formData : "=",
editFields: "="
},
templateUrl: 'node_modules/diagnostic-temporo-mandibular/diagnosticTemporoMandibular.template.html'
}
});