-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev: Move ontouchstart to root element
- Loading branch information
Showing
11 changed files
with
33 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
<div class="eruda-control"> | ||
<span class="eruda-icon-ban clear-console" ontouchstart></span> | ||
<span class="eruda-icon-ban clear-console"></span> | ||
<span class="eruda-filter filter eruda-active" data-filter="all">All</span> | ||
<span class="eruda-filter filter" data-filter="error">Error</span> | ||
<span class="eruda-filter filter" data-filter="warn">Warning</span> | ||
<span class="eruda-filter filter" data-filter="info">Info</span> | ||
<span class="eruda-filter filter" data-filter="log">Log</span> | ||
<span class="eruda-filter filter" data-filter="debug">Debug</span> | ||
<span class="eruda-icon-info-circle help" ontouchstart></span> | ||
<span class="eruda-icon-info-circle help"></span> | ||
</div> | ||
<ul class="eruda-logs"></ul> | ||
<div class="eruda-js-input"> | ||
<div class="eruda-buttons"> | ||
<div class="eruda-button cancel" ontouchstart>Cancel</div> | ||
<div class="eruda-button execute" ontouchstart>Execute</div> | ||
<div class="eruda-button cancel">Cancel</div> | ||
<div class="eruda-button execute">Execute</div> | ||
</div> | ||
<textarea placeholder="Type JavaScript here"></textarea> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<div class="eruda-bottom-bar"> | ||
<div class="eruda-btn eruda-select" ontouchstart> | ||
<div class="eruda-btn eruda-select"> | ||
<span class="eruda-icon eruda-icon-hand-pointer-o"></span> | ||
</div> | ||
<div class="eruda-btn eruda-refresh" ontouchstart> | ||
<div class="eruda-btn eruda-refresh"> | ||
<span class="eruda-icon eruda-icon-repeat"></span> | ||
</div> | ||
<div class="eruda-btn eruda-highlight" ontouchstart> | ||
<div class="eruda-btn eruda-highlight"> | ||
<span class="eruda-icon eruda-icon-eye"></span> | ||
</div> | ||
<div class="eruda-btn eruda-reset" ontouchstart> | ||
<div class="eruda-btn eruda-reset"> | ||
<span class="eruda-icon eruda-icon-rotate-left"></span> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div class="eruda-entry-btn" ontouchstart> | ||
<div class="eruda-entry-btn"> | ||
<span class="eruda-icon-cog"></span> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<ul> | ||
{{#each features}} | ||
<li> | ||
<a href="http://caniuse.com/#search={{@key}}" target="_blank" class="eruda-inner-wrapper {{#if this}}eruda-ok{{/if}}" ontouchstart> | ||
<a href="http://caniuse.com/#search={{@key}}" target="_blank" class="eruda-inner-wrapper {{#if this}}eruda-ok{{/if}}"> | ||
{{@key}} | ||
</a> | ||
</li> | ||
{{/each}} | ||
</ul> | ||
<a class="eruda-html5test" target="_blank" href="http://html5test.com" ontouchstart>Go to HTML5 Test</a> | ||
<a class="eruda-html5test" target="_blank" href="http://html5test.com">Go to HTML5 Test</a> |
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,11 +1,11 @@ | ||
<div class="eruda-select"> | ||
<div class="eruda-head" ontouchstart> | ||
<div class="eruda-head"> | ||
{{desc}} | ||
<span class="eruda-val">{{val}}</span> | ||
</div> | ||
<ul data-idx="{{idx}}"> | ||
{{#each selections}} | ||
<li ontouchstart>{{.}}</li> | ||
<li>{{.}}</li> | ||
{{/each}} | ||
</ul> | ||
</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