Skip to content

Instantly share code, notes, and snippets.

View logikonline's full-sized avatar
💭
Always coding... don't interrupt me

Dave Friedel logikonline

💭
Always coding... don't interrupt me
View GitHub Profile
@logikonline
logikonline / Diff.cs
Last active August 29, 2015 14:27 — forked from TaoK/Diff.cs
C# port of JS 3-way merge implementation in Synchrotron
// Copyright (c) 2006, 2008 Tony Garnock-Jones <tonyg@lshift.net>
// Copyright (c) 2006, 2008 LShift Ltd. <query@lshift.net>
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
@logikonline
logikonline / modal-video.vue
Created October 29, 2023 09:44 — forked from daltonrooney/modal-video.vue
Modal video player component for Vue.js
/* Based on https://github.com/appleple/react-modal-video/ */
<template>
<div v-if="isOpen">
<div
:class="classNames.modalVideo"
tabIndex='-1'
role='dialog'
:aria-label="aria.openMessage"
@click="$emit('update:isOpen', false)"