Skip to content

Commit 20121e7

Browse files
author
Graham Butler
committed
add ability to set position
1 parent cda996b commit 20121e7

File tree

93 files changed

+8349
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+8349
-1
lines changed

showroom/dist/css/main.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

showroom/dist/css/main.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

showroom/dist/index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html class="chassis" lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width" />
6+
7+
<title>&lt;author-slider-handle&gt; Demo</title>
8+
9+
<link rel="stylesheet" href="css/main.css">
10+
<link rel="stylesheet" href="lib/prismjs/prism.css">
11+
12+
<script src="https://cdn.author.io/ngn/latest/legacy.complete.min.js"></script>
13+
<script src="https://cdn.author.io/ngnx/latest/complete.min.js"></script>
14+
15+
<script src="webcomponents/author-base.js"></script>
16+
<script src="webcomponents/author-control.js"></script>
17+
<script src="webcomponents/author-menu.js"></script>
18+
<script src="webcomponents/author-selected-options.js"></script>
19+
<script src="webcomponents/author-optgroup-label.js"></script>
20+
<script src="webcomponents/author-optgroup.js"></script>
21+
<script src="webcomponents/author-options.js"></script>
22+
<script src="webcomponents/author-option.js"></script>
23+
<script src="webcomponents/author-select.js"></script>
24+
</head>
25+
26+
<body class="author-slider-handle demo" data-theme="default">
27+
<header>
28+
<div class="width constraint">
29+
<h1>&lt;author-slider-handle&gt; Demo</h1>
30+
<aside class="links">
31+
<h2 class="hidden">Navigation</h2>
32+
<a href="https://author.io" target="_blank">author.io</a>
33+
</aside>
34+
</div>
35+
</header>
36+
37+
<main>
38+
<div class="content">
39+
<author-control class="theme">
40+
<label>Theme</label>
41+
<select placeholder="Select a Theme">
42+
<option value="1">Default</option>
43+
<option value="2">Dark</option>
44+
<option value="3">Other</option>
45+
</select>
46+
</author-control>
47+
</div>
48+
</main>
49+
</body>
50+
51+
<script src="js/index.js"></script>
52+
</html>

showroom/dist/js/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* author-slider-handle-showroom v1.0.0 generated on Tue Aug 06 2019.
3+
* Built at 15:56:57 GMT-0700 (Pacific Daylight Time)
4+
* Copyright (c) 2019 Author.io
5+
*/
6+
"use strict";var Demo=new NGNX.VIEW.Registry({selector:".demo",namespace:"demo.",init:function(){console.log("works")}});

0 commit comments

Comments
 (0)