diff-online/index.html

72 lines
2.4 KiB
HTML
Raw Normal View History

2016-08-30 08:57:55 +03:00
<!--
This example demonstrates the minimum amount of code required to use Mergely.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Online File Diff and Mergely, Powered By aTool. </title>
<meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge">
<link rel="shortcut icon" href="http://www.mergely.com/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="Jamie Peabody" />
<!-- Requires jQuery -->
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<!-- Requires CodeMirror -->
<script type="text/javascript" src="./lib/codemirror.js"></script>
<link type="text/css" rel="stylesheet" href="./lib/codemirror.css" />
<!-- Requires Mergely -->
<script type="text/javascript" src="./lib/mergely.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>
<span style="display:none;"><script src="http://s22.cnzz.com/stat.php?id=1253385992&web_id=1253385992" language="JavaScript"></script></span>
</html>