64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Online File Diff and Mergely</title>
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge">
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
<meta name="description" content="Merge and Diff your documents with diff online and share" />
|
|
<meta name="keywords" content="diff,merge,compare,jsdiff,comparison,difference,file,text,unix,patch,algorithm,saas,longest common subsequence" />
|
|
<meta name="author" content="Alexander Popov" />
|
|
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
|
|
<script type="text/javascript" src="./lib/codemirror.min.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="./lib/codemirror.css" />
|
|
<script type="text/javascript" src="./lib/mergely.min.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="./lib/mergely.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mergely-resizer">
|
|
<div id="compare">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript">
|
|
function getWinHeight() {
|
|
var winHeight = 0;
|
|
if (window.innerHeight)
|
|
winHeight = window.innerHeight;
|
|
else if ((document.body) && (document.body.clientHeight))
|
|
winHeight = document.body.clientHeight;
|
|
return winHeight;
|
|
}
|
|
function getWinWidth() {
|
|
var winWidth = 0;
|
|
if (window.innerWidth)
|
|
winWidth = window.innerWidth;
|
|
else if ((document.body) && (document.body.clientWidth))
|
|
winWidth = document.body.clientWidth;
|
|
return winWidth;
|
|
}
|
|
$(document).ready(function () {
|
|
$('#compare').mergely({
|
|
width: 'auto',
|
|
height: '400',
|
|
cmsettings: {
|
|
readOnly: false,
|
|
lineWrapping: true,
|
|
},
|
|
lhs: function(setValue) {
|
|
setValue('welcome here, I\'m huster.\n the site is diff.hust.cc .');
|
|
},
|
|
rhs: function(setValue) {
|
|
setValue('welcome here, I\'m not huster.\n the domain is hust.cc .');
|
|
}
|
|
});
|
|
$(window).resize(function() {
|
|
$('#compare').mergely('options', {height:getWinHeight() - 30, width:getWinWidth() - 30});
|
|
$('#compare').mergely('update')
|
|
});
|
|
$(window).resize();
|
|
});
|
|
</script>
|
|
</html>
|