]>
Commit | Line | Data |
---|---|---|
1 | ||
2 | /* number of "windows" on the directory browser */ | |
3 | var BROWSER_NUM = 3; | |
4 | ||
5 | /* the border around the playing item in the playlist */ | |
6 | var PLAYLIST_PLAYING_STYLE = "1px solid #a20000"; | |
7 | ||
8 | /* this is the color thing that you add blink in */ | |
9 | var DEFAULT_BLINK_COLOR = "#C1DAD6"; | |
10 | ||
11 | var BASE_IMG_DIR = "../theme/default/images/"; | |
12 | ||
13 | var IMAGE = new Object(); | |
14 | ||
15 | IMAGE.BUTTON_PLAY = BASE_IMG_DIR + "play_25.png"; | |
16 | IMAGE.BUTTON_STOP = BASE_IMG_DIR + "stop_25.png"; | |
17 | IMAGE.BUTTON_PAUSE = BASE_IMG_DIR + "pause_25.png"; | |
18 | IMAGE.BUTTON_PREVIOUS = BASE_IMG_DIR + "previous_25.png"; | |
19 | IMAGE.BUTTON_NEXT = BASE_IMG_DIR + "next_25.png"; | |
20 | ||
21 | IMAGE.BROWSER_PLAYLIST_REMOVE = BASE_IMG_DIR + "disabled_15.png"; | |
22 | ||
23 | IMAGE.SERVER_SETTINGS_ENABLED = BASE_IMG_DIR + "enabled_15.png"; | |
24 | IMAGE.SERVER_SETTINGS_DISABLED = BASE_IMG_DIR + "disabled_15.png"; | |
25 | IMAGE.SERVER_SETTINGS_XFADE_DOWN= BASE_IMG_DIR + "left_15.png"; | |
26 | IMAGE.SERVER_SETTINGS_XFADE_UP = BASE_IMG_DIR + "right_15.png"; | |
27 | ||
28 | IMAGE.CLOSE = BASE_IMG_DIR + "close_15.png"; | |
29 | IMAGE.WORKING = BASE_IMG_DIR + "working.gif"; | |
30 | ||
31 | IMAGE.MENU_ITEM_CROP = BASE_IMG_DIR + "crop_30.png"; | |
32 | IMAGE.MENU_ITEM_REMOVE = BASE_IMG_DIR + "remove_30.png"; | |
33 | IMAGE.MENU_ITEM_DIRECTORY = BASE_IMG_DIR + "folder_30.png"; | |
34 | ||
35 | IMAGE.PAGINATION_FOLLOW = BASE_IMG_DIR + "follow-playing-yes.png"; | |
36 | IMAGE.PAGINATION_NOFOLLOW = BASE_IMG_DIR + "follow-playing-no.png"; | |
37 | ||
38 | IMAGE.JUMP_CURRENT = BASE_IMG_DIR + "jump-to-current.png"; | |
39 | ||
40 | ||
41 | /* this should be whatever the backgroun is converted from hex to dec */ | |
42 | IMAGE.STREAM_BGCOLOR = "15198183"; |