From 96cc6b9efd3b2f2bf15f578c16c8c1ae50a7779a Mon Sep 17 00:00:00 2001 From: Leonardo Merlin Date: Fri, 24 Apr 2015 09:46:22 -0300 Subject: [PATCH] Fix: default is production env. --- js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 589eff9..40da0f2 100644 --- a/js/main.js +++ b/js/main.js @@ -32,7 +32,7 @@ if(participa){ // Set isProduction to true when at production environment // Set isProduction to false when at development environment -var isProduction = false; +var isProduction = true; // default is true if( isProduction ){ var noosferoAPI = host + '/api/v1/articles/' + proposal_discussion + '?private_token=' + private_token + '&fields=id,children,categories,abstract,body,title,image,url'; } else { -- libgit2 0.21.2