This file contains hidden or 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
import React from "react" | |
export default function Index() { | |
return ( | |
<h1>This is an about page. </h1> | |
) | |
} |
This file contains hidden or 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
db.aposPages.update({type: 'search'}, {$set: {type: 'searchGsa'}}) |
This file contains hidden or 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
<div class="fm-column-6"> | |
<div class="card fm-border"> | |
<div class="card-content card-content--seal"> | |
<div class="card-meta cf"> | |
<span class="fm-meta card-type"> | |
News | |
</span> | |
<span class="fm-meta card-meta-date fm-right"> | |
1/16/2014 | |
</span> |
This file contains hidden or 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
<div class="fm-column-6"> | |
<div class="fm-column-6"> | |
<div class="card"> | |
<div class="card-title"> | |
Academics | |
</div> | |
<div class="card-content"> | |
<div class="card-meta cf"> | |
<span class="fm-meta card-type"> | |
News |
This file contains hidden or 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
$(".first").lister({ | |
// Pass a special class to the <ul> | |
listClass: "lister", | |
// Pass a special class to the opened <ul> | |
openListClass: "lister-open", | |
//Pass a special class to the selected <li> | |
selectedClass: "lister-selected", |
This file contains hidden or 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
/* First, hide the select */ | |
select.second | |
{ | |
visibility: hidden; //Make it invisible. | |
position: absolute; //Make it have no height. | |
} | |
/* Second, style the top <div> */ | |
div.lister-selected-top | |
{ | |
padding: 10px 30px 10px 10px; |
This file contains hidden or 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
<select class="second"> | |
<option value="ford">Ford</option> | |
<option value="lincoln">Lincoln</option> | |
<option value="chevy">Chevy</option> | |
<option value="dodge">Dodge</option> | |
</select> |
This file contains hidden or 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
$(function() { | |
$(".second").lister(); | |
} |
This file contains hidden or 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
$(function() { | |
$(".first").lister(); | |
} |
This file contains hidden or 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
<form> | |
<select> | |
<option value="volvo">Volvo</option> | |
<option value="saab">Saab</option> | |
<option value="mercedes">Mercedes</option> | |
<option value="audi">Audi</option> | |
</select> | |
</form> |
NewerOlder