dubdiff/client/app/compare/compare.js
Adam Brown b49041db43 simplify interface
remove authentication, document management from front-end
2015-04-12 02:42:47 -04:00

15 lines
363 B
JavaScript

'use strict';
angular.module('markdownFormatWdiffApp')
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'app/compare/create/create.html',
controller: 'CompareCreateCtrl'
})
.when('/:id', {
templateUrl: 'app/compare/show/show.html',
controller: 'CompareShowCtrl'
});
});