From dd1a45140c8a6cb3f6c5d7247120c05fa37cdf24 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 28 Nov 2014 20:03:04 +0100 Subject: web: add virtualscroll mixin --- web/gulpfile.js | 1 + 1 file changed, 1 insertion(+) (limited to 'web/gulpfile.js') diff --git a/web/gulpfile.js b/web/gulpfile.js index d106ecd1..db723eec 100644 --- a/web/gulpfile.js +++ b/web/gulpfile.js @@ -43,6 +43,7 @@ var path = { 'js/stores/flowstore.js', 'js/connection.js', 'js/components/utils.jsx.js', + 'js/components/virtualscroll.jsx.js', 'js/components/header.jsx.js', 'js/components/flowtable-columns.jsx.js', 'js/components/flowtable.jsx.js', -- cgit v1.2.3 From 14a8d2f5b83a1ea28abbb490f6c94c43b4e1f960 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Tue, 9 Dec 2014 18:18:14 +0100 Subject: always use the app dispatcher --- web/gulpfile.js | 1 - 1 file changed, 1 deletion(-) (limited to 'web/gulpfile.js') diff --git a/web/gulpfile.js b/web/gulpfile.js index db723eec..6e338924 100644 --- a/web/gulpfile.js +++ b/web/gulpfile.js @@ -30,7 +30,6 @@ var path = { 'vendor/lodash/lodash.js', 'vendor/react/react-with-addons.js', 'vendor/react-router/react-router.js', - 'vendor/react-bootstrap/react-bootstrap.js' ], app: [ 'js/utils.js', -- cgit v1.2.3 From e12bf19e35867f3ea69f45054decb024a75fc2b4 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Wed, 10 Dec 2014 00:47:05 +0100 Subject: web: add event store, fix all those bugs --- web/gulpfile.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'web/gulpfile.js') diff --git a/web/gulpfile.js b/web/gulpfile.js index 6e338924..f7df820d 100644 --- a/web/gulpfile.js +++ b/web/gulpfile.js @@ -36,10 +36,9 @@ var path = { 'js/dispatcher.js', 'js/actions.js', 'js/flow/utils.js', - 'js/stores/base.js', - 'js/stores/settingstore.js', - 'js/stores/eventlogstore.js', - 'js/stores/flowstore.js', + 'js/store/store.js', + 'js/store/view.js', + 'js/store/settingstore.js', 'js/connection.js', 'js/components/utils.jsx.js', 'js/components/virtualscroll.jsx.js', -- cgit v1.2.3