Skip to content

Commit

Permalink
Merge 37eb7b5 into 3d583e2
Browse files Browse the repository at this point in the history
  • Loading branch information
jessedobbelaere committed Aug 4, 2017
2 parents 3d583e2 + 37eb7b5 commit 00a6340
Show file tree
Hide file tree
Showing 29 changed files with 9,804 additions and 2,590 deletions.
8 changes: 3 additions & 5 deletions css/vendors/bootstrap-datepicker3.standalone.min.css

Large diffs are not rendered by default.

Binary file added css/vendors/jstree/30px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css/vendors/jstree/32px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,122 changes: 1,122 additions & 0 deletions css/vendors/jstree/style.css

Large diffs are not rendered by default.

Binary file added css/vendors/jstree/throbber.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ gulp.task("build:backend:assets:copy-fine-uploader-css-and-images", function() {
.pipe(gulp.dest("./css/vendors/fine-uploader"));
});

gulp.task("build:backend:assets:copy-jstree-css-and-images", function() {
return gulp.src([
"node_modules/jstree-bootstrap-theme/dist/themes/proton/style.css",
"node_modules/jstree-bootstrap-theme/dist/themes/proton/30px.png",
"node_modules/jstree-bootstrap-theme/dist/themes/proton/32px.png",
"node_modules/jstree-bootstrap-theme/dist/themes/proton/throbber.gif",
"node_modules/jstree-bootstrap-theme/dist/themes/proton/32px.png",
])
.pipe(gulp.dest("./css/vendors/jstree"));
});

gulp.task("build:backend:assets:copy-js-vendors", function() {
return gulp.src([
"node_modules/jquery/dist/jquery.min.js",
Expand All @@ -53,6 +64,8 @@ gulp.task("build:backend:assets:copy-js-vendors", function() {
"node_modules/simple-ajax-uploader/SimpleAjaxUploader.min.js",
"node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js",
"node_modules/cropper/dist/cropper.js",
"node_modules/jstree/dist/jstree.js",
"node_modules/typeahead.js/dist/typeahead.bundle.min.js",
])
.pipe(gulp.dest("js/vendors"));
});
Expand Down Expand Up @@ -85,6 +98,7 @@ gulp.task("build:backend", function() {
"build:backend:assets:copy-fonts-vendors",
"build:backend:assets:copy-js-vendors",
"build:backend:assets:copy-fine-uploader-css-and-images",
"build:backend:assets:copy-jstree-css-and-images",
"build:backend:sass:generate-css"
);
});
Expand Down
9 changes: 4 additions & 5 deletions js/vendors/bootstrap-datepicker.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 00a6340

Please sign in to comment.