This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
# ipv4 | |
listen 80; | |
server_name api.noders.cl; | |
access_log /var/log/nginx/api.noders.cl.log; | |
location / { | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $host; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('DOMContentLoaded', function(event) { | |
/* Función que carga el arbol taxonomico */ | |
cargarArbolTaxonomico(); | |
function cargarArbolTaxonomico() { | |
/* Reinos */ | |
/* Llamada ajax para consultar Reinos */ | |
var codigoConsulta = { | |
'codigoConsulta': 0 | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x | |
async.waterfall([ | |
function(callback) { | |
cargarTaxon("División", callback) | |
}, | |
function(callback) { | |
cargarTaxon("Clase", callback) | |
}, | |
function(callback) { | |
cargarTaxon("Subclase", callback) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var makeFileUploadable = function(file) { | |
var ob = {} | |
$scope.reader = new FileReader(); | |
$scope.reader.onloadend = function(e) { | |
console.log(e.target.result); | |
ob.fileData = e.target.result; | |
uploadFile(ob) | |
} | |
$scope.reader.onerror = function(e) { | |
deferred.reject(e.target.error); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
# ipv4 | |
listen 80; | |
server_name noders.ec; | |
access_log /var/log/nginx/noders.ec.log; | |
location / { | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $host; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "webpack", | |
"version": "0.0.0", | |
"authors": [ | |
"[email protected] <felipe torres>" | |
], | |
"license": "MIT", | |
"ignore": [ | |
"**/.*", | |
"node_modules", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function stackedHorizontalBarGraphVentas() { | |
return { | |
restrict: 'E', | |
scope: { | |
selectedTab: "=", | |
graphTotalData: "=", | |
graphMetaData: "=", | |
graphData: '=' | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id" : ObjectId("557a0326bc695d5674b3cce3"), | |
"ScenarioId" : ObjectId("557883c19d285b6945ab96ed"), | |
"Data" : { | |
"strategy" : { | |
"products" : [ | |
{ | |
"productId" : ObjectId("5575e4831563d590408317ae"), | |
"percent" : 20, | |
"id" : "POSTPAGO" |
OlderNewer