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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<widget id="com.pilotosbarranquilla.pilotos" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
<name>Pilotos Mobile</name> | |
<description> | |
Pilotos de barranquilla es una aplicación que ayuda a gestionar las operaciones fluviales de puertos. | |
</description> | |
<author email="[email protected]" href="http://soluntech.com"> | |
</author> | |
<content src="index.html"/> |
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 | |
# Ubuntu Developer Script For Ionic Framework | |
# Created by Nic Raboy | |
# http://www.nraboy.com | |
# | |
# | |
# Downloads and configures the following: | |
# | |
# Java JDK | |
# Apache Ant |
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. |
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. |
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
.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
.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
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
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){ |