Skip to content

Commit

Permalink
Latest Chrome support and JointJS update to v0.9.6
Browse files Browse the repository at this point in the history
nikitaeverywhere committed Feb 8, 2016

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 147a364 commit 8ab5b1b
Showing 7 changed files with 9,257 additions and 22,427 deletions.
3 changes: 3 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -42,6 +42,9 @@ gulp.task("clean", function () {

gulp.task("gatherLibs", ["clean"], function () {
return gulp.src([
"web/jsLib/jquery.min.js",
"web/jsLib/lodash.min.js",
"web/jsLib/backbone-min.js",
"web/jsLib/joint.js",
"web/jsLib/joint.shapes.uml.js",
"web/jsLib/ImageExporter.js"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CacheClassExplorer",
"version": "1.14.3",
"version": "1.15.0",
"description": "Class Explorer for InterSystems Caché",
"directories": {
"test": "test"
5 changes: 2 additions & 3 deletions web/css/joint.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
@@ -16,6 +16,9 @@
<link rel="stylesheet" href="css/hoverMessage.css"/>
<!-- endbuild -->
<!-- build:js -->
<script type="text/javascript" src="jsLib/jquery.min.js"></script>
<script type="text/javascript" src="jsLib/lodash.min.js"></script>
<script type="text/javascript" src="jsLib/backbone-min.js"></script>
<script type="text/javascript" src="jsLib/joint.js"></script>
<script type="text/javascript" src="jsLib/joint.shapes.uml.js"></script>
<script type="text/javascript" src="jsLib/joint.layout.DirectedGraph.min.js"></script>
2 changes: 1 addition & 1 deletion web/js/Lib.js
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ Lib.prototype.load = function (url, data, callback) {
try {
return callback(null, JSON.parse(xhr.responseText) || {});
} catch (e) {
console.error(url, "Unable to parse:", { data: xhr.responseText });
console.error(e, url, "Unable to parse:", { data: xhr.responseText });
return {};
}
} else if (xhr.readyState === 4) {
2 changes: 1 addition & 1 deletion web/js/Source.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Source = function (cacheUMLExplorer) {

this.URL = window.location.protocol + "//" + window.location.hostname + ":" +
57776/*build.replace:window.location.port*/ + "/ClassExplorer";
57772/*build.replace:window.location.port*/ + "/ClassExplorer";

this.cue = cacheUMLExplorer;

31,667 changes: 9,246 additions & 22,421 deletions web/jsLib/joint.js

Large diffs are not rendered by default.

0 comments on commit 8ab5b1b

Please sign in to comment.