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
  • Loading branch information
nikitaeverywhere committed Feb 8, 2016
1 parent 147a364 commit 8ab5b1b
Show file tree
Hide file tree
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
Expand Up @@ -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"
Expand Down
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"
Expand Down
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
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion web/js/Lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
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;

Expand Down
Loading

0 comments on commit 8ab5b1b

Please sign in to comment.