Skip to content

Commit

Permalink
Clean refs to old less/ directory
Browse files Browse the repository at this point in the history
less/ no longer exists. Change refs to css/ instead.
  • Loading branch information
mrhota committed Jan 3, 2016
1 parent 633a5a2 commit 92b5632
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module.exports = function(grunt) {
paths: ['css']
},
files: {
'css/bootstrap-timepicker.css': ['less/*.less']
'css/bootstrap-timepicker.css': ['css/*.less']
}
},
prod: {
Expand All @@ -80,7 +80,7 @@ module.exports = function(grunt) {
yuicompress: true
},
files: {
'css/bootstrap-timepicker.min.css': ['less/*.less']
'css/bootstrap-timepicker.min.css': ['css/*.less']
}
}
},
Expand All @@ -107,7 +107,7 @@ module.exports = function(grunt) {
}
},
less: {
files: ['less/timepicker.less'],
files: ['css/timepicker.less'],
tasks: ['less:dev'],
options: {
livereload: true
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" type="text/css" media="screen" />
<link href="assets/pygments.css" type="text/css" rel="stylesheet" />
<link href="assets/prettify/prettify.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet/less" type="text/css" href="less/timepicker.less" />
<link rel="stylesheet/less" type="text/css" href="css/timepicker.less" />
<style type="text/css">
body {
padding-top: 50px;
Expand Down

0 comments on commit 92b5632

Please sign in to comment.