From 46489720bf27792d18151084e49e8c47a2cc4900 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 15 Aug 2016 11:16:01 +0200 Subject: Always pull right like in the client --- js/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/notification.js b/js/notification.js index c71e0d0..ddbc6d2 100644 --- a/js/notification.js +++ b/js/notification.js @@ -124,7 +124,7 @@ _.each(actionsData, function(actionData) { // FIXME: use handlebars template actions.append( - '' ); // TODO create event handler on click for given action type -- cgit v1.2.3 From edc1fd5be89438b34e88d3b79a92361b7e63831d Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 15 Aug 2016 11:16:47 +0200 Subject: Clean up travis --- .travis.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 158dd42..259bbb1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ php: - 5.5 - 5.6 - 7 - - hhvm env: global: @@ -60,11 +59,6 @@ script: - sh -c "if [ '$INTEGRATION' != '1' -a '$JSTESTS' != '1' -a '$CODECHECK' != '1' -a '$CODECHECK' != '2' -a '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi" - cd ../.. - # Run Javascript unit tests -# - cd tests/js -# - sh -c "if [ '$JSTESTS' = '1' ]; then npm install --deps; node_modules/karma/bin/karma start karma.config.js --single-run; fi" -# - cd ../ - matrix: include: - php: 5.4 @@ -79,9 +73,6 @@ matrix: env: DB=mysql;CODECHECK=2 - php: 5.4 env: DB=mysql;INTEGRATION=1 -# - php: 5.4 -# env: DB=mysql;JSTESTS=1 allow_failures: - - php: hhvm - env: DB=mysql;CODECHECK=2 fast_finish: true -- cgit v1.2.3