Created
August 8, 2016 14:16
-
-
Save jschoch/abfdedec1e287f83155c29f25962f9c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Const exposing (..) | |
| -- Constants for my use | |
| -- config constants | |
| -- Material constants | |
| prodUrl = "" | |
| devUrl = "" | |
| -- mct == model constant for toggles | |
| mct_user = 0 | |
| mct_user_list = 1 | |
| mct_config = 2 | |
| mct_model = 3 | |
| mct_debug = 4 | |
| mct_env = 5 | |
| mct_user_debug = 6 | |
| -- Button constants | |
| btn_fetch_user = 3 | |
| btn_user_quick = 4 | |
| btn_user_quick_submit = 5 | |
| btn_user_qs_in_drawyer = 6 | |
| btn_user_mock = 7 | |
| btn_fetch_user_list = 8 | |
| btn_user_list_item = 9 | |
| btn_quick_create_tab = 10 | |
| btn_alias_primary = 11 | |
| -- Textfield constants | |
| txt_user_quick_domain = 0 | |
| txt_current_user_id = 1 | |
| -- Menu fields | |
| mdl_user_picker = 0 | |
| -- TAB content | |
| mdl_main_tabs = 0 | |
| mdl_user_tabs = 1 | |
| -- Tooltips | |
| mdl_tt_user_detail = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment