1
0
mirror of synced 2025-12-12 01:08:16 +08:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Jamie Peabody
b717abdd1e 4.0.6 2018-07-17 21:41:59 +01:00
Jamie Peabody
d2b38249ae patch(fix-89): fixes missing merge buttons 2018-07-17 21:41:07 +01:00
3 changed files with 4 additions and 7 deletions

View File

@@ -1,8 +1,5 @@
# Changes
## 4.0.7
* chore: updated documentation
## 4.0.6
* #89: fixes missing merge buttons

View File

@@ -9,9 +9,6 @@ Mergely is a javascript component to diff/merge files interactively in a browser
### Installation via webpack
The recommended way to install mergely is to use npm and [webpack](https://webpack.js.org/) to install mergely and its dependencies. It is highly recommended that you start by cloning [mergely-webpack](https://github.com/wickedest/mergely-webpack). It has everything that you need to get started.
### Angular 6.1.1
You can also use mergely within angular. You can start by cloning [mergely-angular](https://github.com/wickedest/mergely-angular).
### Installation via .tgz
Unpack mergely.tgz into a folder, e.g. `./lib`, and then add the following to the `<head>` of your target html source file.
@@ -49,6 +46,9 @@ The following example can be used to set the `lhs` and `rhs` editors synchronous
```js
$(document).ready(function () {
// initialize mergely
$('#mergely').mergely();
// set editor content
$('#mergely').mergely({
lhs: function(setValue) {

View File

@@ -1,6 +1,6 @@
{
"name": "mergely",
"version": "4.0.7",
"version": "4.0.6",
"description": "A javascript UI for diff/merge",
"directories": {
"doc": "doc",