eventify 1.5.1 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +0 -0
  3. data/.ruby-version +1 -1
  4. data/.travis.yml +0 -0
  5. data/Gemfile +14 -14
  6. data/Guardfile +0 -0
  7. data/LICENSE +0 -0
  8. data/README.md +2 -2
  9. data/Rakefile +0 -0
  10. data/eventify.gemspec +1 -2
  11. data/lib/eventify.rb +4 -4
  12. data/lib/eventify/configuration.rb +0 -0
  13. data/lib/eventify/database.rb +0 -0
  14. data/lib/eventify/mail.rb +0 -0
  15. data/lib/eventify/provider/apollo_kino.rb +21 -0
  16. data/lib/eventify/provider/base.rb +55 -55
  17. data/lib/eventify/provider/livenation.rb +21 -0
  18. data/lib/eventify/provider/piletilevi.rb +18 -5
  19. data/lib/eventify/version.rb +1 -1
  20. data/spec/eventify/configuration_spec.rb +51 -51
  21. data/spec/eventify/database_spec.rb +9 -9
  22. data/spec/eventify/mail_spec.rb +33 -33
  23. data/spec/eventify/provider/apollo_kino_spec.rb +25 -0
  24. data/spec/eventify/provider/base_spec.rb +145 -145
  25. data/spec/eventify/provider/livenation_spec.rb +25 -0
  26. data/spec/eventify/provider/piletilevi_spec.rb +16 -30
  27. data/spec/eventify_spec.rb +155 -155
  28. data/spec/spec_helper.rb +7 -0
  29. data/spec/support/apollo_kino.html +1021 -0
  30. data/spec/support/livenation.html +1444 -0
  31. data/spec/support/piletilevi-page1.json +1 -0
  32. data/spec/support/piletilevi-page2.json +1 -0
  33. metadata +19 -32
  34. data/lib/eventify/provider/fbi.rb +0 -17
  35. data/lib/eventify/provider/solaris_kino.rb +0 -30
  36. data/spec/eventify/provider/fbi_spec.rb +0 -25
  37. data/spec/eventify/provider/solaris_kino_spec.rb +0 -31
  38. data/spec/support/fbi.html +0 -802
  39. data/spec/support/piletilevi.json +0 -174
  40. data/spec/support/solaris_kino.html +0 -542
@@ -1,155 +1,155 @@
1
- require "spec_helper"
2
-
3
- describe Eventify do
4
- before do
5
- stub_const "Eventify::Configuration::PATH", File.join(Dir.tmpdir, "eventify-config.yml")
6
- File.delete Eventify::Configuration::PATH if File.exists? Eventify::Configuration::PATH
7
- end
8
-
9
- context "#initialize" do
10
- it "initializes configuration" do
11
- Eventify.new.configuration[:subscribers].should == ["user@example.org"]
12
- end
13
-
14
- it "allows to override configuration" do
15
- Eventify.new(foo: "bar").configuration[:foo].should == "bar"
16
- end
17
- end
18
-
19
- context "#configuration" do
20
- it "provides access to the configuration instance" do
21
- eventify = Eventify.new
22
- eventify.configuration.should == eventify.instance_variable_get(:@configuration)
23
- end
24
- end
25
-
26
- context "#new_events" do
27
- it "all are new" do
28
- eventify = Eventify.new
29
- events = [
30
- Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org"),
31
- Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
32
- ]
33
- eventify.stub(all_events: events)
34
- eventify.new_events.should == events
35
- end
36
-
37
- it "old ones are filtered out" do
38
- eventify = Eventify.new
39
- old_event = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org").save
40
- new_event = Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
41
- events = [old_event, new_event]
42
- eventify.stub(all_events: events)
43
-
44
- eventify.new_events.should == [new_event]
45
- end
46
-
47
- it "caches the results" do
48
- eventify = Eventify.new
49
-
50
- event = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org")
51
- eventify.should_receive(:all_events).and_return([event])
52
-
53
- 2.times { eventify.new_events.should == [event] }
54
- end
55
- end
56
-
57
- context "#all_events" do
58
- it "fetches all events from all providers" do
59
- eventify = Eventify.new
60
- eventify.providers.each do |provider|
61
- provider.should_receive :fetch
62
- end
63
-
64
- eventify.all_events
65
- end
66
-
67
- it "combines all events from all providers" do
68
- event1 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
69
- event2 = Eventify::Provider::Piletilevi.new(id: "456", title: "bar", link: "http://example.org")
70
- Eventify::Provider::Piletilevi.stub(fetch: [event1, event2])
71
-
72
- event3 = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org")
73
- Eventify::Provider::Base.stub(fetch: [event3])
74
-
75
- eventify = Eventify.new
76
- eventify.stub(providers: [Eventify::Provider::Piletilevi, Eventify::Provider::Base])
77
- eventify.all_events.should == [event1, event2, event3]
78
- end
79
-
80
- it "caches results" do
81
- eventify = Eventify.new
82
- eventify.should_receive(:providers).once.and_return([Eventify::Provider::Base])
83
- Eventify::Provider::Base.should_receive(:fetch).once.and_return([1])
84
-
85
- eventify.all_events.should == [1]
86
- eventify.all_events.should == [1]
87
- end
88
-
89
- it "removes duplicate entries" do
90
- event1 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
91
- event2 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
92
- event1.should == event2
93
- Eventify::Provider::Piletilevi.stub(fetch: [event1, event2])
94
-
95
- eventify = Eventify.new
96
- eventify.stub(providers: [Eventify::Provider::Piletilevi])
97
- eventify.all_events.should == [event1]
98
- end
99
- end
100
-
101
- context "#providers" do
102
- it "returns all providers" do
103
- expected_providers = [
104
- Eventify::Provider::Piletilevi,
105
- Eventify::Provider::FBI,
106
- Eventify::Provider::SolarisKino
107
- ]
108
- Eventify.new.providers.should == expected_providers
109
- end
110
-
111
- it "allows to override" do
112
- eventify = Eventify.new
113
- eventify.providers = ["foo"]
114
-
115
- eventify.providers.should == ["foo"]
116
- end
117
- end
118
-
119
- context "#process_new_events" do
120
- it "sends out e-mail for new events" do
121
- new_events = [
122
- Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org"),
123
- Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
124
- ]
125
- configuration = double("configuration")
126
- eventify = Eventify.new configuration
127
- eventify.should_receive(:new_events).and_return(new_events)
128
- Eventify::Mail.should_receive(:deliver).with(new_events, configuration)
129
-
130
- eventify.process_new_events
131
- end
132
-
133
- it "does not send e-mail when no new events" do
134
- eventify = Eventify.new
135
- eventify.should_receive(:new_events).and_return([])
136
- Eventify::Mail.should_not_receive(:deliver)
137
-
138
- eventify.process_new_events
139
- end
140
-
141
- it "saves new events into database" do
142
- new_events = [
143
- Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org/1", date: Time.now),
144
- Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org/2", date: Time.now)
145
- ]
146
- eventify = Eventify.new
147
- eventify.should_receive(:new_events).and_return(new_events)
148
- Eventify::Mail.stub(:deliver)
149
-
150
- eventify.process_new_events
151
-
152
- Eventify::Database.events.size.should == 2
153
- end
154
- end
155
- end
1
+ require "spec_helper"
2
+
3
+ describe Eventify do
4
+ before do
5
+ stub_const "Eventify::Configuration::PATH", File.join(Dir.tmpdir, "eventify-config.yml")
6
+ File.delete Eventify::Configuration::PATH if File.exists? Eventify::Configuration::PATH
7
+ end
8
+
9
+ context "#initialize" do
10
+ it "initializes configuration" do
11
+ expect(Eventify.new.configuration[:subscribers]).to eq(["user@example.org"])
12
+ end
13
+
14
+ it "allows to override configuration" do
15
+ expect(Eventify.new(foo: "bar").configuration[:foo]).to eq("bar")
16
+ end
17
+ end
18
+
19
+ context "#configuration" do
20
+ it "provides access to the configuration instance" do
21
+ eventify = Eventify.new
22
+ expect(eventify.configuration).to eq(eventify.instance_variable_get(:@configuration))
23
+ end
24
+ end
25
+
26
+ context "#new_events" do
27
+ it "all are new" do
28
+ eventify = Eventify.new
29
+ events = [
30
+ Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org"),
31
+ Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
32
+ ]
33
+ allow(eventify).to receive_messages(all_events: events)
34
+ expect(eventify.new_events).to eq(events)
35
+ end
36
+
37
+ it "old ones are filtered out" do
38
+ eventify = Eventify.new
39
+ old_event = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org").save
40
+ new_event = Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
41
+ events = [old_event, new_event]
42
+ allow(eventify).to receive_messages(all_events: events)
43
+
44
+ expect(eventify.new_events).to eq([new_event])
45
+ end
46
+
47
+ it "caches the results" do
48
+ eventify = Eventify.new
49
+
50
+ event = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org")
51
+ expect(eventify).to receive(:all_events).and_return([event])
52
+
53
+ 2.times { expect(eventify.new_events).to eq([event]) }
54
+ end
55
+ end
56
+
57
+ context "#all_events" do
58
+ it "fetches all events from all providers" do
59
+ eventify = Eventify.new
60
+ eventify.providers.each do |provider|
61
+ expect(provider).to receive :fetch
62
+ end
63
+
64
+ eventify.all_events
65
+ end
66
+
67
+ it "combines all events from all providers" do
68
+ event1 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
69
+ event2 = Eventify::Provider::Piletilevi.new(id: "456", title: "bar", link: "http://example.org")
70
+ allow(Eventify::Provider::Piletilevi).to receive_messages(fetch: [event1, event2])
71
+
72
+ event3 = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org")
73
+ allow(Eventify::Provider::Base).to receive_messages(fetch: [event3])
74
+
75
+ eventify = Eventify.new
76
+ allow(eventify).to receive_messages(providers: [Eventify::Provider::Piletilevi, Eventify::Provider::Base])
77
+ expect(eventify.all_events).to eq([event1, event2, event3])
78
+ end
79
+
80
+ it "caches results" do
81
+ eventify = Eventify.new
82
+ expect(eventify).to receive(:providers).once.and_return([Eventify::Provider::Base])
83
+ expect(Eventify::Provider::Base).to receive(:fetch).once.and_return([1])
84
+
85
+ expect(eventify.all_events).to eq([1])
86
+ expect(eventify.all_events).to eq([1])
87
+ end
88
+
89
+ it "removes duplicate entries" do
90
+ event1 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
91
+ event2 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
92
+ expect(event1).to eq(event2)
93
+ allow(Eventify::Provider::Piletilevi).to receive_messages(fetch: [event1, event2])
94
+
95
+ eventify = Eventify.new
96
+ allow(eventify).to receive_messages(providers: [Eventify::Provider::Piletilevi])
97
+ expect(eventify.all_events).to eq([event1])
98
+ end
99
+ end
100
+
101
+ context "#providers" do
102
+ it "returns all providers" do
103
+ expected_providers = [
104
+ Eventify::Provider::Piletilevi,
105
+ Eventify::Provider::Livenation,
106
+ Eventify::Provider::ApolloKino
107
+ ]
108
+ expect(Eventify.new.providers).to eq(expected_providers)
109
+ end
110
+
111
+ it "allows to override" do
112
+ eventify = Eventify.new
113
+ eventify.providers = ["foo"]
114
+
115
+ expect(eventify.providers).to eq(["foo"])
116
+ end
117
+ end
118
+
119
+ context "#process_new_events" do
120
+ it "sends out e-mail for new events" do
121
+ new_events = [
122
+ Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org"),
123
+ Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
124
+ ]
125
+ configuration = double("configuration")
126
+ eventify = Eventify.new configuration
127
+ expect(eventify).to receive(:new_events).and_return(new_events)
128
+ expect(Eventify::Mail).to receive(:deliver).with(new_events, configuration)
129
+
130
+ eventify.process_new_events
131
+ end
132
+
133
+ it "does not send e-mail when no new events" do
134
+ eventify = Eventify.new
135
+ expect(eventify).to receive(:new_events).and_return([])
136
+ expect(Eventify::Mail).not_to receive(:deliver)
137
+
138
+ eventify.process_new_events
139
+ end
140
+
141
+ it "saves new events into database" do
142
+ new_events = [
143
+ Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org/1", date: Time.now),
144
+ Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org/2", date: Time.now)
145
+ ]
146
+ eventify = Eventify.new
147
+ expect(eventify).to receive(:new_events).and_return(new_events)
148
+ allow(Eventify::Mail).to receive(:deliver)
149
+
150
+ eventify.process_new_events
151
+
152
+ expect(Eventify::Database.events.size).to eq(2)
153
+ end
154
+ end
155
+ end
@@ -23,3 +23,10 @@ RSpec.configure do |config|
23
23
  Eventify::Database.instance_variable_set(:@sqlite, nil)
