Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 81 additions & 81 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Ember Observer Score](https://emberobserver.com/badges/ember-basic-dropdown.svg)](https://emberobserver.com/addons/ember-basic-dropdown)
![Ember Version](https://img.shields.io/badge/ember-%3E%3D4.12-brightgreen?logo=emberdotjs&logoColor=white)
[![Discord](https://img.shields.io/badge/chat-discord-blue?style=flat&logo=discord)](https://discord.com/channels/480462759797063690/486202731766349824)
[![Build Status](https://github.com/cibernox/ember-basic-dropdown/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/cibernox/ember-basic-dropdown)
[![Build Status](https://github.com/ember-power-addons/ember-basic-dropdown/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/ember-power-addons/ember-basic-dropdown)

# ember-basic-dropdown

Expand Down
4 changes: 2 additions & 2 deletions docs/app/templates/public-pages.gts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default class extends Component {
class="main-header-nav-link"
>Cookbook</LinkTo>
<a
href="https://github.com/cibernox/ember-basic-dropdown"
href="https://github.com/ember-power-addons/ember-basic-dropdown"
class="main-header-nav-link"
>Github</a>
</div>
Expand Down Expand Up @@ -110,7 +110,7 @@ export default class extends Component {
<footer class="main-footer">
<div class="main-footer-content">
Deployed with love by
<a href="http://github.com/cibernox">Miguel Camba</a>
<a href="https://github.com/cibernox">Miguel Camba</a>
</div>
</footer>
</template>
Expand Down
5 changes: 3 additions & 2 deletions docs/app/templates/public-pages/docs/migrate-8-0-to-9-0.gts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ import { LinkTo } from '@ember/routing';
<code>false</code>
to
<code>true</code>, please follow the guidance
<a href="https://github.com/cibernox/ember-basic-dropdown/pull/1064">in
this PR</a>
<a
href="https://github.com/ember-power-addons/ember-basic-dropdown/pull/1064"
>in this PR</a>
</p>
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"repository": {
"type": "git",
"url": "git+https://github.com/cibernox/ember-basic-dropdown.git"
"url": "git+https://github.com/ember-power-addons/ember-basic-dropdown.git"
},
"license": "MIT",
"author": "Miguel Camba",
Expand Down
2 changes: 1 addition & 1 deletion src/components/basic-dropdown-content.gts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default class BasicDropdownContent<
* Avoids adding extra dependencies.
* Can be removed when the template `V1` compatability event handlers are removed.
*
* @see https://github.com/cibernox/ember-basic-dropdown/issues/498
* @see https://github.com/ember-power-addons/ember-basic-dropdown/issues/498
* @memberof BasicDropdownContent
*/
noop(): void {}
Expand Down
2 changes: 1 addition & 1 deletion src/components/basic-dropdown-trigger.gts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class BasicDropdownTrigger<
* Avoids adding extra dependencies.
* Can be removed when the template `V1` compatibility event handlers are removed.
*
* @see https://github.com/cibernox/ember-basic-dropdown/issues/498
* @see https://github.com/ember-power-addons/ember-basic-dropdown/issues/498
* @memberof BasicDropdownContent
*/
noop(): void {}
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/basic-dropdown-test.gts
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ module('Integration | Component | basic-dropdown', function (hooks) {
});

/**
* Tests related to https://github.com/cibernox/ember-basic-dropdown/issues/615
* Tests related to https://github.com/ember-power-addons/ember-basic-dropdown/issues/615
* Just in case animationEnabled on TEST ENV, this test would cover this change
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/content-test.gts
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ module('Integration | Component | basic-dropdown-content', function (hooks) {
});

/**
* Tests related to https://github.com/cibernox/ember-basic-dropdown/issues/498
* Tests related to https://github.com/ember-power-addons/ember-basic-dropdown/issues/498
* Can be removed when the template `V1` compatability event handlers are removed.
*/
module('Content event handlers', function (hooks) {
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/components/trigger-test.gts
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ module('Integration | Component | basic-dropdown-trigger', function (hooks) {
});

/**
* Tests related to https://github.com/cibernox/ember-basic-dropdown/issues/498
* Tests related to https://github.com/ember-power-addons/ember-basic-dropdown/issues/498
* Can be removed when the template `V1` compatability event handlers are removed.
*/
module('trigger event handlers', function (hooks) {
Expand Down
Loading