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