mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 12:34:17 +00:00
9 lines
139 B
JavaScript
9 lines
139 B
JavaScript
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.constant('PLAYSTATES', {
|
|
stopped: 0,
|
|
playing: 1,
|
|
paused: 2
|
|
});
|