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
<div class="card mb-4 shadow-sm"> | |
<div class="card-body"> | |
<div class="row"> | |
<div class="col-12"> | |
<h1 class="card-title pricing-card-title">Item list</h1> | |
</div> | |
<div class="col-sm-11 offset-sm-1 col-12"> | |
<div class="card card-body mb-3"> | |
<h2 class="card-title pricing-card-title mb-0" id="customers-check"><i class="fas fa-user text-muted mr-3" id="customers-check-icon"></i> Customers</h2> | |
</div> |
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
<cfscript> | |
CSVResultsExport(); | |
</cfscript> | |
<cffunction name="CSVResultsExport"> | |
<cfscript> | |
var pc = getpagecontext(); | |
pc.getresponse().setcontenttype( 'text/csv' ); | |
//make sure browsers like IE don't try and open "embedded excel" | |
cfheader( name="Content-Disposition", value="attachment;filename=voting-results.csv" ); |
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
@extends( 'layout.app' ) | |
@section( 'tasks-left-nav-item' ) | |
<li class="nav-item"> | |
<a class="nav-link active" href="{{ route( 'teams.tickets.index', [ 'team' => auth()->user()->recent_team ] ) }}"> | |
Tasks <span class="sr-only">(current)</span> | |
<i class="fas ml-3 fa-check-double fa-navx text-muted"></i> | |
</a> | |
</li> | |
@overwrite |
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
$().ready(function(){ | |
/* | |
confirmation link logic | |
this allows a btn with confirmation and confirm-btn classes attached | |
to confirm before calling the btns main location | |
on click of buttons with confirmation class | |
- does it have the confirm btn class (since there's also a confirmed-btn class) |
NewerOlder