24
24
  end
25
25
  end
26
+
27
+ # monkey-patch StubSocket for backwards compatibility so that specs would pass
28
+ # on newer Rubies
29
+ class StubSocket
30
+ def close
31
+ end
32
+ end
@@ -0,0 +1,1021 @@
1
+ <!DOCTYPE html>
2
+
3
+
4
+
5
+
6
+
7
+ <!--[if lt IE 7]> <html class="no-js area-apollokinolounakeskus lt-ie9 lt-ie8 lt-ie7" lang="et"> <![endif]-->
8
+ <!--[if IE 7]> <html class="no-js area-apollokinolounakeskus lt-ie9 lt-ie8" lang="et"> <![endif]-->
9
+ <!--[if IE 8]> <html class="no-js area-apollokinolounakeskus lt-ie9" lang="et"> <![endif]-->
10
+ <!--[if gt IE 8]><!--[if gt IE 8]><!-->
11
+ <html class="no-js area-apollokinolounakeskus " lang="et">
12
+ <!--<![endif]-->
13
+
14
+ <head>
15
+
16
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
17
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
18
+ <!--string is baseUrl-->
19
+
20
+ <meta name="viewport" content="user-scalable=yes">
21
+
22
+
23
+ <title>Apollo Kino - Coming Soon</title>
24
+
25
+ <meta property="og:title" content="Apollo Kino - Coming Soon" />
26
+ <meta property="og:site_name" content="Apollo Kino" />
27
+ <meta name="description" content="" />
28
+ <meta name="og:description" content="" />
29
+
30
+
31
+
32
+ <!--T1 is baseUrl, T2 is ImageUrl-->
33
+
34
+ <link rel="shortcut icon" href="https://mcswebsites.blob.core.windows.net/apollokino-ee/images/favicon.ico" />
35
+ <link rel="icon" href="https://mcswebsites.blob.core.windows.net/apollokino-ee/images/favicon.png" type="image/png" />
36
+
37
+
38
+
39
+
40
+
41
+ <link href="/SharedAssets/Styles/libs/libs?v=RJhG73JCfz7_spg_7_-a4Or_2R2W9ecxp_MrKn0i3Hw1" rel="stylesheet"/>
42
+
43
+
44
+
45
+
46
+ <!--Render override style tags-->
47
+ <!--string is baseUrl-->
48
+ <link rel="stylesheet" type="text/css" href="/CustomAssets/apollokino-ee/Styles/new-style-V12.min.css?v=1" />
49
+ <link rel="stylesheet" type="text/css" href="/files/styles.css" />
50
+ <link rel="stylesheet" type="text/css" href="/CustomAssets/apollokino-ee/Styles/loyalty.css" />
51
+
52
+ <link href='https://fonts.googleapis.com/css?family=Fjalla+One|Open+Sans:400,300,300italic,400italic,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
53
+ <link href="https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap&subset=cyrillic,cyrillic-ext,latin-ext" rel="stylesheet">
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+ <script language="javascript" type="text/javascript">
67
+
68
+ var baseDomain = 'www.apollokino.ee';
69
+ var baseUrl = '';
70
+ var baseLangUrl = '/eng';
71
+
72
+
73
+ </script>
74
+
75
+ <!--Modernizer must be fist script-->
76
+ <script src="/Modernizer?v=inCVuEFe6J4Q07A0AcRsbJic_UE5MwpRMNGcOtk94TE1"></script>
77
+
78
+
79
+ <script src="/BundledScripts/BeforePage?v=kbEyu-PU3xnyeu40VPLqfh3zwLPryMC_NEYllo9ct7c1"></script>
80
+
81
+
82
+
83
+ <meta name="theme-color" content="#ee7f01">
84
+ <style>
85
+ .product .list-item-desc small {
86
+ font-size:50%;
87
+ }
88
+ .block-show-info-series {
89
+ color: red;
90
+ font-weight:bold;
91
+ }
92
+ .disabledUntilSelect {
93
+ opacity:.4;
94
+ }
95
+ .disable-cover {
96
+ background-color:#eee;
97
+ }
98
+ .main-footer-nav {
99
+ max-height: 400px;
100
+ }
101
+ .dropdown > .dropdown-menu {
102
+ z-index:9999;
103
+ }
104
+ #banner-carousel-events {
105
+ height: 250px;
106
+ float:left;
107
+ top: 0;
108
+ visibility: hidden;
109
+ }
110
+ #blueimp-gallery-carousel-events {
111
+ min-height: 250px;
112
+ }
113
+ .product .list-item-desc small {
114
+ font-size: 90%;
115
+ }
116
+ body {
117
+ display: table;
118
+ }
119
+
120
+ </style>
121
+ <meta name="google-site-verification" content="eARaZ1WhWilc_XRk7pCEolJly4dzKnzHWOCInkW2ZD8" />
122
+ <meta name="apple-itunes-app" content="app-id=1027388408">
123
+ <meta name="p:domain_verify" content="821cfb92fddf3d66599aa1f183a725c3"/>
124
+ <script>
125
+ if (window.location.hostname == 'apollokino.ee') {
126
+ window.location.href = window.location.protocol + '//www.apollokino.ee' + window.location.pathname + window.location.search + window.location.hash;
127
+ }
128
+ </script>
129
+ <script>if(window.location.protocol != 'https:') {location.href = location.href.replace("http://", "https://");}</script>
130
+ <script>
131
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
132
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
133
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
134
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
135
+ ga('create', 'UA-55821265-1', 'auto');
136
+ ga('send', 'pageview');
137
+ </script>
138
+ <script>
139
+ window.onload = window.setInterval(function () {
140
+ var sisene = document.getElementById('vegasLogOn');
141
+ if(sisene != null){
142
+ var link = document.getElementById('vegasLink');
143
+ var logoutEnabled = document.getElementById('logOutForm');
144
+
145
+ if(logoutEnabled){
146
+ link.style.display = 'block';
147
+ sisene.style.display = 'none';
148
+ }
149
+ else{
150
+ link.style.display = 'none';
151
+ sisene.style.display = 'block';
152
+ }
153
+ }
154
+ }, 100);
155
+ </script>
156
+
157
+ <script>(function(d, s, id) {
158
+ var js, fjs = d.getElementsByTagName(s)[0];
159
+ if (d.getElementById(id)) return;
160
+ js = d.createElement(s); js.id = id;
161
+ js.src = "//connect.facebook.net/et_EE/all.js#xfbml=1&version=v2.4";
162
+ fjs.parentNode.insertBefore(js, fjs);
163
+ }(document, 'script', 'facebook-jssdk'));</script>
164
+
165
+ <style>
166
+ /*#wrapper-for-content-bg{
167
+ background: url('//filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/WebBackgrounds/AK_1920x1600_04012018.png') center top no-repeat !important;
168
+ }
169
+ #wrapper-for-body-bg{
170
+ background: #030303;
171
+ }*/
172
+ #wrapper-for-body-bg{
173
+ background: url('//filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/WebBackgrounds/AK_1920x1600_04012018.png') center 236px no-repeat !important;
174
+ }
175
+ body {
176
+ background-color: #000000 !important;
177
+ }
178
+
179
+ </style>
180
+ <!-- Facebook Pixel Code -->
181
+ <script>
182
+ !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
183
+ n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
184
+ n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
185
+ t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
186
+ document,'script','//connect.facebook.net/en_US/fbevents.js');
187
+ var myPathName = window.location.pathname;
188
+
189
+ fbq('init', '777300408983656');
190
+ fbq('track', "PageView");
191
+ if(myPathName.includes("/event/")){
192
+ fbq('track', "ViewContent");
193
+ }
194
+ </script>
195
+ <noscript><img height="1" width="1" style="display:none"
196
+ src="https://www.facebook.com/tr?id=777300408983656&ev=PageView&noscript=1"
197
+ /></noscript>
198
+ <!-- End Facebook Pixel Code -->
199
+
200
+ <!-- start Mixpanel --><script type="text/javascript">(function(e,a){if(!a.__SV){var b=window;try{var c,l,i,j=b.location,g=j.hash;c=function(a,b){return(l=a.match(RegExp(b+"=([^&]*)")))?l[1]:null};g&&c(g,"state")&&(i=JSON.parse(decodeURIComponent(c(g,"state"))),"mpeditor"===i.action&&(b.sessionStorage.setItem("_mpcehash",g),history.replaceState(i.desiredHash||"",e.title,j.pathname+j.search)))}catch(m){}var k,h;window.mixpanel=a;a._i=[];a.init=function(b,c,f){function e(b,a){var c=a.split(".");2==c.length&&(b=b[c[0]],a=c[1]);b[a]=function(){b.push([a].concat(Array.prototype.slice.call(arguments,
201
+ 0)))}}var d=a;"undefined"!==typeof f?d=a[f]=[]:f="mixpanel";d.people=d.people||[];d.toString=function(b){var a="mixpanel";"mixpanel"!==f&&(a+="."+f);b||(a+=" (stub)");return a};d.people.toString=function(){return d.toString(1)+".people (stub)"};k="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
202
+ for(h=0;h<k.length;h++)e(d,k[h]);a._i.push([b,c,f])};a.__SV=1.2;b=e.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";c=e.getElementsByTagName("script")[0];c.parentNode.insertBefore(b,c)}})(document,window.mixpanel||[]);
203
+ mixpanel.init("d993bb1e9219f80cc937564264fe0009");</script><!-- end Mixpanel -->
204
+ <script src="//filmdistribution.blob.core.windows.net/apollokino-ee/TempScripts/acmi.js" async='async'></script>
205
+
206
+ <!-- Google Tag Manager -->
207
+ <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
208
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
209
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
210
+ 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
211
+ })(window,document,'script','dataLayer','GTM-58RSKK3');</script>
212
+ <!-- End Google Tag Manager -->
213
+
214
+
215
+
216
+ </head>
217
+
218
+ <body>
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+
227
+
228
+ <div id="wrapper-for-fixed-bg"></div>
229
+ <!--[if lt IE 8]>
230
+ <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a target="_blank" href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
231
+ <![endif]-->
232
+ <noscript>
233
+ <p class="browsehappy no-js-message"><strong>Javascript</strong> in your browser is not enabled. Please enable <strong>Javascript</strong> to improve your experience.</p>
234
+ </noscript>
235
+
236
+
237
+
238
+
239
+ <div id="wrapper-for-body-bg">
240
+ <div id="wrapper-for-footer-bg">
241
+ <div id="wrapper-for-header-bg">
242
+
243
+
244
+
245
+
246
+ <!-- Fixed navbar navbar-fixed-top-->
247
+ <header id="main-header">
248
+ <div class="container-fluid">
249
+
250
+ <div class="container ">
251
+ <div id="main-header-lang-row">
252
+ <div class="row">
253
+ <div class="col-xs-6">
254
+
255
+ <div class="h-container content-article">
256
+ <ul class="nav navbar-nav" id="store-menu">
257
+ <li><a class="store" href="http://www.apollo.ee/en"><span> E-STORE </span> </a></li>
258
+ <li class="active"><a class="cinema" href="/"><span> CINEMA </span> </a></li>
259
+ </ul>
260
+ </div>
261
+ </div>
262
+ <div class="col-xs-6 ">
263
+ <div class="navbar-inverse pull-right">
264
+
265
+ <ul id="language-menu" class="nav navbar-nav">
266
+ <li class="lang-item ">
267
+
268
+ <a href="/soon/" >
269
+ <span>
270
+ est
271
+ </span>
272
+ </a>
273
+ </li>
274
+ <li class="lang-item ">
275
+
276
+ <a href="/rus/soon/" >
277
+ <span>
278
+ rus
279
+ </span>
280
+ </a>
281
+ </li>
282
+ <li class="lang-item active">
283
+
284
+ <a href="/eng/soon/" >
285
+ <span>
286
+ eng
287
+ </span>
288
+ </a>
289
+ </li>
290
+ </ul>
291
+ </div>
292
+ <div>
293
+
294
+ <div class="h-container content-article">
295
+ <p style="text-align: right; margin-top:10px"><a href="/eng/info/club">Apollo Club</a>&nbsp;&nbsp;|&nbsp;&nbsp;</p>
296
+ </div>
297
+ </div>
298
+
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ <div class="container ">
305
+ <div id="main-header-logo-row">
306
+ <div class="row">
307
+ <div id="main-header-logo-left" class="col-xs-6">
308
+ <div id="header-logo-container" class="pull-left">
309
+ <a href="/">
310
+
311
+ <img id="header-logo" src="https://mcswebsites.blob.core.windows.net/apollokino-ee/images/header-logo.png" title="Apollo Kino" />
312
+ </a>
313
+ </div>
314
+
315
+
316
+ </div>
317
+ <div id="main-header-logo-row-right" class="col-xs-6 clarfix">
318
+ <div class="pull-right">
319
+ <div class="clearfix">
320
+ <div class="dropdown">
321
+ <button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown">
322
+ <span class="hidden-xs hidden-sm">
323
+ Tartu - L&#245;unakeskus
324
+ <span class="caret"></span>
325
+ </span>
326
+ <span class="visible-xs visible-sm enableTooltip" data-toggle="tooltip" data-placement="bottom" title="Tartu - L&#245;unakeskus">
327
+ <span class="glyphicon glyphicon-map-marker"></span>
328
+ </span>
329
+ </button>
330
+ <ul class="dropdown-menu dropdown-menu-right" role="menu">
331
+ <li role="presentation" class="active"><a role="menuitem" tabindex="-1" href="/eng/soon/?TheatreArea=1011">Tartu - L&#245;unakeskus</a></li>
332
+ <li role="presentation" class=""><a role="menuitem" tabindex="-1" href="/eng/soon/?TheatreArea=1002">P&#228;rnu - P&#228;rnu Keskus</a></li>
333
+ </ul>
334
+ </div>
335
+ </div>
336
+ </div>
337
+ <div class="pull-left">
338
+ <div id="global-search-container">
339
+ <form method="get" action="/eng/search/" >
340
+
341
+ <div class="input-group">
342
+ <input class="form-control" name="query" placeholder="Search" type="text" />
343
+ <div class="input-group-btn">
344
+ <button type="submit" class="btn btn-primary">
345
+ <span class="glyphicon glyphicon-search"></span>
346
+ </button>
347
+ </div>
348
+ </div>
349
+
350
+ </form>
351
+ </div>
352
+
353
+ </div>
354
+ </div>
355
+ </div>
356
+ </div>
357
+ <div id="main-header-user-row">
358
+ <hr />
359
+ <div class="row">
360
+ <div class="col-xs-8">
361
+ <div id="apollo-header-bottom-contentBlock">
362
+
363
+ <div class="h-container content-article">
364
+ <p>&nbsp;<a href="http://www.apollo.ee/en/raamatud/ingliskeelsed?___from_store=en" target="_blank">English books @ Apollo e-Store</a></p>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ <div class="col-xs-4">
369
+ <div id="block-LoggedIn-LoggedOut" class="navbar-right">
370
+
371
+ <div id="block-loginButton">
372
+ <p>
373
+ <a href="/eng/mypage/logon/">
374
+ <span>
375
+ Log In
376
+ </span>
377
+ </a>
378
+ |
379
+ <a href="/eng/mypage/register/">
380
+ <span>
381
+ Join
382
+ </span>
383
+ </a>
384
+ </p>
385
+ </div>
386
+ </div>
387
+ </div>
388
+
389
+ </div>
390
+ </div>
391
+ <div id="main-header-menu-row">
392
+ <div id="apollo-header-menu" class="clearfix">
393
+ <div class="row">
394
+ <div class="col-xs-12">
395
+ <div class="clearfix">
396
+
397
+ <ul class="nav navbar-nav navbar-main-menu">
398
+
399
+ <li class=" SubMenuNode_1467"><a href="/eng/home" target="">Now Showing</a></li>
400
+ <li class=" active is-current SubMenuNode_1468"><a href="/eng/soon" target="">Coming Soon</a></li>
401
+ <li class=" SubMenuNode_1528 dropdown ">
402
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown">Cinemas <b class="caret"></b></a>
403
+ <div class="dropdown-menu">
404
+ <ul class="dropdown-menu">
405
+ <li class="dropdown-menu-step1 SubMenuNode_1591 beginGroup "><a>Apollo Kino Pärnu</a></li>
406
+ <li class="dropdown-menu-step1 SubMenuNode_1475 "><a href="/eng/cinemas/akp-info" target="">Information</a></li>
407
+ </ul>
408
+
409
+ </div>
410
+ </li>
411
+ <li class=" SubMenuNode_1592 dropdown ">
412
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown">Info <b class="caret"></b></a>
413
+ <div class="dropdown-menu">
414
+ <ul class="dropdown-menu">
415
+ <li class="dropdown-menu-step1 SubMenuNode_1595 "><a href="/eng/MyPage/LogOn" target="">Log In</a></li>
416
+ </ul>
417
+ <ul class="dropdown-menu">
418
+ <li class="dropdown-menu-step1 SubMenuNode_1593 beginGroup "><a>Apollo Club</a></li>
419
+ <li class="dropdown-menu-step1 SubMenuNode_1594 "><a href="/eng/MyPage/register" target="">Join</a></li>
420
+ <li class="dropdown-menu-step1 SubMenuNode_1596 "><a href="/eng/info/club" target="">What is Apollo Club</a></li>
421
+ <li class="dropdown-menu-step1 SubMenuNode_1597 "><a href="/eng/info/rules" target="">Rules</a></li>
422
+ <li class="dropdown-menu-step1 SubMenuNode_1598 "><a href="/eng/info/help" target="">Help</a></li>
423
+ </ul>
424
+
425
+ </div>
426
+ </li>
427
+ <li class=" SubMenuNode_1599"><a href="/eng/info/club" target="">Apollo Club</a></li>
428
+ </ul>
429
+ </div>
430
+ </div>
431
+
432
+ </div>
433
+ </div>
434
+ </div>
435
+
436
+ <div id="film-icon"></div>
437
+ </div>
438
+
439
+ </header>
440
+
441
+
442
+
443
+
444
+ <div id="wrapper-for-content-bg">
445
+ <div id="wrapper-for-content-bg-still"></div>
446
+
447
+ <div id="js-to_mobile_top-placeholder" class="container"></div>
448
+
449
+
450
+
451
+
452
+
453
+ <div id="layout-container" class="container">
454
+ <div id="layout-default" class="layout row">
455
+ <div id="layout-left" class="col-md-8 col-lg-9 with-right-side ">
456
+ <div class="panel panel-default layout-section-panel viewname-ContentBlockComingSoon">
457
+ <div class="panel-body">
458
+ <div class="ContentBlockComingSoon">
459
+ <div class="strech-bg"></div>
460
+ <div id="UpdateTarget-UserControlEventBlockList_1">
461
+ <div class="info-and-top-container">
462
+ <div class="EventBlockList_Top">
463
+ <form action="/eng/soon/" method="post" onclick="Sys.Mvc.AsyncForm.handleClick(this, new Sys.UI.DomEvent(event));" onsubmit="Sys.Mvc.AsyncForm.handleSubmit(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace, updateTargetId: &#39;UpdateTarget-UserControlEventBlockList_1&#39;, url: &#39;/eng/soon&#39;, onBegin: Function.createDelegate(this, onAjaxBegin), onComplete: Function.createDelegate(this, onAjaxComplete) });">
464
+ <input class="orderByInput" type="hidden" name="orderBy" value="releaseDate" />
465
+ <input class="orderInput" type="hidden" name="order" value="asc" />
466
+ <div class="btn-toolbar event-filters" role="toolbar">
467
+ <div class="filter-icon-container ">
468
+ <a class="glyphicon glyphicon-sort-by-attributes-alt order-icon" onclick="$(this).closest('form').find('.orderInput').val('desc'); $(this).closest('form').submit(); return false;"></a>
469
+ </div>
470
+ <div class="filter-selects-container">
471
+ <div class="btn-group">
472
+ <a class="btn btn-link" onclick="$(this).closest('form').find('.orderByInput').val('alphabetical'); $(this).closest('form').submit(); return false;">
473
+ <span>Alphabetical</span>
474
+ </a>
475
+ <a class="btn btn-link" onclick="$(this).closest('form').find('.orderByInput').val('showTime'); $(this).closest('form').submit(); return false;">
476
+ <span>Show Time</span>
477
+ </a>
478
+ <a class="btn btn-link active" onclick="$(this).closest('form').find('.orderByInput').val('releaseDate'); $(this).closest('form').submit(); return false;">
479
+ <span>Release Date</span>
480
+ </a>
481
+ <a class="btn btn-link" onclick="$(this).closest('form').find('.orderByInput').val('userRating'); $(this).closest('form').submit(); return false;">
482
+ <span>User Rating</span>
483
+ </a>
484
+ </div>
485
+ </div>
486
+ </div>
487
+ </form>
488
+ </div>
489
+ </div>
490
+ <div class="updateClear classfilter-parent">
491
+ <div class="clearfix EventList-container">
492
+ <div class="panel panel-default classfilter-item classfilter_times_showstart_evening classfilter_times_showstart_afternoon classfilter_genres_genre_1246 classfilter_genres_genre_1254 classfilter_genres_genre_1255 classfilter_subtitles_subtitle_1 classfilter_eventratings_eventrating_1064 classfilter_seatcategories_seatcategory_1021 classfilter_seatcategories_seatcategory_1022 classfilter_seatcategories_seatcategory_1020 classfilter_seatcategories_seatcategory_1019 classfilter_screening_screening_comingsoon classfilter_screening_screening_nowintheatres">
493
+ <div class="panel-body">
494
+ <div class="row ">
495
+ <div class="col-xs-2 no-right-padding">
496
+ <div class="list-item-thumb event-item-thumb image-cover-parent">
497
+ <a href="/eng/event/4127/title/v%C3%B5imlemisklubi_janika_talvekontsert/" class="">
498
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7474/portrait_medium/Black%20Movie%20Night%20Invitations%20Poster-B1.png" class="img-responsive-full">
499
+ <div class="image-cover"></div>
500
+ </a>
501
+ </div>
502
+ </div>
503
+ <div class="col-xs-10">
504
+ <div class="row">
505
+ <div class="col-sm-8 event-item-desc list-item-desc">
506
+ <h2 class="list-item-desc-title no-top-margin">
507
+ <a href="/eng/event/4127/title/v%C3%B5imlemisklubi_janika_talvekontsert/">V&#245;imlemisklubi Janika TALVEKONTSERT</a>
508
+ </h2>
509
+ <p class="event-releaseDate isSellable inFuture">Release Date:<b>31.01.2021</b></p>
510
+ </div>
511
+ <div class="col-sm-4 list-item-actions">
512
+ <!--dispaly in mobile-->
513
+ <div class="btn-group visible-xs">
514
+ <a href="/eng/websales/movie/4127/" class="btn btn-primary"><span>Buy Tickets</span></a>
515
+ </div>
516
+ <!--display in desktop-->
517
+ <div class="row hidden-xs">
518
+ <div class="col-xs-12 btn-group-vertical">
519
+ <a href="/eng/websales/movie/4127/" class="btn btn-primary"><span>Buy Tickets</span></a>
520
+ </div>
521
+ </div>
522
+ </div>
523
+ </div>
524
+ </div>
525
+ </div>
526
+ </div>
527
+ </div>
528
+ <div class="panel panel-default classfilter-item classfilter_genres_genre_1232 classfilter_genres_genre_1233 classfilter_genres_genre_1237 classfilter_eventratings_eventrating_1071 classfilter_screening_screening_comingsoon">
529
+ <div class="panel-body">
530
+ <div class="row ">
531
+ <div class="col-xs-2 no-right-padding">
532
+ <div class="list-item-thumb event-item-thumb image-cover-parent">
533
+ <a href="/eng/event/4064/title/jurassic_world_dominion/" class="">
534
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7399/poster_medium/jurassic_world_dominion_xlg.jpg" class="img-responsive-full">
535
+ <div class="image-cover"></div>
536
+ </a>
537
+ </div>
538
+ </div>
539
+ <div class="col-xs-10">
540
+ <div class="row">
541
+ <div class="col-sm-8 event-item-desc list-item-desc">
542
+ <h2 class="list-item-desc-title no-top-margin">
543
+ <a href="/eng/event/4064/title/jurassic_world_dominion/">Jurassic World: Dominion</a>
544
+ <small> <span class="productionYear">(2021)</span></small>
545
+ </h2>
546
+ <p class="genre-names">Genres: <b>Action, Science Fiction, Adventure</b></p>
547
+ <p class="event-releaseDate inFuture">Release Date:<b>10.06.2022</b></p>
548
+ </div>
549
+ <div class="col-sm-4 list-item-actions">
550
+ <!--dispaly in mobile-->
551
+ <div class="btn-group visible-xs">
552
+ </div>
553
+ <!--display in desktop-->
554
+ <div class="row hidden-xs">
555
+ <div class="col-xs-12 btn-group-vertical">
556
+ </div>
557
+ </div>
558
+ </div>
559
+ </div>
560
+ </div>
561
+ </div>
562
+ </div>
563
+ </div>
564
+ </div>
565
+ </div>
566
+ </div>
567
+ </div>
568
+ </div>
569
+ </div>
570
+ </div>
571
+ <div id="layout-right" class="col-md-4 col-lg-3">
572
+
573
+ <div class="panel panel-default layout-section-panel viewname-ContentBlockTopEvents">
574
+ <div class="panel-body">
575
+ <div class="panel panel-primary panel-top-events">
576
+ <div class="panel-heading">
577
+ <h3 class="panel-title">Most Popular</h3>
578
+ </div>
579
+ <div class="panel-body no-padding">
580
+ <ul class="list-group">
581
+ <li class="list-group-item">
582
+ <div class="row">
583
+ <div class="col-xs-4">
584
+ <div class="event-item-thumb image-cover-parent">
585
+ <a href="/eng/event/4127/title/v%C3%B5imlemisklubi_janika_talvekontsert/">
586
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7474/portrait_medium/Black%20Movie%20Night%20Invitations%20Poster-B1.png" class="img-responsive" />
587
+ <div class="image-cover"></div>
588
+ </a>
589
+ </div>
590
+ </div>
591
+ <div class="col-xs-1 no-padding badge-container">
592
+ <span class="badge">1</span>
593
+ </div>
594
+ <div class="col-xs-7">
595
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4127/title/v%C3%B5imlemisklubi_janika_talvekontsert/">V&#245;imlemisklubi Janika TALVEKONTSERT</a></h4>
596
+ <p class="event-originalName"><small></small></p>
597
+ <a href="/eng/websales/movie/4127/" class="btn btn-default btn-sm">Buy Tickets</a>
598
+ </div>
599
+ </div>
600
+ </li>
601
+ <li class="list-group-item">
602
+ <div class="row">
603
+ <div class="col-xs-4">
604
+ <div class="event-item-thumb image-cover-parent">
605
+ <a href="/eng/event/4022/title/soul/">
606
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7351/portrait_medium/Soul_1350x2000.jpg" class="img-responsive" />
607
+ <div class="image-cover"></div>
608
+ </a>
609
+ </div>
610
+ </div>
611
+ <div class="col-xs-1 no-padding badge-container">
612
+ <span class="badge">2</span>
613
+ </div>
614
+ <div class="col-xs-7">
615
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4022/title/soul/">Soul</a></h4>
616
+ <p class="event-originalName"><small></small></p>
617
+ <a href="/eng/websales/movie/4022/" class="btn btn-default btn-sm">Buy Tickets</a>
618
+ </div>
619
+ </div>
620
+ </li>
621
+ <li class="list-group-item">
622
+ <div class="row">
623
+ <div class="col-xs-4">
624
+ <div class="event-item-thumb image-cover-parent">
625
+ <a href="/eng/event/4009/title/palm_springs/">
626
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7337/portrait_medium/PalmSprings_Apollo_Digital-Poster_1080x1350_EST_2.jpg" class="img-responsive" />
627
+ <div class="image-cover"></div>
628
+ </a>
629
+ </div>
630
+ </div>
631
+ <div class="col-xs-1 no-padding badge-container">
632
+ <span class="badge">3</span>
633
+ </div>
634
+ <div class="col-xs-7">
635
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4009/title/palm_springs/">Palm Springs</a></h4>
636
+ <p class="event-originalName"><small></small></p>
637
+ <a href="/eng/websales/movie/4009/" class="btn btn-default btn-sm">Buy Tickets</a>
638
+ </div>
639
+ </div>
640
+ </li>
641
+ <li class="list-group-item">
642
+ <div class="row">
643
+ <div class="col-xs-4">
644
+ <div class="event-item-thumb image-cover-parent">
645
+ <a href="/eng/event/3755/title/wonder_woman_1984/">
646
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7036/portrait_medium/WonderWoman1984_B1_EE_preview.jpg" class="img-responsive" />
647
+ <div class="image-cover"></div>
648
+ </a>
649
+ </div>
650
+ </div>
651
+ <div class="col-xs-1 no-padding badge-container">
652
+ <span class="badge">4</span>
653
+ </div>
654
+ <div class="col-xs-7">
655
+ <h4 class="no-top-margin event-name"><a href="/eng/event/3755/title/wonder_woman_1984/">Wonder Woman 1984</a></h4>
656
+ <p class="event-originalName"><small></small></p>
657
+ <a href="/eng/websales/movie/3755/" class="btn btn-default btn-sm">Buy Tickets</a>
658
+ </div>
659
+ </div>
660
+ </li>
661
+ <li class="list-group-item">
662
+ <div class="row">
663
+ <div class="col-xs-4">
664
+ <div class="event-item-thumb image-cover-parent">
665
+ <a href="/eng/event/4111/title/fire/">
666
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7454/portrait_medium/Fire_707x1000_EE_2.jpg" class="img-responsive" />
667
+ <div class="image-cover"></div>
668
+ </a>
669
+ </div>
670
+ </div>
671
+ <div class="col-xs-1 no-padding badge-container">
672
+ <span class="badge">5</span>
673
+ </div>
674
+ <div class="col-xs-7">
675
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4111/title/fire/">Fire</a></h4>
676
+ <p class="event-originalName"><small>Огонь</small></p>
677
+ <a href="/eng/websales/movie/4111/" class="btn btn-default btn-sm">Buy Tickets</a>
678
+ </div>
679
+ </div>
680
+ </li>
681
+ <li class="list-group-item">
682
+ <div class="row">
683
+ <div class="col-xs-4">
684
+ <div class="event-item-thumb image-cover-parent">
685
+ <a href="/eng/event/4027/title/pets_united/">
686
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7356/portrait_medium/FC_768x1097.jpg" class="img-responsive" />
687
+ <div class="image-cover"></div>
688
+ </a>
689
+ </div>
690
+ </div>
691
+ <div class="col-xs-1 no-padding badge-container">
692
+ <span class="badge">6</span>
693
+ </div>
694
+ <div class="col-xs-7">
695
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4027/title/pets_united/">Pets united</a></h4>
696
+ <p class="event-originalName"><small></small></p>
697
+ </div>
698
+ </div>
699
+ </li>
700
+ <li class="list-group-item">
701
+ <div class="row">
702
+ <div class="col-xs-4">
703
+ <div class="event-item-thumb image-cover-parent">
704
+ <a href="/eng/event/4078/title/superintelligence/">
705
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7413/poster_medium/superintellekt.jpg" class="img-responsive" />
706
+ <div class="image-cover"></div>
707
+ </a>
708
+ </div>
709
+ </div>
710
+ <div class="col-xs-1 no-padding badge-container">
711
+ <span class="badge">7</span>
712
+ </div>
713
+ <div class="col-xs-7">
714
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4078/title/superintelligence/">Superintelligence</a></h4>
715
+ <p class="event-originalName"><small></small></p>
716
+ <a href="/eng/websales/movie/4078/" class="btn btn-default btn-sm">Buy Tickets</a>
717
+ </div>
718
+ </div>
719
+ </li>
720
+ <li class="list-group-item">
721
+ <div class="row">
722
+ <div class="col-xs-4">
723
+ <div class="event-item-thumb image-cover-parent">
724
+ <a href="/eng/event/3959/title/run/">
725
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7279/portrait_medium/Run_B1_EE_Preview.jpg" class="img-responsive" />
726
+ <div class="image-cover"></div>
727
+ </a>
728
+ </div>
729
+ </div>
730
+ <div class="col-xs-1 no-padding badge-container">
731
+ <span class="badge">8</span>
732
+ </div>
733
+ <div class="col-xs-7">
734
+ <h4 class="no-top-margin event-name"><a href="/eng/event/3959/title/run/">Run</a></h4>
735
+ <p class="event-originalName"><small></small></p>
736
+ <a href="/eng/websales/movie/3959/" class="btn btn-default btn-sm">Buy Tickets</a>
737
+ </div>
738
+ </div>
739
+ </li>
740
+ <li class="list-group-item">
741
+ <div class="row">
742
+ <div class="col-xs-4">
743
+ <div class="event-item-thumb image-cover-parent">
744
+ <a href="/eng/event/4057/title/dragon_rider/">
745
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7391/portrait_medium/FC_768x1097_2.jpg" class="img-responsive" />
746
+ <div class="image-cover"></div>
747
+ </a>
748
+ </div>
749
+ </div>
750
+ <div class="col-xs-1 no-padding badge-container">
751
+ <span class="badge">9</span>
752
+ </div>
753
+ <div class="col-xs-7">
754
+ <h4 class="no-top-margin event-name"><a href="/eng/event/4057/title/dragon_rider/">Dragon Rider</a></h4>
755
+ <p class="event-originalName"><small></small></p>
756
+ <a href="/eng/websales/movie/4057/" class="btn btn-default btn-sm">Buy Tickets</a>
757
+ </div>
758
+ </div>
759
+ </li>
760
+ <li class="list-group-item">
761
+ <div class="row">
762
+ <div class="col-xs-4">
763
+ <div class="event-item-thumb image-cover-parent">
764
+ <a href="/eng/event/3920/title/christmas_in_the_jungle/">
765
+ <img src="http://mcswebsites.blob.core.windows.net/1013/Event_7224/portrait_medium/ChristmasInTheJungle_B1_EE_Preview.jpg" class="img-responsive" />
766
+ <div class="image-cover"></div>
767
+ </a>
768
+ </div>
769
+ </div>
770
+ <div class="col-xs-1 no-padding badge-container">
771
+ <span class="badge">10</span>
772
+ </div>
773
+ <div class="col-xs-7">
774
+ <h4 class="no-top-margin event-name"><a href="/eng/event/3920/title/christmas_in_the_jungle/">Christmas in the Jungle</a></h4>
775
+ <p class="event-originalName"><small>J&#245;ulud džunglis</small></p>
776
+ <a href="/eng/websales/movie/3920/" class="btn btn-default btn-sm">Buy Tickets</a>
777
+ </div>
778
+ </div>
779
+ </li>
780
+ </ul>
781
+ </div>
782
+ </div>
783
+ </div>
784
+ </div>
785
+ </div>
786
+ </div>
787
+ </div>
788
+
789
+
790
+
791
+ <!--Helper to get footer to bottom on small page: js-footer-pusher *use with window resize code only* and class footer-to-bottom-->
792
+ <footer id="main-footer" class="navbar-inverse markus-logo-padding-bottom">
793
+ <div >
794
+ <div class="main-footer-nav container">
795
+ <nav>
796
+
797
+ <div class="h-container content-article">
798
+ <div class="col-xs-4 apollo-footer-col">
799
+ <div class="row">
800
+ <div class="col-xs-10">
801
+ <ul class="list-unstyled">
802
+ <li><strong><a charset="http://schema.org/MovieTheater" href="/eng/cinemas/akm-info" target="_self" title="Apollo Kino Mustamäe" type="MovieTheater">Apollo Kino Mustam&auml;e</a></strong></li>
803
+ <li><span style="font-size:11px;"><a href="https://goo.gl/maps/76Zv5U4gxjC2" target="_blank"><img alt="Apollo Kino Mustamäe on Google Maps" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/MapMarker-15.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://goo.gl/maps/76Zv5U4gxjC2" target="_blank">Mustam&auml;e Keskus | A.H.Tammsaare tee 104a, Tallinn</a></span></li>
804
+ <li><strong><strong><a href="https://www.facebook.com/ApolloKinoMustamae/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-64.png" style="font-size: 11px; width: 18px; height: 18px;" /></a><span style="font-size: 11px;">&nbsp;</span></strong></strong><span style="font-size: 11px;"><a href="https://www.facebook.com/ApolloKinoMustamae/" target="_blank">Facebook</a> | </span><strong><strong><a href="https://m.me/ApolloKinoMustamae/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-Messenger-48.png" style="width: 15px; height: 15px;" /></a>&nbsp;</strong></strong><span style="font-size: 11px;"><a href="https://m.me/ApolloKinoMustamae/">Send Message</a></span></li>
805
+ <li>&nbsp;</li>
806
+ <li><strong><a href="/eng/cinemas/aks-info" target="_self">Apollo Kino Solaris</a></strong></li>
807
+ <li><span style="font-size:11px;"><a href="https://goo.gl/maps/9EHC6geMbXL2" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px; font-size: 11px;" target="_blank"><img alt="Apollo Kino Mustamäe on Google Maps" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/MapMarker-15.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://goo.gl/maps/9EHC6geMbXL2" target="_blank">Solaris Keskus |&nbsp;Estonia pst 9, Tallinn</a></span></li>
808
+ <li><strong><strong><strong><strong><a href="https://www.facebook.com/SolarisKino" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-64.png" style="font-size: 11px; width: 18px; height: 18px;" /></a><span style="font-size: 11px;">&nbsp;</span></strong></strong></strong></strong><span style="font-size: 11px;"><a href="https://www.facebook.com/SolarisKino" target="_blank">Facebook</a> |&nbsp;</span><strong><strong><strong><a href="https://m.me/SolarisKino/" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px;" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-Messenger-48.png" style="width: 15px; height: 15px;" /></a>&nbsp;</strong></strong></strong><a href="https://m.me/SolarisKino/" target="_blank"><span style="font-size: 11px;">Send Message</span></a></li>
809
+ <li>&nbsp;</li>
810
+ <li><b><a href="/eng/cinemas/akl-info" target="_self">Apollo Kino L&otilde;unakeskus</a></b></li>
811
+ <!--<li><a href="/cinemas/akm-prices">Piletihinnad</a></li>-->
812
+ <li><span style="font-size:11px;"><a href="https://goo.gl/maps/EoW31Rf3cVP2" target="_blank"><img alt="Apollo Kino Lõunakeskus on Google Maps" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/MapMarker-15.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://goo.gl/maps/EoW31Rf3cVP2" target="_blank">L&otilde;unakeskus |&nbsp;Ringtee 75, Tartu</a></span></li>
813
+ <li><b><b><strong></strong></b></b><a href="https://www.facebook.com/apollokinotartu/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-64.png" style="font-size: 11px; width: 18px; height: 18px;" /></a><span style="font-size: 11px;">&nbsp;</span><span style="font-size: 11px;"><a href="https://www.facebook.com/apollokinotartu/" target="_blank">Facebook</a> |&nbsp;</span><b><b><strong><a href="https://m.me/apollokinotartu/" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px;" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-Messenger-48.png" style="width: 15px; height: 15px;" /></a>&nbsp;</strong></b></b><a href="https://m.me/apollokinotartu/" target="_blank"><span style="font-size: 11px;">Send Message</span></a></li>
814
+ <li>&nbsp;</li>
815
+ <li><strong><a href="/eng/cinemas/akp-info" target="_self">Apollo Kino P&auml;rnu</a></strong></li>
816
+ <li><span style="font-size:11px;"><a href="https://goo.gl/maps/N6f4H8GjTZL2" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px; font-size: 11px;" target="_blank"><img alt="Apollo Kino Pärnu on Google Maps" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/MapMarker-15.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://goo.gl/maps/N6f4H8GjTZL2" target="_blank">P&auml;rnu Keskus | Lai 5, P&auml;rnu</a></span></li>
817
+ <li><strong><b><strong></strong></b></strong><a href="https://www.facebook.com/ApolloKinoParnu" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-64.png" style="font-size: 11px; width: 18px; height: 18px;" /></a><span style="font-size: 11px;">&nbsp;</span><span style="font-size: 11px;"><a href="https://www.facebook.com/ApolloKinoParnu" target="_blank">Facebook</a> |&nbsp;</span><strong><b><strong><a href="https://m.me/ApolloKinoParnu/" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px;" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-Messenger-48.png" style="width: 15px; height: 15px;" /></a>&nbsp;</strong></b></strong><a href="https://m.me/ApolloKinoParnu/" target="_blank"><span style="font-size: 11px;">Send Message</span></a></li>
818
+ <li>&nbsp;</li>
819
+ <li><b><a href="/eng/cinemas/aka-info" target="_self">Apollo Kino Astri</a></b></li>
820
+ <li><span style="font-size:11px;"><a href="https://goo.gl/maps/e6skpQfG7VA2" style="font-size: 11px;" target="_blank"><img alt="Apollo Kino Astri on Google Maps" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/MapMarker-15.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://goo.gl/maps/e6skpQfG7VA2" target="_blank">Astri Keskus |&nbsp;Tallinna mnt 41, Narva</a></span></li>
821
+ <li><b><b><strong></strong></b></b><a href="https://www.facebook.com/ApolloKinoAstri/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-64.png" style="font-size: 11px; width: 18px; height: 18px;" /></a><span style="font-size: 11px;">&nbsp;</span><span style="font-size: 11px;"><a href="https://www.facebook.com/ApolloKinoAstri/" target="_blank">Facebook</a> |&nbsp;</span><b><b><strong><a href="https://m.me/ApolloKinoAstri/" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px;" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-Messenger-48.png" style="width: 15px; height: 15px;" /></a>&nbsp;</strong></b></b><a href="https://m.me/ApolloKinoAstri/" target="_blank"><span style="font-size: 11px;">Send Message</span></a></li>
822
+ <li>&nbsp;</li>
823
+ <li><b>Apollo Kino Saaremaa</b></li>
824
+ <li><span style="font-size:11px;"><a href="https://goo.gl/maps/eMmXYaS3cEH2" style="font-size: 11px;" target="_blank"><img alt="Apollo Kino Saaremaa on Google Maps" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/MapMarker-15.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://goo.gl/maps/eMmXYaS3cEH2" target="_blank">Auriga Keskus |&nbsp;Tallinna tn 88, Kudjape</a></span></li>
825
+ <li><a href="https://www.facebook.com/ApolloKinoSaaremaa/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-64.png" style="font-size: 11px; width: 18px; height: 18px;" /></a><span style="font-size: 11px;">&nbsp;</span><span style="font-size: 11px;"><a href="https://www.facebook.com/ApolloKinoSaaremaa/" target="_blank">Facebook</a> |&nbsp;</span><a href="https://m.me/ApolloKinoSaaremaa/" style="color: rgb(79, 139, 125); text-decoration: underline; outline-width: 0px;" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-Messenger-48.png" style="width: 15px; height: 15px;" /></a>&nbsp;<a href="https://m.me/ApolloKinoSaaremaa/" target="_blank"><span style="font-size: 11px;">Send Message</span></a></li>
826
+ </ul>
827
+ </div>
828
+ </div>
829
+ </div>
830
+ <div class="col-xs-4 apollo-footer-col">
831
+ <div class="row">
832
+ <div class="col-xs-12">
833
+ <table>
834
+ <thead>
835
+ <tr>
836
+ <th>Helpdesk &nbsp;</th>
837
+ <th>&nbsp;</th>
838
+ </tr>
839
+ </thead>
840
+ <tbody>
841
+ <tr>
842
+ <td>Mon - Fri 9:00 -17:00&nbsp;</td>
843
+ <td>&nbsp;</td>
844
+ </tr>
845
+ <tr>
846
+ <td>Closed&nbsp;Sat, Sun &amp; Public Holidays</td>
847
+ <td>&nbsp;</td>
848
+ </tr>
849
+ <tr>
850
+ <td>
851
+ <p>&nbsp;</p>
852
+ <p><strong><a href="callto:+3726336020">+372 633 6020</a></strong></p>
853
+ </td>
854
+ <td>&nbsp;</td>
855
+ </tr>
856
+ <tr>
857
+ <td><strong><a href="mailto:info@apollokino.ee">info@apollokino.ee</a></strong></td>
858
+ </tr>
859
+ </tbody>
860
+ </table>
861
+ <ul class="list-unstyled">
862
+ <li>&nbsp;</li>
863
+ <li><span style="font-size: 11px;">With urgent questions and issues outside HelpDesk operating hours please come to the boxoffice at the nearest cinema.</span></li>
864
+ <li>&nbsp;</li>
865
+ <li>&nbsp;</li>
866
+ <li><span style="font-size:11px;">Cinemas open before the first show and not before 10AM.&nbsp;Cinemas close 15 minutes after the start of the last show. Precise info is available in house rules for each cinema. Weekly schedule starting&nbsp;from next Friday is published on Tuesdays.</span></li>
867
+ <li>&nbsp;</li>
868
+ <li>&nbsp;</li>
869
+ <li style="text-align: center;"><a href="https://facebook.com/ApolloKinoEesti/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Facebook-50.png" style="width: 45px; height: 45px;" /></a>&nbsp; &nbsp;<a href="https://www.instagram.com/apollokino/" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Instagram-50.png" style="width: 50px; height: 50px;" /></a>&nbsp; <a href="https://www.youtube.com/watch?v=OvtmK3OJfUg&amp;list=UUrADTrKNOoJyT3gJSLPeG1g" target="_blank"><img alt="" src="http://filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/YouTube-Squared-50.png" style="width: 50px; height: 50px;" /></a></li>
870
+ <li>&nbsp;</li>
871
+ <li>&nbsp;</li>
872
+ </ul>
873
+ </div>
874
+ </div>
875
+ </div>
876
+ <div class="col-xs-4 apollo-footer-col">
877
+ <div class="row">
878
+ <div class="col-xs-12">
879
+ <ul class="list-unstyled">
880
+ <li><strong>Info</strong></li>
881
+ <li>&nbsp;</li>
882
+ <li>&nbsp;<a href="/eng/info/club">Apollo&nbsp;Club info</a></li>
883
+ <li>&nbsp;<a href="https://www.apollo.ee/en/customer/account/create">Join Apollo Club</a></li>
884
+ <li>&nbsp;<a href="/info/privacy/">Privacy (EE)</a></li>
885
+ <li>&nbsp;</li>
886
+ <li>&nbsp;</li>
887
+ <li>&nbsp;</li>
888
+ <li>&nbsp;</li>
889
+ <li>&nbsp;</li>
890
+ <li>&nbsp;</li>
891
+ <li>&nbsp;</li>
892
+ <li>&nbsp;</li>
893
+ <li>&nbsp;</li>
894
+ <li>&nbsp;</li>
895
+ <li>&nbsp;</li>
896
+ <li><a href="/eng/info/mobileapp"><strong>Apollo Kino mobile apps</strong></a></li>
897
+ <li>&nbsp;</li>
898
+ <li><a href="/Mobile-App-Android"><img src="//filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Apollo_AppStore_Google_EST.png" width="150" /></a>&nbsp;&nbsp;<a href="/Mobile-App-iOS"><img src="//filmdistribution.blob.core.windows.net/apollokino-ee/SiteImages/Apollo_AppStore_Apple_EST.png" width="150" /></a></li>
899
+ <li>&nbsp;</li>
900
+ <li>&nbsp;</li>
901
+ <li><span style="font-size:11px;">&copy;&nbsp;Apollo Kino O&Uuml; | 2017 |&nbsp;All Rights Reserved.</span></li>
902
+ </ul>
903
+ </div>
904
+ </div>
905
+ </div>
906
+ </div>
907
+ </nav>
908
+ </div>
909
+ </div>
910
+ </footer>
911
+ <div id="MarkusInfo-container">
912
+ <div class="markus-logo-container">
913
+ <a href="http://www.markus.ee" target="_blank" class="enableTooltip" data-toggle="tooltip" data-placement="top" title="Powered by Markus Cinema System">
914
+ <div class="markus-logo light-logo"></div>
915
+ </a>
916
+ </div>
917
+ </div>
918
+
919
+ </div>
920
+ </div>
921
+ </div>
922
+ </div>
923
+
924
+
925
+
926
+
927
+
928
+
929
+
930
+ <!-- The Gallery as lightbox dialog, should be a child element of the document body -->
931
+
932
+ <div id="blueimp-gallery" class="blueimp-gallery">
933
+ <div class="slides"></div>
934
+ <h3 class="title"></h3>
935
+ <a class="prev">‹</a>
936
+ <a class="next">›</a>
937
+ <a class="close">×</a>
938
+ <a class="play-pause"></a>
939
+ <ol class="indicator"></ol>
940
+ </div>
941
+
942
+ <div id="player"></div>
943
+
944
+
945
+ <div class="modal fade" id="Area-Select-Modal" tabindex="-1" role="dialog" aria-labelledby="Area-Select-Modal-Label" aria-hidden="true">
946
+ <div class="modal-dialog">
947
+ <div class="modal-content">
948
+ <div class="modal-header">
949
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
950
+ <h4 class="modal-title" id="Area-Select-Modal-Label">Welcome! For start please select your cinema:</h4>
951
+ </div>
952
+ <div class="modal-body">
953
+ <form >
954
+ <input type="hidden" name="TheatreArea" />
955
+ <input type="hidden" name="SetHome" value="1"/>
956
+ <div class="row">
957
+ <div class="col-xs-12 col-md-6"><button type="button" class="btn btn-primary btn-block" onclick="this.form.TheatreArea.value = '1011'; this.form.submit();">Tartu - L&#245;unakeskus</button></div>
958
+ <div class="col-xs-12 col-md-6"><button type="button" class="btn btn-primary btn-block" onclick="this.form.TheatreArea.value = '1002'; this.form.submit();">P&#228;rnu - P&#228;rnu Keskus</button></div>
959
+ </div>
960
+ </form>
961
+ </div>
962
+ </div>
963
+ </div>
964
+ </div>
965
+ <script>
966
+ $(document).ready(function () {
967
+ $('#Area-Select-Modal').modal('show');
968
+ });
969
+ </script>
970
+
971
+
972
+ <div id="fb-root">
973
+ </div>
974
+ <script language="javascript" type="text/javascript">
975
+ //<![CDATA[
976
+ (function () {
977
+ var $b = $('#facebookBox');
978
+ window.resizeFacebookBox = function () {
979
+ $('iframe', $b).width($b.width() + 15).css({ border: 0 });
980
+ };
981
+ })();
982
+
983
+ window.fbAsyncInit = function () {
984
+ FB.init({
985
+ //appId: '',
986
+ status: true, cookie: true,
987
+ xfbml: true, oauth: false
988
+ });
989
+ FB.Event.subscribe("xfbml.render", function () {
990
+ window.resizeFacebookBox();
991
+ });
992
+ };
993
+ (function () {
994
+ var e = document.createElement('script'); e.async = true;
995
+ e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
996
+ document.getElementById('fb-root').appendChild(e);
997
+ }());
998
+ $(window).resize(window.resizeFacebookBox);
999
+ $(document).ready(window.resizeFacebookBox);
1000
+ //]]>
1001
+ </script>
1002
+
1003
+ <script src="/BundledScripts/AfterPage?v=kk5S_CVGM-fAjJlraFS48R_bxp9H-ZEXDPxyF4hlOb01"></script>
1004
+
1005
+
1006
+
1007
+ <script>
1008
+ $(document).ready(function () {
1009
+ var cookimonOptions = new CookiemonOptions();
1010
+ cookimonOptions.Message = "We use cookies to improve your experience on our website. You can change your consents to the use of cookies at any time by changing your browser settings and deleting existing cookies."; //"Gookies help us deliver our website. By using our website, you agree to our use of cookies.";
1011
+ cookimonOptions.ReadMoreUrl = "https://www.apollo.ee/en/privaatsus/";
1012
+ cookimonOptions.ReadMoreTitle = "More information";
1013
+ cookimonOptions.GotItButtonTitle = "I accept";
1014
+ Cookiemon(cookimonOptions);
1015
+ });
1016
+ </script>
1017
+
1018
+
1019
+ </body>
1020
+
1021
+ </html>