-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
160 lines (122 loc) · 6.95 KB
/
help.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<div class="app-content" >
<div class="bg-light lter b-b wrapper-md">
<h1 class="m-n font-thin h3">{{$root.translation.HELP_PAGE_TITLE}}<!-- <span class="badge">16</span> --></h1>
</div>
<div class="wrapper-md">
<div class="row" ng-init="getFAQHelp()">
<div class="col-lg-9">
<!-- tab -->
<ul class="nav nav-tabs" style="max-height:40px!important;">
<li class="active" ng-click="getFAQHelp()"> <a data-toggle="tab" data-target="#a">{{$root.translation.HELP_PAGE_CATEGORY1}}</a></li>
<li ng-click="getSiteRuleHelp()"><a data-toggle="tab" data-target="#b">{{$root.translation.HELP_PAGE_CATEGORY2}}</a></li>
<li ng-click="getUserPolicyHelp()"><a data-toggle="tab" data-target="#c">{{$root.translation.HELP_PAGE_CATEGORY3}}</a></li>
<li ng-click="getPokerHelp()"><a data-toggle="tab" data-target="#d">{{$root.translation.HELP_PAGE_CATEGORY4}}</a></li>
</ul>
<script type="text/ng-template" id="group-template.html">
<div class="panel {{panelClass || 'panel-default'}}">
<div class="panel-heading">
<h4 class="panel-title" style="color:#7266ba;">
<a href tabindex="0" class="accordion-toggle" ng-click="toggleOpen()" uib-accordion-transclude="heading">
<span ng-class="{'text-muted': isDisabled}" style="font-size: 18px;">{{heading}}</span>
</a>
</h4>
</div>
<div class="panel-collapse collapse" uib-collapse="!isOpen">
<div class="panel-body" ng-transclude></div>
</div>
</div>
</script>
<div class="tab-content">
<div class="panel" style="background: transparent;" ng-show="tempData.category == 1">
<div class="padder">
<div style="margin-left:18px; margin-right:18px; margin-top: 18px;">
<uib-accordion close-others="oneAtATime">
<uib-accordion-group heading="{{one_faq.title}}" heading="Custom template" template-url="group-template.html" ng-repeat="one_faq in allFAQs">
{{one_faq.message}}
</uib-accordion-group>
</uib-accordion>
</div>
</div>
</div>
<div class="panel" style="background: transparent;" ng-show="tempData.category == 2">
<div class="padder">
<div style="margin-left:18px; margin-right:18px; margin-top: 18px;">
<uib-accordion close-others="oneAtATime">
<uib-accordion-group heading="{{one_site.title}}" heading="Custom template" template-url="group-template.html" ng-repeat="one_site in siteHelps">
{{one_site.message}}
</uib-accordion-group>
</uib-accordion>
</div>
</div>
</div>
<div class="panel" style="background: transparent;" ng-show="tempData.category == 3">
<div class="padder">
<div style="margin-left:18px; margin-right:18px; margin-top: 18px;">
<uib-accordion close-others="oneAtATime">
<uib-accordion-group heading="{{one_user.title}}" heading="Custom template" template-url="group-template.html" ng-repeat="one_user in userHelps">
{{one_user.message}}
</uib-accordion-group>
</uib-accordion>
</div>
</div>
</div>
<div class="panel" style="background: transparent;" ng-show="tempData.category == 4">
<div class="padder">
<div style="margin-left:18px; margin-right:18px; margin-top: 18px;">
<uib-accordion close-others="oneAtATime">
<uib-accordion-group heading="{{one_poker.title}}" heading="Custom template" template-url="group-template.html" ng-repeat="one_poker in pokerHelps">
{{one_poker.message}}
</uib-accordion-group>
</uib-accordion>
</div>
</div>
</div>
</div>
<!-- / tab -->
</div>
<!-- -----------------------right start--------------------------- -->
<div class="col-lg-3" ng-show="$root.is_logged">
<div class="wrapper">
<div class="panel b-a" ng-show="$root.showNotices.length != 0">
<h4 class="font-thin padder"><a href class="text-info"><strong>Notice</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_notice in showNotices">
<p ng-click="showNoticeDetails()"><em><a style="text-decoration: underline;">{{ one_notice.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i> {{ one_notice.time }}</small>
</li>
</ul>
</div>
<div class="panel b-a">
<h4 class="font-thin padder"><a href class="text-info"><strong>News</strong></a></h4>
<ul class="list-group">
<li class="list-group-item" ng-repeat="one_news in showNews">
<p ng-click="showNewsDetails(one_news)"><em><a style="text-decoration: underline;">{{ one_news.show_m }}</a></em></p>
<small class="block text-muted"><i class="fa fa-fw fa-clock-o"></i>{{ one_news.time }}</small>
</li>
</ul>
</div>
</div>
</div>
<!-- ---------------------------right end---------------------------------------- -->
</div>
</div>
<div style="background: #271e1f; width: 100%; margin-top: 50px;">
<div style="display: table; margin: 0 auto; color: #c0bebe; padding-top: 28px; padding-right: 30px; padding-left: 30px;">
<p>{{$root.translation.ABOUT_US_TITLE}}<br/>
{{$root.translation.ABOUT_US_CONTENT1}}<br/>
{{$root.translation.ABOUT_US_CONTENT2}}<br/>
{{$root.translation.ABOUT_US_CONTENT3}}<br/>
{{$root.translation.ABOUT_US_CONTENT4}}<br/>
{{$root.translation.ABOUT_US_CONTENT5}}<br/>
</p>
</div>
<center>
<img src="img/footerLogo.png" style="width: 100%;" />
</center>
<div style="display: table; margin: 0 auto; color: #c0bebe; text-align: center;">
<p>{{$root.translation.ABOUT_US_CONTENT6}}<br/>
{{$root.translation.ABOUT_US_CONTENT7}}<br/>
</p>
</div>
</div>
</div>