Skip to content

Commit 8ab5b1b

Browse files
Latest Chrome support and JointJS update to v0.9.6
1 parent 147a364 commit 8ab5b1b

File tree

7 files changed

+9257
-22427
lines changed

7 files changed

+9257
-22427
lines changed

gulpfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ gulp.task("clean", function () {
4242

4343
gulp.task("gatherLibs", ["clean"], function () {
4444
return gulp.src([
45+
"web/jsLib/jquery.min.js",
46+
"web/jsLib/lodash.min.js",
47+
"web/jsLib/backbone-min.js",
4548
"web/jsLib/joint.js",
4649
"web/jsLib/joint.shapes.uml.js",
4750
"web/jsLib/ImageExporter.js"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CacheClassExplorer",
3-
"version": "1.14.3",
3+
"version": "1.15.0",
44
"description": "Class Explorer for InterSystems Caché",
55
"directories": {
66
"test": "test"

web/css/joint.min.css

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<link rel="stylesheet" href="css/hoverMessage.css"/>
1717
<!-- endbuild -->
1818
<!-- build:js -->
19+
<script type="text/javascript" src="jsLib/jquery.min.js"></script>
20+
<script type="text/javascript" src="jsLib/lodash.min.js"></script>
21+
<script type="text/javascript" src="jsLib/backbone-min.js"></script>
1922
<script type="text/javascript" src="jsLib/joint.js"></script>
2023
<script type="text/javascript" src="jsLib/joint.shapes.uml.js"></script>
2124
<script type="text/javascript" src="jsLib/joint.layout.DirectedGraph.min.js"></script>

web/js/Lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Lib.prototype.load = function (url, data, callback) {
1919
try {
2020
return callback(null, JSON.parse(xhr.responseText) || {});
2121
} catch (e) {
22-
console.error(url, "Unable to parse:", { data: xhr.responseText });
22+
console.error(e, url, "Unable to parse:", { data: xhr.responseText });
2323
return {};
2424
}
2525
} else if (xhr.readyState === 4) {

web/js/Source.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var Source = function (cacheUMLExplorer) {
22

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

66
this.cue = cacheUMLExplorer;
77

0 commit comments

Comments
 (0)