Skip to content

Instantly share code, notes, and snippets.

View tangorri's full-sized avatar

tango tangorri

  • France
View GitHub Profile
@tangorri
tangorri / grid-scroll-directive.js
Last active November 30, 2018 13:49
scope not injectable in controller ...
/**
* Created by ant on 16/04/2015.
*/
'use strict';
angular.module('project.widgets-grid').directive(
'gridScroll', function gridScrollDefinitionFn
($timeout,
DashboardGrid)
{
#!/bin/bash
# Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
set -e
cd "`dirname "$0"`"
if [ ! -f Engine/Binaries/DotNET/GitDependencies.exe ]; then
echo "GitSetup ERROR: This script does not appear to be located \
in the root UE4 directory and must be run from there."
@tangorri
tangorri / optout-trackers.js
Created October 8, 2024 08:39
toggle off all in page
Array.from(document.getElementsByTagName('input')).forEach(i => i.checked = false)