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) |
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
<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
<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
XCTRLSTYLE 2, 3 | |
CONTROLLER 1 OUT ControllerType | |
IF ControllerType == 4 OR ControllerType == 5 THEN | |
PRINT "Ah! A wizard just like me!" | |
ELSE | |
PRINT "Nothing to see here." | |
END IF |
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
var prop_list = ds_map_create(); | |
ds_map_add( prop_list, "current_dialog", false ); | |
ds_map_add( prop_list, "in_dialog", false ); | |
ds_map_add( prop_list, "dialogs", ds_list_create() ); //the list of "dialogs" - created via the new_dialog script | |
return prop_list; |
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
var prop_list = ds_map_create(); | |
ds_map_add( prop_list, "text", "" ); //the text this dialog should show | |
ds_map_add( prop_list, "type", "click" ); //the progression type of the dialogy. click or delay are the two options so far | |
ds_map_add( prop_list, "delay", 3 ); //if the type is delay, how many seconds to show the dialog for | |
return prop_list; |
OlderNewer