-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathchanges.html
42 lines (40 loc) · 1.52 KB
/
changes.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
---
layout: default
title: Analytics
---
<script>document.title='Sky Analytics API Changes Page';</script>
<a name="using-me"></a>
<section class="demo-section" id=changes-page>
<h2>Calculate HTML changes</h2>
<div class="developer-notes">
The earliest version this tool will work from is 1.1.0
</div>
<div class="sub-section ">
<form class="sky-form sky-well hidden" data-diff-container>
<div class="row">
<label for="version">Which version are you using?</label>
<input id="version" type="text" placeholder="eg. 1.1.0" required="required"/>
</div>
<div class="error row">
</div>
<div class="row">
<label > </label>
<button id="check" class="btn primary" >Check</button>
<a id="return" class="btn secondary" href='http://skyglobal.github.io/analytics'>return to skyglobal.github.io</a>
</div>
</form>
<div class="warning error sky-well hidden" >
To workout changes we must go to
<a href="http://analytics.global.sky.com/{{ site.version }}/_site/changes.html" >here</a>.
</div>
</div>
</section>
<script>
if (document.location.host === "analytics.global.sky.com"
|| document.location.host.indexOf('localhost')>=0
|| document.location.host.indexOf('local.sky.com')>=0){
$('.sky-form').removeClass('hidden');
} else {
$('.warning').removeClass('hidden');
}
</script>