These are the steps I followed:
1) First, I downloaded the script file from: https://github.com/doodeec/dcom-angular-dialog
2) Next, I included it in both my webpage and application:
var summariesApp = angular.module('summariesApp', ['ui.bootstrap', 'ngCkeditor', 'dcModal']);
3) I then attempted to use it in a controller:
summariesApp.controller("singleSNPController", function ($scope, $http) {
$scope.stopLightModal = dialogService.create('../Templates/test.html');
However, I encountered an error stating that the dialogService resource could not be found. I realize this may seem like a simple issue, but I have been struggling with it for quite some time now. Any help would be greatly appreciated.