Compare commits
2 Commits
ff208644c2
...
cd2017c621
Author | SHA1 | Date | |
---|---|---|---|
cd2017c621 | |||
8adb7bd764 |
24
.editorconfig
Normal file
24
.editorconfig
Normal file
@ -0,0 +1,24 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.js]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[{*.html,*.css,*.json}]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
|
||||
[lib/codemirror.css]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
## Text diff online tool
|
||||
|
||||
Originally project by [aTool-org](https://github.com/aTool-org/diff-online).
|
20
index.html
20
index.html
@ -1,24 +1,18 @@
|
||||
<!--
|
||||
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>
|
||||
<title>Online File Diff and Mergely</title>
|
||||
<meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge">
|
||||
<link rel="shortcut icon" href="http://www.mergely.com/favicon.ico">
|
||||
<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="Jamie Peabody" />
|
||||
<!-- Requires jQuery -->
|
||||
<meta name="author" content="Alexander Popov" />
|
||||
<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>
|
||||
<script type="text/javascript" src="./lib/codemirror.min.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="./lib/codemirror.css" />
|
||||
<!-- Requires Mergely -->
|
||||
<script type="text/javascript" src="./lib/mergely.js"></script>
|
||||
<script type="text/javascript" src="./lib/mergely.min.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="./lib/mergely.css" />
|
||||
</head>
|
||||
<body>
|
||||
@ -49,7 +43,7 @@ This example demonstrates the minimum amount of code required to use Mergely.
|
||||
width: 'auto',
|
||||
height: '400',
|
||||
cmsettings: {
|
||||
readOnly: false,
|
||||
readOnly: false,
|
||||
lineWrapping: true,
|
||||
},
|
||||
lhs: function(setValue) {
|
||||
@ -65,7 +59,5 @@ This example demonstrates the minimum amount of code required to use Mergely.
|
||||
});
|
||||
$(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>
|
||||
|
5384
lib/codemirror.js
5384
lib/codemirror.js
File diff suppressed because it is too large
Load Diff
1576
lib/mergely.js
1576
lib/mergely.js
File diff suppressed because it is too large
Load Diff
@ -128,4 +128,4 @@
|
||||
CodeMirror.defineExtension("getSearchCursor", function(query, pos, caseFold) {
|
||||
return new SearchCursor(this, query, pos, caseFold);
|
||||
});
|
||||
})();
|
||||
})();
|
||||
|
Loading…
Reference in New Issue
Block a user