mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
9 lines
205 B
JavaScript
Executable File
9 lines
205 B
JavaScript
Executable File
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.controller('MixCtrl', function ($scope, mix, comments) {
|
|
$scope.playState = 0;
|
|
$scope.mix = mix;
|
|
$scope.comments = comments;
|
|
});
|