From 310db731ea3d65245d659ea892315aa1ab1f8f5f Mon Sep 17 00:00:00 2001 From: blavenie <benoit.lavenier@e-is.pro> Date: Mon, 4 Jul 2016 14:40:36 +0200 Subject: [PATCH] - Fix JS hint --- www/js/config.js | 2 +- www/js/controllers/wallet-controllers.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/www/js/config.js b/www/js/config.js index 1e50b545..01bcddc7 100644 --- a/www/js/config.js +++ b/www/js/config.js @@ -14,7 +14,7 @@ angular.module("cesium.config", []) "TIMEOUT": 4000, "DEBUG": false, "VERSION": "0.1.25", - "BUILD_DATE": "2016-07-04T12:20:29.811Z" + "BUILD_DATE": "2016-07-04T12:37:12.038Z" }) ; \ No newline at end of file diff --git a/www/js/controllers/wallet-controllers.js b/www/js/controllers/wallet-controllers.js index 8f6d84fd..fd003ee9 100644 --- a/www/js/controllers/wallet-controllers.js +++ b/www/js/controllers/wallet-controllers.js @@ -375,12 +375,12 @@ function WalletTxErrorController($scope, $rootScope, $ionicPopup, $timeout, UIUt $scope.filterPositive = function(prop){ return function(item){ return item[prop] > 0; - } + }; }; $scope.filterNegative = function(prop){ return function(item){ return item[prop] < 0; - } + }; }; } -- GitLab