This repository was archived by the owner on Jul 3, 2025. It is now read-only.
forked from skyglobal/web-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchanges.html
More file actions
46 lines (44 loc) · 2.25 KB
/
changes.html
File metadata and controls
46 lines (44 loc) · 2.25 KB
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
---
layout: default
title: Sky Web Toolkit
---
<section class="demo-section" id=changes-page>
<h2>Changes</h2>
<div >
The earliest version this tool will work from is 2.0.0. To see the changes from 1.0.0 to 2.0.0 please <a href="http://web-toolkit.global.sky.com/2.0.0alpha.rc1/_site/changes.html">check here</a>.
</div>
<h3 class="smaller">Major Changes <small>(v1.x - v2.0.0)</small></h3>
<ul>
<li><span class="medium">Typography</span> Headings now have default margins + mobile sizes adjusted</li>
<li><span class="medium">Skycons</span> <code>colour</code> class should now be on the skycon element</li>
<li><span class="medium">carousel</span> JS options object doesnt need to be wrapped in a <code>carousel</code> object</li>
<li><span class="medium">carousel</span> please add the class <code>slide</code> to the slides within the carousel</li>
<li><span class="medium">carousel</span> <a href="https://github.com/skyglobal/web-toolkit/issues/21">bug 21</a> has been fixed which means you may need to get rid of some extra click events.</li>
</ul>
<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. 2.0.0" required="required"/>
</div>
<div class="error row">
</div>
<div class="row">
<label > </label>
<button id="check" class="btn primary" type="submit">Check</button>
<a id="return" class="btn secondary" href='http://skyglobal.github.io/web-toolkit'>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://web-toolkit.global.sky.com/{{ site.version }}/_site/changes.html">here</a>.
</div>
</div>
</section>
<script>
if (document.location.host === "web-toolkit.global.sky.com" || document.location.host.indexOf('local')>=0){
$('.sky-form').removeClass('hidden');
} else {
$('.warning').removeClass('hidden');
}
</script>