This file contains 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
<div class="row wrapper border-bottom white-bg page-heading"> | |
<div class="col-lg-10"> | |
<h2>Nueva Solicitud</h2> | |
<ol class="breadcrumb"> | |
<li> | |
<a href="dashboard.html">Dashboard</a> | |
</li> | |
<li> | |
<a href="#/solicitudes">Solicitudes</a> | |
</li> |
This file contains 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
<div class="row wrapper border-bottom white-bg page-heading"> | |
<div class="col-lg-12"> | |
<h2>Crear Orden de Servicio</h2> | |
<ol class="breadcrumb"> | |
<li> | |
<a href="dashboard.html">Dashboard</a> | |
</li> | |
<li> | |
<a href="#/ordenes_servicio">Ordenes de Servicio</a> | |
</li> |
This file contains 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).scroll( function(){ | |
var headerOffset = 0; | |
var scrollPos = $(document).scrollTop(); | |
var ancho = $( window ).width(); | |
if(ancho > 768){ headerOffset = 100; } | |
else{ headerOffset = 80; } | |
if (scrollPos > headerOffset){ | |
$('.navbar > .container .navbar-collapse ul, .navbar>.container .navbar-brand').addClass('collapsed'); |
This file contains 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 scrolls(){ | |
$('body').on('click', '.link_to', function(e){ | |
e.preventDefault(); | |
var id = $(this).attr('href'); | |
var scroll = $(id).offset().top - 50; | |
if(id == "#home"){ scroll = 0; } | |
if($( window ).width() > 768){ |
This file contains 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
angular.module('App') | |
.controller('HomeCtrl', ['$scope', '$http', '$location', | |
function($scope, $http, $location) { | |
console.log('Init Controller'); | |
$scope.formContact = { | |
'name' : '', | |
'email' : '', | |
'tel' : '', | |
'message' : '' | |
}; |
This file contains 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
.fixed-video{ | |
position:fixed; | |
top:0; | |
left:0; | |
witdth:100%; | |
height:100%; | |
z-index:1; | |
} |
This file contains 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
.btn-sol { | |
display: inline-block; | |
padding: 1em 1.5em 0.9em 1.5em; | |
text-decoration: none; | |
font-size: 1.5em; | |
margin: 0 0.5em 0.5em 0; | |
color: #555; | |
background-color: transparent; | |
border: 1px solid rgba(0,0,0,0.19999999999999996); | |
border-radius: 5px; |
This file contains 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
#!/bin/bash | |
echo 'Debes tener en cuenta que deben estar previamente instalados el sdk de android, cordova y jdk de JAVA, asà como los PATHS correspondientes a cada uno \n' | |
echo 'Preparando APK ...' | |
sudo rm appSigned.apk | |
sudo cordova build --release android | |
keyname="signerkey" #remplazar por el nombre por defecto de la llave generada | |
appid="com.app.exampleid" #remplazar por el id de la aplicacion que compilaremos |
This file contains 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
<IfModule mod_ssl.c> | |
<VirtualHost _default_:443> | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/html | |
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn, | |
# error, crit, alert, emerg. | |
# It is also possible to configure the loglevel for particular | |
# modules, e.g. |
NewerOlder