Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #36 from BrightspaceUI/polymer-3-2018-12-04-135350
Browse files Browse the repository at this point in the history
Fix Paths
  • Loading branch information
dlockhart authored Dec 4, 2018
2 parents 49f1de9 + 125ca24 commit 02f2e30
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
node_modules
offscreen.css

node_modules
2 changes: 1 addition & 1 deletion d2l-offscreen-shared-styles.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../@polymer/polymer/polymer-legacy.js';
import '@polymer/polymer/polymer-legacy.js';
const $_documentContainer = document.createElement('template');

$_documentContainer.innerHTML = `<dom-module id="d2l-offscreen-shared-styles">
Expand Down
4 changes: 2 additions & 2 deletions d2l-offscreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Polymer web component for positioning elements offscreen
from HTML and may be out of place here. Review them and
then delete this comment!
*/
import '../@polymer/polymer/polymer-legacy.js';
import '@polymer/polymer/polymer-legacy.js';

import './d2l-offscreen-shared-styles.js';
import { Polymer } from '../@polymer/polymer/lib/legacy/polymer-fn.js';
import { Polymer } from '@polymer/polymer/lib/legacy/polymer-fn.js';
const $_documentContainer = document.createElement('template');

$_documentContainer.innerHTML = `<dom-module id="d2l-offscreen">
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
"@babel/polyfill": "^7.0.0",
"@polymer/iron-component-page": "^3.0.0-pre.18",
"@polymer/iron-demo-helpers": "^3.0.0-pre.18",
"@webcomponents/webcomponentsjs": "^2.1.3",
"@webcomponents/webcomponentsjs": "^2.2.1",
"babel-eslint": "^10.0.1",
"chromedriver": "^2.40.0",
"d2l-typography": "BrightspaceUI/typography#semver:^7.0.0",
"d2l-typography": "BrightspaceUI/typography#semver:^7.0.2",
"eslint": "^4.15.0",
"eslint-config-brightspace": "^0.4.0",
"eslint-plugin-html": "^4.0.1",
"polymer-cli": "^1.9.0",
"polymer-cli": "^1.9.1",
"sauce-connect-launcher": "^1.2.4",
"wct-browser-legacy": "^1.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion test/a11y.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<script type="module">
import '../d2l-offscreen.js';
import { a11ySuite } from '../../wct-browser-legacy/a11ySuite.js';
import { a11ySuite } from 'wct-browser-legacy/a11ySuite.js';
suite('a11y', function() {
a11ySuite('a11y');
});
Expand Down

0 comments on commit 02f2e30

Please sign in to comment.