generated from jhudsl/OTTR_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 Synced local 'style-sets' with remote 'style-sets'
release-null
- Loading branch information
Showing
25 changed files
with
257 additions
and
47 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<head> | ||
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0"> | ||
<!--script src="https://kit.fontawesome.com/6a26f47516.js"></script--> | ||
<!--<script src="assets/hideOutput.js"></script>--> | ||
<link href="assets/style.css" rel="stylesheet"> | ||
</head> | ||
|
||
|
||
|
||
<div class="hero-image-container"> | ||
<img class= "hero-image" src= "https://github.com/jhudsl/OTTR_Template/raw/main/assets/dasl_thin_main_image.png"> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/*$(document).ready(function() { | ||
// Copy Button | ||
$chunks = $('pre.sourceCode > code.sourceCode'); | ||
$chunks.each(function(i, val) { | ||
$(this).prepend("<button class=\"button copy\"><i class=\"fa fa-copy fa-2x\"></i></button>").click(function() { | ||
var $temp = $("<textarea>"); | ||
$("body").append($temp); | ||
var content = $(this).clone().children("button").remove().end().text(); | ||
$temp.val(content).select(); | ||
document.execCommand("copy"); | ||
$temp.remove(); | ||
}); | ||
}); | ||
// Section anchors | ||
$('.section h1, .section h2, .section h3, .section h4, .section h5').each(function() { | ||
anchor = '#' + $(this).parent().attr('id'); | ||
$(this).addClass("hasAnchor").prepend('<a href="' + anchor + '" class="anchor"></a>'); | ||
}); | ||
});*/ | ||
|
||
|
||
|
||
/* New Clipboard copy | ||
function changeTooltipMessage(element, msg) { | ||
var tooltipOriginalTitle=element.getAttribute('data-original-title'); | ||
element.setAttribute('data-original-title', msg); | ||
$(element).tooltip('show'); | ||
element.setAttribute('data-original-title', tooltipOriginalTitle); | ||
} | ||
if(ClipboardJS.isSupported()) { | ||
$(document).ready(function() { | ||
var copyButton = "<button type='button' class='btn btn-primary btn-copy-ex' type = 'submit' title='Copy to clipboard' aria-label='Copy to clipboard' data-toggle='tooltip' data-placement='left auto' data-trigger='hover' data-clipboard-copy><i class='fa fa-copy'></i></button>"; | ||
$("div.sourceCode").addClass("hasCopyButton"); | ||
// Insert copy buttons: | ||
$(copyButton).prependTo(".hasCopyButton"); | ||
// Initialize tooltips: | ||
$('.btn-copy-ex').tooltip({container: 'body'}); | ||
// Initialize clipboard: | ||
var clipboardBtnCopies = new ClipboardJS('[data-clipboard-copy]', { | ||
text: function(trigger) { | ||
return trigger.parentNode.textContent; | ||
} | ||
}); | ||
clipboardBtnCopies.on('success', function(e) { | ||
changeTooltipMessage(e.trigger, 'Copied!'); | ||
e.clearSelection(); | ||
}); | ||
clipboardBtnCopies.on('error', function() { | ||
changeTooltipMessage(e.trigger,'Press Ctrl+C or Command+C to copy'); | ||
}); | ||
}); | ||
} | ||
*/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.