From 4136c1506e0c894e604ec069339313987a7e05e7 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Sun, 20 Dec 2015 21:04:34 +0100 Subject: Implemented client upload with rangeslider and zip open --- afb-client/app/Frontend/app.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'afb-client/app/Frontend/app.js') diff --git a/afb-client/app/Frontend/app.js b/afb-client/app/Frontend/app.js index e539062..5e99d77 100644 --- a/afb-client/app/Frontend/app.js +++ b/afb-client/app/Frontend/app.js @@ -18,9 +18,10 @@ 'JQueryEmu', 'HomeModule', 'SampleModule', - 'UploadFile', + 'UploadFiles', 'LinkButton', 'TokenRefresh', + 'RangeSlider', 'ModalNotification' ]) .config(config) @@ -28,8 +29,10 @@ ; config.$inject = ['$urlRouterProvider', '$locationProvider']; + + console.log ("***location=" + window.location + " search" + window.search) - function config($urlProvider, $locationProvider) { + function config($urlProvider, $locationProvider, ConfigApp) { $urlProvider.otherwise('/home'); // https://docs.angularjs.org/error/$location/nobase @@ -41,5 +44,5 @@ FastClick.attach(document.body); } -console.log ("@@APPNAME@@ Loaded"); +console.log ("opa=@@APPNAME@@ Loaded"); })(); -- cgit 1.2.3-korg