Skip to content

Commit

Permalink
Layout Grid Examples: Fix html validation issues (pull #645)
Browse files Browse the repository at this point in the history
Changes to resolve issue #579:
* Removed true value for HTML 5 boolean
* Removed unnecessary type attribute from script element
  • Loading branch information
fALKENdk authored and mcking65 committed Apr 20, 2018
1 parent a3349f2 commit 31c7b7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/grid/LayoutGrids.html
Expand Up @@ -10,12 +10,12 @@
<script src="../js/examples.js"></script>
<script src="../js/highlight.pack.js"></script>
<script src="../js/app.js"></script>
<script src="../js/utils.js" type="text/javascript"></script>
<script src="../js/utils.js"></script>

<!-- js and css for this example. -->
<link href="css/layoutGrids.css" rel="stylesheet">
<script src="js/dataGrid.js" type="text/javascript"></script>
<script src="js/layoutGrids.js" type="text/javascript"></script>
<script src="js/dataGrid.js"></script>
<script src="js/layoutGrids.js"></script>
</head>
<body>
<nav aria-label="Related Links" class="feedback">
Expand Down Expand Up @@ -372,7 +372,7 @@ <h4 id="ex3_search_results_label">Search Results for "W3C WAI-ARIA"</h4>
</div>

<div class="ex3_pagination">
<button disabled="true" id="ex3_pageup_button">Previous</button>
<button disabled id="ex3_pageup_button">Previous</button>
<button id="ex3_pagedown_button">Next</button>
</div>
</div>
Expand Down

0 comments on commit 31c7b7f

Please sign in to comment.