Commit 7a1a589e authored by Taddeus Kroes's avatar Taddeus Kroes

Added comedy Central to default channel list

parent 959ec0fd
...@@ -6,8 +6,9 @@ HOUR_WIDTH = 200 ...@@ -6,8 +6,9 @@ HOUR_WIDTH = 200
CHANNEL_LABEL_WIDTH = 180 CHANNEL_LABEL_WIDTH = 180
STORAGE_CHANNELS = 'tvgids-channels' STORAGE_CHANNELS = 'tvgids-channels'
STORAGE_PROGRAMS = 'tvgids-programs' STORAGE_PROGRAMS = 'tvgids-programs'
DEFAULT_CHANNELS = _.map([1, 2, 3, 4, 31, 46, 92, 36, 37, 34, 29, 18], String)
HOURS_BEFORE = HOURS_AFTER = 2 HOURS_BEFORE = HOURS_AFTER = 2
DEFAULT_CHANNELS = [1, 2, 3, 4, 31, 46, 92, 36, 37, 34, 29, 18, 91]
DEFAULT_CHANNELS = _.map(DEFAULT_CHANNELS, String)
# #
# Utils # Utils
......
STORAGE_CHANNELS = 'tvgids-channels' STORAGE_CHANNELS = 'tvgids-channels'
DEFAULT_CHANNELS = _.map([1, 2, 3, 4, 31, 46, 92, 36, 37, 34, 29, 18], String) DEFAULT_CHANNELS = [1, 2, 3, 4, 31, 46, 92, 36, 37, 34, 29, 18, 91]
DEFAULT_CHANNELS = _.map(DEFAULT_CHANNELS, String)
visible = if localStorage.hasOwnProperty(STORAGE_CHANNELS) \ visible = if localStorage.hasOwnProperty(STORAGE_CHANNELS) \
then localStorage.getItem(STORAGE_CHANNELS).split(';') \ then localStorage.getItem(STORAGE_CHANNELS).split(';') \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment