Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve objectDiff. #8

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MIT-LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) Nikita Vasilyev
Copyright (c) Nikita Vasilyev (modifications by Andreas Schmidt)

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
21 changes: 21 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "objectDiff-enhanced",
"main": "objectDiff.js",
"version": "1.1.1",
"homepage": "https://github.com/Darneas/objectDiff.js",
"authors": [
"Andreas Schmidt <[email protected]>"
],
"description": "\"Methods for calculating diff on JavaScript objects.\"",
"moduleType": [
"node"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</tr>
</table>

<a class="footer" href="https://github.com/NV/objectDiff.js">objectDiff.js on GitHub</a>
<a class="footer" href="https://github.com/Darneas/objectDiff.js">objectDiff.js on GitHub</a>

<script src="objectDiff.js"></script>
<script defer>
Expand Down Expand Up @@ -63,7 +63,7 @@
}

if (!bError && !aError) {
var diff = objectDiff.diffOwnProperties(aObj, bObj);
var diff = objectDiff.basicDiff(aObj, bObj);
result.innerHTML = objectDiff.convertToXMLString(diff);
}
};
Expand Down
Loading