Skip to content

Commit 45bee67

Browse files
committed
add oci icons
1 parent 163e083 commit 45bee67

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dist/js/jquery.orgchart.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@
662662
$edge.parent().append('<i class="oci oci-spinner spinner"></i>')
663663
.children().not('.spinner').css('opacity', 0.2);
664664
$chart.data('inAjax', true);
665-
$('.oci-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', true);
665+
$('.oc-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', true);
666666
return true;
667667
},
668668
// terminate loading status for requesting new nodes
@@ -672,7 +672,7 @@
672672
$node.find('.spinner').remove();
673673
$node.children().removeAttr('style');
674674
this.$chart.data('inAjax', false);
675-
$('.oci-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', false);
675+
$('.oc-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', false);
676676
},
677677
// whether the cursor is hovering over the node
678678
isInAction: function ($node) {

dist/js/jquery.orgchart.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/jquery.orgchart.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,6 @@ gulp.task('serve', gulp.series('build', function () {
128128
baseDir: paths.demo
129129
}
130130
});
131-
// gulp.watch(paths.srcFiles, gulp.series('build'));
131+
gulp.watch(paths.srcFiles, gulp.series('build'));
132132
gulp.watch(paths.demoFiles, gulp.series('reload'));
133133
}));

src/js/jquery.orgchart.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@
662662
$edge.parent().append('<i class="oci oci-spinner spinner"></i>')
663663
.children().not('.spinner').css('opacity', 0.2);
664664
$chart.data('inAjax', true);
665-
$('.oci-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', true);
665+
$('.oc-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', true);
666666
return true;
667667
},
668668
// terminate loading status for requesting new nodes
@@ -672,7 +672,7 @@
672672
$node.find('.spinner').remove();
673673
$node.children().removeAttr('style');
674674
this.$chart.data('inAjax', false);
675-
$('.oci-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', false);
675+
$('.oc-export-btn' + (this.options.chartClass !== '' ? '.' + this.options.chartClass : '')).prop('disabled', false);
676676
},
677677
// whether the cursor is hovering over the node
678678
isInAction: function ($node) {

0 commit comments

Comments
 (0)