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
| <ul> | |
| <li> | |
| <a href="http://itversion6.com">Inicio</a> | |
| <ul> | |
| <li><a href="http://itversion6.com/empresa">Empresa</a></li> | |
| <li><a href="http://itversion6.com/inicio">Inicio</a></li> | |
| <li><a href="http://itversion6.com/servicios">Servicios</a></li> | |
| <li><a href="http://itversion6.com/novedades">Novedades</a></li> | |
| <li><a href="http://itversion6.com/soporte">Soporte</a></li> | |
| <li><a href="http://itversion6.com/contacto">Contacto</a></li> |
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
| <!DOCTYPE html> | |
| <html lang="es-CO"> | |
| <head> | |
| <meta name="charset" content="utf-8" > | |
| <title>Gomosoft - Agencia de software y diseño web</title> | |
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(a) | |
| "use-strict"; | |
| $.fn.hours = function(){ | |
| for( i = 1 ; i < 24 ; i ++) | |
| { | |
| var ampm = (i < 12 ) ? "am" : "pm"; | |
| var hour = (i < 12) ? i : i - 12; | |
| $(this).append("<option value='{{hour}}'>{{hour}}</option>".replace(/\{\{hour\}\}/g, hour + ":00 " + ampm)); | |
| $(this).append("<option value='{{hour}}'>{{hour}}</option>".replace(/\{\{hour\}\}/g, hour + ":30 " + ampm)); |
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
| // searcher_tabs controller by gomosoft | |
| // dependences jQuery 1.7 > | |
| window.SEARCHER_TABS = function(){ | |
| var _this = $(this); | |
| var filters = {}; | |
| var keys = { | |
| "venta" : 1, | |
| "arriendo" : 2 |
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
| window.ls = window.localStorage; | |
| (function(a,d){ | |
| $_ = jQuery; | |
| var dialog = null; | |
| var cart= { | |
| items : [], |
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
| .clearfix{*zoom:1} | |
| .clearfix:before,.clearfix:after{display:table;content:""} | |
| .clearfix:after{clear:both} | |
| #overr{position:fixed;left:0;top:0;width:100%; height:100%;display:none;} | |
| #confirmation{z-index:100000;position:fixed;width:450px;max-height:400px;background:white;left:50%;margin-left:-255px;top:150px;box-shadow:0 3px 19px black;border-radius:2px;overflow:hidden;overflow-y:auto}#confirmation *{font-family:"Lucida grande",Arial,sans-serif;font-size:13px} | |
| #confirmation .content{word-break:break-all; padding:12px 6px; overflow:auto; max-height:300px;} | |
| #confirmation .buttons{*zoom:1;display:block;border-top:1px solid #ccc}#confirmation .buttons span{display:block;float:left;float:right;border-right:1px solid #ccc;padding:10px 0;height:22px;cursor:pointer;width:49.8%;text-align:center}#confirmation .buttons span:hover{background:#F7F7F7} | |
| #confirmation .buttons span:first-child{border:0} | |
| #confirmation.chocolate{background:#A71729;color:white}#confirmation.chocolate .buttons span:hover{background:#d41d34} |
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
| <?php | |
| extract($_GET); | |
| include('controlSesion.php'); | |
| require('bd.php'); | |
| include('includes/parametros.php'); | |
| include('funciones/fechas.php'); | |
| if(isset($_GET["filters"])){ |
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
| //order controller | |
| (function(a,b){ | |
| console.log(a); | |
| var order_listener = function(){ | |
| $("#orden") | |
| .off("change") |
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 writing_time_out(){ | |
| var who = { | |
| user: tu.nombre, | |
| writing: 'no' | |
| } | |
| socket.emit('escribiendo', who); |
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
| <?php | |
| define('DB_HOST','inmaventa.db.10365283.hostedresource.com'); | |
| define('DB_USER','inmaventa'); | |
| define('DB_PASS','Inm@venta2013'); | |
| define('TB_PREFIX',''); | |
| class db_controller_exception extends Exception{}; | |
| class db_controller{ |