- The History
- Why does it exist?
- Bike Shedding/LookingFor
- Do we have to use it?
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 url = window.location; | |
| var element = $(".ui.vertical.menu a.item").filter(function() { | |
| return this.href == url || url.href.indexOf(this.href) == 0; | |
| }).addClass("active").parent().parent().parent(); | |
| if (element.is("li")) { | |
| element.addClass("active"); | |
| } |
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
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
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
| import { Controller } from "stimulus" | |
| import { DirectUpload } from "@rails/activestorage" | |
| import Dropzone from "dropzone" | |
| import { getMetaValue, findElement, removeElement, insertAfter } from "helpers" | |
| Dropzone.autoDiscover = false | |
| export default class extends Controller { | |
| static targets = [ "input" ] |
OlderNewer