Skip to content

Commit e24edc6

Browse files
committed
added test case
1 parent 7d47836 commit e24edc6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

samples/issue_49.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5+
<title>Columnizer 23 Character Bug</title>
6+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
7+
<script src="../src/jquery.columnizer.js" type="text/javascript" charset="utf-8"></script>
8+
<script>
9+
$(document).ready(function(){
10+
$('.twocolumns').columnize({columns:2});
11+
});
12+
</script>
13+
</head>
14+
<body>
15+
16+
This test case should show the alphabet up to w. the bug used to duplicate the string.
17+
18+
<div class="twocolumns">abcdefghijklmnopqrstuvw</div>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)