Skip to content

Commit a2870c2

Browse files
committed
Merge branch 'master' of github.com:ITCase/pyramid_sacrud_pages
Conflicts: gulpfile.js ps_pages/static/js/__ps_pages.js ps_pages/templates/ps_pages/tree.jinja2 pyramid_sacrud_pages/static/js/__pyramid_sacrud_pages.js.map
2 parents 0e0c036 + a16241f commit a2870c2

File tree

10 files changed

+77
-20
lines changed

10 files changed

+77
-20
lines changed

gulpfile.js

Lines changed: 4 additions & 2 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
});
@@ -77,11 +77,13 @@ gulp.task('watch', function() {
7777
'./ps_pages/static/css/**/*.css',
7878
'!./ps_pages/static/css/__ps_pages.css'], { verbose: true }, batch(function () {
7979
gulp.start('css');
80+
cb();
8081
}));
8182
watch(['./ps_pages/static/js/*.js',
8283
'./ps_pages/static/js/**/*.js',
83-
'!./ps_pages/static/js/__ps_pages.js'], { verbose: true }, batch(function () {
84+
'!./ps_pages/static/js/__ps_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
}

ps_pages/assets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def includeme(config):
1515
config.include('pyramid_jinja2')
1616
config.add_jinja2_extension('jinja2.ext.with_')
1717
config.add_jinja2_search_path("templates")
18-
config.add_static_view('/static_sacrud_pages', 'ps_pages:static')
18+
config.add_static_view('/ps_pages_static', 'ps_pages:static')

ps_pages/static/css/__ps_pages.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ps_pages/static/css/__ps_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.

ps_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)