This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from BrightspaceUI/dbatiste/hybrid-cleanup
Dbatiste/hybrid cleanup
- Loading branch information
Showing
12 changed files
with
155 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
language: node_js | ||
node_js: stable | ||
sudo: false | ||
install: | ||
- npm install | ||
- polymer install --variants | ||
node_js: node | ||
script: | ||
- npm run test |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
* @dlockhart | ||
* @dbatiste | ||
* @dlockhart @dbatiste |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,39 @@ | ||
<html> | ||
<head> | ||
<title>d2l-offscreen</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<script src="../../webcomponentsjs/webcomponents-lite.js"></script> | ||
<link rel="import" href="../../d2l-demo-template/d2l-demo-template.html"> | ||
<link rel="import" href="../d2l-offscreen.html"> | ||
</head> | ||
<body unresolved> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> | ||
<title>d2l-offscreen demo</title> | ||
<script src="../../webcomponentsjs/webcomponents-lite.js"></script> | ||
<link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html"> | ||
<link rel="import" href="../../iron-demo-helpers/demo-snippet.html"> | ||
<link rel="import" href="../../d2l-typography/d2l-typography.html"> | ||
<link rel="import" href="../d2l-offscreen.html"> | ||
<custom-style> | ||
<style is="custom-style" include="demo-pages-shared-styles"></style> | ||
</custom-style> | ||
<custom-style include="d2l-typography"> | ||
<style is="custom-style" include="d2l-typography"></style> | ||
</custom-style> | ||
<style> | ||
html { | ||
font-size: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body unresolved class="d2l-typography"> | ||
<div class="vertical-section-container centered"> | ||
|
||
<d2l-demo-template title="d2l-offscreen"> | ||
<h3>Offscreen</h3> | ||
<demo-snippet> | ||
<template> | ||
<div> | ||
Some offscreen content: | ||
<d2l-offscreen>This message will only be visible to assistive technology, such as a screen reader.</d2l-offscreen> | ||
</div> | ||
</template> | ||
</demo-snippet> | ||
|
||
<div slot="d2l-demo-fixture" class="d2l-demo-fixture"> | ||
Some offscreen content: <d2l-offscreen>this should be offscreen</d2l-offscreen><d2l-offscreen>this should be offscreen</d2l-offscreen> | ||
</div> | ||
|
||
</d2l-demo-template> | ||
|
||
</body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> | ||
<title>d2l-offscreen</title> | ||
<script src="../webcomponentsjs/webcomponents-lite.js"></script> | ||
<link rel="import" href="../iron-component-page/iron-component-page.html"> | ||
</head> | ||
<body> | ||
<iron-component-page src="d2l-offscreen.html"></iron-component-page> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters