Skip to content

Commit a16241f

Browse files
committed
redirect fix
1 parent 94e90d8 commit a16241f

File tree

9 files changed

+79
-22
lines changed

9 files changed

+79
-22
lines changed

gulpfile.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var browserify = require('browserify'),
1717

1818
gulp.task('browser-sync', function() {
1919
browserSync({
20-
proxy: "127.0.0.1:6543",
20+
proxy: "127.0.0.1:8080",
2121
logLevel: "silent",
2222
});
2323
});
@@ -52,7 +52,7 @@ gulp.task('browserify', function() {
5252
gulp.task('css', function() {
5353
path = ['./pyramid_sacrud_pages/static/css/*.css',
5454
'./pyramid_sacrud_pages/static/css/**/*.css',
55-
'!./pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css'];
55+
'!pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css'];
5656
gulp.src(path)
5757
.pipe(newer('./pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css'))
5858
.pipe(sourcemaps.init())
@@ -75,13 +75,15 @@ gulp.task('css', function() {
7575
gulp.task('watch', function() {
7676
watch(['./pyramid_sacrud_pages/static/css/*.css',
7777
'./pyramid_sacrud_pages/static/css/**/*.css',
78-
'!./pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css'], { verbose: true }, batch(function () {
78+
'!pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css'], { verbose: true }, batch(function() {
7979
gulp.start('css');
80+
cb();
8081
}));
8182
watch(['./pyramid_sacrud_pages/static/js/*.js',
8283
'./pyramid_sacrud_pages/static/js/**/*.js',
83-
'!./pyramid_sacrud_pages/static/js/__pyramid_sacrud_pages.js'], { verbose: true }, batch(function () {
84+
'!pyramid_sacrud_pages/static/js/__pyramid_sacrud_pages.js'], { verbose: true }, batch(function(cb) {
8485
gulp.start('browserify');
86+
cb();
8587
}));
8688
});
8789

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
},
6767
"jqtree": {
6868
"depends": "jquery"
69-
}
69+
},
70+
"speakingurl": "speakingurl"
7071
}
7172
}

pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css

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

pyramid_sacrud_pages/static/css/__pyramid_sacrud_pages.css.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.

pyramid_sacrud_pages/static/css/main.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,8 @@
9595
{
9696
color: #fff;
9797
}
98+
.jqtree-toggler
99+
{
100+
margin-left: -0.2em !important;
101+
margin-right: 0 !important;
102+
}

0 commit comments

Comments
 (0)