Skip to content

Commit

Permalink
Add dist task img path
Browse files Browse the repository at this point in the history
Fixed dist css file img bug
  • Loading branch information
ilkeryilmaz committed May 1, 2017
1 parent cb3bd0d commit 6f2a476
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 2 deletions.
Binary file added dist/img/date-icon-vertical.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/img/date-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/img/timeline-bg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/img/timeline-vertical-bg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion dist/js/timeline.js
Expand Up @@ -5,7 +5,6 @@
*/

( function( $ ) {
var Timeline;
Timeline = {
init: function (options, elem) {
var self = this;
Expand Down Expand Up @@ -89,6 +88,7 @@
});
},


// Change Slide Action
// ----------------------------------------------------------------
change_slide: function (type) {
Expand Down Expand Up @@ -119,6 +119,7 @@

},


// Make Timeline Calculations
// ----------------------------------------------------------------
timelime_calculations: function () {
Expand All @@ -131,6 +132,7 @@
}
},


// Change Dots Action
// ----------------------------------------------------------------
change_dots: function (type) {
Expand Down Expand Up @@ -164,6 +166,7 @@
}
},


// Make Timeline Dots Calculations
// ----------------------------------------------------------------
dots_calculations: function () {
Expand Down Expand Up @@ -242,6 +245,7 @@
self.update_ui();
},


// Item Markup Class Update
// ----------------------------------------------------------------
update_ui: function () {
Expand Down Expand Up @@ -287,6 +291,7 @@
.addClass(self.options.nextClass);
},


// Timeline Change
// ----------------------------------------------------------------
change_timeline: function () {
Expand All @@ -298,6 +303,7 @@
},
};


// jQuery method
// ------------------------------------------------------------
$.fn.Timeline = function(options) {
Expand Down
2 changes: 1 addition & 1 deletion dist/js/timeline.min.js

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

3 changes: 3 additions & 0 deletions gulpfile.js
Expand Up @@ -85,6 +85,9 @@ gulp.task('copy-to-dist', function() {
gulp.src('src/css/timeline.scss')
.pipe(gulp.dest('dist/css/'));

gulp.src('src/img/*')
.pipe(gulp.dest('dist/img/'));

gulp.src('src/css/timeline.css')
.pipe(gulp.dest('dist/css/'))
.pipe(notify({
Expand Down

0 comments on commit 6f2a476

Please sign in to comment.