Created
March 29, 2012 16:02
-
-
Save machisuji/2238957 to your computer and use it in GitHub Desktop.
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
def test = Action { | |
val page = new Page("public/test.html") { | |
$("p").clone(3) | |
} | |
Ok(page) | |
} |
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
<html> | |
<head> | |
<title>Testseite</title> | |
</head> | |
<body> | |
<h1>Testseite</h1> | |
<p> | |
Seite zum Testen von Wandledi in Play! | |
</p> | |
<p> | |
Seite zum Testen von Wandledi in Play! | |
</p> | |
<p> | |
Seite zum Testen von Wandledi in Play! | |
</p> | |
</body> | |
</html> |
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
<html> | |
<head> | |
<title>Testseite</title> | |
</head> | |
<body> | |
<h1>Testseite</h1> | |
<p> | |
Seite zum Testen von Wandledi in Play! | |
</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment