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
name: IHM Premiere Prep Cart | |
description: Powers the My Cart functionality of Premiere Prep. | |
package: Custom | |
type: module | |
core: 8.x | |
dependencies: | |
- entityqueue:entityqueue | |
- drupal:views |
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
Last login: Sat Sep 3 12:46:48 on ttys002 | |
+prompt_powerlevel9k_setup:24> [[ $(whence -w prompt_powerlevel9k_setup) -regex-match "function"+prompt_powerlevel9k_setup:24> whence -w prompt_powerlevel9k_setup | |
+prompt_powerlevel9k_setup:24> [[ $(whence -w prompt_powerlevel9k_setup) -regex-match "function" ]] | |
+prompt_powerlevel9k_setup:25> autoload -U is-at-least | |
+prompt_powerlevel9k_setup:26> is-at-least 5.0.8 | |
+is-at-least:17> emulate -L zsh | |
+is-at-least:19> local 'IFS=.-' 'min_cnt=0' 'ver_cnt=0' part min_ver version | |
+is-at-least:21> min_ver=( 5 0 8 ) | |
+is-at-least:22> version=( 5 0 8 0 ) | |
+is-at-least:24> (( 0 <= 3 )) |
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).ready(function () { | |
var previewNode = document.querySelector("#template"); | |
previewNode.id = ""; | |
var previewTemplate = previewNode.parentNode.innerHTML; | |
previewNode.parentNode.removeChild(previewNode); | |
var eventsDropzone = new Dropzone(document.body, { | |
// The configuration we've talked about above | |
thumbnailWidth: 80, |
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
####################################### | |
# Run artisan on the Homestead VM | |
# | |
# Arguments: | |
# Folder | |
# Command to Run | |
# Returns: | |
# Output of the Artisan Command | |
####################################### | |
function artisan() { |
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
/* | |
Creates a behavior where a link will pin to the bottom of a screen out of a menu | |
when the scroll reaches 80 pixels or more. When the scroll goes below 80, it | |
resets. | |
Things you can (and should) edit: | |
- The scrollTop variable. When do you want to create the pinning effect? | |
- The class of your menu link | |
- Any CSS properties you want to set for the new element. |