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
<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
<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> |
OlderNewer