forked from emberjs/ember-inspector
-
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.
Ember 3.5.1, lots of template lint fixes (emberjs#896)
* Ember 3.5.1, lots of template lint fixes * Remove deprecated propertyDidChange * Set jquery version to 2.x for Ember 2.7 * Ignore lint for one computed
- Loading branch information
1 parent
96c7e8d
commit 90ebf8c
Showing
55 changed files
with
1,718 additions
and
473 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
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 |
---|---|---|
|
@@ -19,3 +19,5 @@ config/secrets.json | |
.node_modules.ember-try/ | ||
bower.json.ember-try | ||
package.json.ember-try | ||
|
||
.idea/ |
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,15 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
extends: 'recommended', | ||
rules: { | ||
'link-rel-noopener': false, | ||
'no-inline-styles': false, | ||
'no-invalid-interactive': false, | ||
'no-outlet-outside-routes': false, | ||
'no-partial': false, | ||
'no-unbound': false, | ||
'simple-unless': false, | ||
'table-groups': false | ||
} | ||
}; |
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
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,14 +1,21 @@ | ||
<div class="list__content js-component-tree" style="height: 100%;"> | ||
{{#vertical-collection displayedList estimateHeight=20 as |item i|}} | ||
<div onmouseenter={{action "previewLayer" item}} | ||
onmouseleave={{action "hidePreview"}}> | ||
{{#vertical-collection | ||
displayedList | ||
estimateHeight=20 | ||
as |item| | ||
}} | ||
<div | ||
onmouseenter={{action "previewLayer" item}} | ||
onmouseleave={{action "hidePreview"}} | ||
> | ||
{{component-tree-item | ||
item=item | ||
pinnedObjectId=pinnedObjectId | ||
toggleExpanded=(action "toggleExpanded" item) | ||
inspect=(action "inspect") | ||
scrollToElement=(action "scrollToElement") | ||
sendObjectToConsole=(action "sendObjectToConsole")}} | ||
sendObjectToConsole=(action "sendObjectToConsole") | ||
}} | ||
</div> | ||
{{/vertical-collection}} | ||
</div> |
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,7 +1,14 @@ | ||
{{#if node.children}} | ||
<a href='#' {{action "expand"}} class='title'> | ||
<span class='expander'>{{#if expanded}}-{{else}}+{{/if}}</span> | ||
{{unbound node.name}} <span class='duration'>{{unbound node.duration}}</span></a> | ||
<a | ||
href="#" | ||
class="title" | ||
{{action "expand"}} | ||
> | ||
<span class="expander">{{#if expanded}}-{{else}}+{{/if}}</span> | ||
{{unbound node.name}} <span class="duration">{{unbound node.duration}}</span> | ||
</a> | ||
{{else}} | ||
<div class='title'>{{unbound node.name}} <span class='duration'>{{unbound node.duration}}</span></div> | ||
<div class="title"> | ||
{{unbound node.name}} <span class="duration">{{unbound node.duration}}</span> | ||
</div> | ||
{{/if}} |
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
Oops, something went wrong.