diff --git a/README.md b/README.md index 053ff85a9..d8358f6a2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This project aims to bring Google's new [Material Design](https://www.google.com/design/spec/material-design/introduction.html) to Ember. The goal is to encapsulate everything possible in Ember components. This project is packaged as an [Ember-cli](http://www.ember-cli.com/) addon. -[Explore Ember Paper docs »](https://miguelcobain.github.io/ember-paper/) +[Explore Ember Paper docs »](https://ember-paper.netlify.app) ## Installation @@ -23,7 +23,7 @@ Navigate through the docs to understand how to use each component. - Contributors can often be found on the [#e-paper channel on discord](https://discord.gg/zT3asNS). -- The [GitHub milestone issue](https://github.com/miguelcobain/ember-paper/issues/249) tracks our progress to version 1.0. +- The [GitHub milestone issue](https://github.com/adopted-ember-addons/ember-paper/issues/249) tracks our progress to version 1.0. - Building the `ember-paper` demo application will give you your own up-to-date reference. This can be accomplished by cloning ember-paper as if it were an application and running `ember server`. diff --git a/addon/components/paper-menu/content/component.js b/addon/components/paper-menu/content/component.js index 96a62be56..d97162e19 100644 --- a/addon/components/paper-menu/content/component.js +++ b/addon/components/paper-menu/content/component.js @@ -61,8 +61,8 @@ class PaperMenuContent extends Component { async animateOut(element) { let parentElement = this.renderInPlace ? element.parentElement.parentElement : element.parentElement; - // workaround for https://github.com/miguelcobain/ember-paper/issues/1151. See also https://github.com/emberjs/ember.js/issues/18795. - // & https://github.com/miguelcobain/ember-paper/issues/1166 + // workaround for https://github.com/adopted-ember-addons/ember-paper/issues/1151. See also https://github.com/emberjs/ember.js/issues/18795. + // & https://github.com/adopted-ember-addons/ember-paper/issues/1166 if (!parentElement) { parentElement = ebdGetParent(getOwner(this)); } diff --git a/addon/components/paper-select/ebd-content/component.js b/addon/components/paper-select/ebd-content/component.js index f406b3249..0688c62d0 100644 --- a/addon/components/paper-select/ebd-content/component.js +++ b/addon/components/paper-select/ebd-content/component.js @@ -69,7 +69,7 @@ class PaperSelectEbdContent extends Component { async animateOut(dropdownElement) { let parentElement = this.renderInPlace ? dropdownElement.parentElement.parentElement : dropdownElement.parentElement; - // workaround for https://github.com/miguelcobain/ember-paper/issues/1166 + // workaround for https://github.com/adopted-ember-addons/ember-paper/issues/1166 if (!parentElement) { parentElement = ebdGetParent(getOwner(this)); } diff --git a/addon/utils/ebd-get-parent.js b/addon/utils/ebd-get-parent.js index 35030c8b9..57eff2b16 100644 --- a/addon/utils/ebd-get-parent.js +++ b/addon/utils/ebd-get-parent.js @@ -4,8 +4,8 @@ import requirejs from 'require'; export default function ebdGetParent(owner) { // Try to fix : - // - https://github.com/miguelcobain/ember-paper/issues/1151 - // - https://github.com/miguelcobain/ember-paper/issues/1166 + // - https://github.com/adopted-ember-addons/ember-paper/issues/1151 + // - https://github.com/adopted-ember-addons/ember-paper/issues/1166 // By doing like https://github.com/cibernox/ember-basic-dropdown/blob/850c227c0a58148056d55d41aa0e5d88656b8165/addon/components/basic-dropdown.js#L273-L290 let config = owner.resolveRegistration('config:environment'); let id; diff --git a/package.json b/package.json index 77ea24be0..3d7b63dbc 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "paper" ], "bugs": { - "url": "https://github.com/miguelcobain/ember-paper/issues" + "url": "https://github.com/adopted-ember-addons/ember-paper/issues" }, "repository": "https://github.com/adopted-ember-addons/ember-paper", "license": "MIT", @@ -118,7 +118,7 @@ }, "ember-addon": { "configPath": "tests/dummy/config", - "demoURL": "https://miguelcobain.github.io/ember-paper", + "demoURL": "https://ember-paper.netlify.app", "before": "ember-cli-sri", "versionCompatibility": { "ember": ">=3.20.0 < 4.0.0" diff --git a/tests/dummy/app/index.html b/tests/dummy/app/index.html index 993868194..fcc3b1407 100644 --- a/tests/dummy/app/index.html +++ b/tests/dummy/app/index.html @@ -24,7 +24,8 @@ {{content-for "body-footer"}} - - + + + diff --git a/tests/dummy/app/templates/addons.hbs b/tests/dummy/app/templates/addons.hbs index 0e11c3d75..49ad6f256 100644 --- a/tests/dummy/app/templates/addons.hbs +++ b/tests/dummy/app/templates/addons.hbs @@ -178,7 +178,7 @@

Contributing an addon

- If you have an ember-paper specific component, service etc that you think would be usable by others, please feel free to create an ember addon, publish to npm then submit a pull request on GitHub for it to be included here. + If you have an ember-paper specific component, service etc that you think would be usable by others, please feel free to create an ember addon, publish to npm then submit a pull request on GitHub for it to be included here.

diff --git a/tests/dummy/app/templates/components/page-toolbar.hbs b/tests/dummy/app/templates/components/page-toolbar.hbs index 4cc84a3d8..b9e846491 100644 --- a/tests/dummy/app/templates/components/page-toolbar.hbs +++ b/tests/dummy/app/templates/components/page-toolbar.hbs @@ -22,7 +22,7 @@
- + GitHub diff --git a/tests/dummy/app/templates/cookbook.hbs b/tests/dummy/app/templates/cookbook.hbs index 6540f8860..d286068dd 100644 --- a/tests/dummy/app/templates/cookbook.hbs +++ b/tests/dummy/app/templates/cookbook.hbs @@ -9,7 +9,7 @@

Recipe contributions

- Have a great tip or solution for ember-paper? Submit a pull request on GitHub or discuss it with the team on Discord #e-paper for inclusion here. + Have a great tip or solution for ember-paper? Submit a pull request on GitHub or discuss it with the team on Discord #e-paper for inclusion here.

diff --git a/tests/dummy/app/templates/index.hbs b/tests/dummy/app/templates/index.hbs index e8b1bc7e4..c1c2d53bb 100644 --- a/tests/dummy/app/templates/index.hbs +++ b/tests/dummy/app/templates/index.hbs @@ -80,7 +80,7 @@

{{!-- Place this tag where you want the button to render. --}} - Fork + Fork