-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added elementWithin and elementsWithin for issue #73
- Loading branch information
1 parent
ee98749
commit d7af3ee
Showing
4 changed files
with
94 additions
and
58 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 |
---|---|---|
|
@@ -71,4 +71,8 @@ | |
|
||
get '/ryansError' do | ||
erb :ryansError | ||
end | ||
|
||
get '/elementWithin' do | ||
erb :elementWithin | ||
end |
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,20 @@ | ||
<html> | ||
<head> | ||
<title>floak testing page</title> | ||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
|
||
<label class="item">item 1</label> | ||
<label class="item">item 2</label> | ||
<label class="item">item 3</label> | ||
<span> | ||
<label class="item">spanned item 4</label> | ||
<label class="item">spanned item 5</label> | ||
</span> | ||
|
||
|
||
</body> | ||
</html> | ||
|