Skip to content

Instantly share code, notes, and snippets.

View drew-thompson's full-sized avatar

Drew Thompson drew-thompson

View GitHub Profile
@drew-thompson
drew-thompson / gist:f8d26f4dbffda623e098ebb3b6074b58
Created April 6, 2026 22:47
MetadataPrimitiveAnchor isInline/truncate behavior changes
# MetadataPrimitiveAnchor - Inline & Truncation Behavior
## Props
### `isInline?: boolean`
Controls the `TextLink` wrapper's display mode.
- `true` → `className="inline"` (flows naturally with surrounding text)
- `false`/undefined → `className="gap-gap-50 inline-flex items-center"` (default, for standalone links)
@drew-thompson
drew-thompson / app.component.ts
Created June 3, 2019 22:22
Basic lib-jitsi-meet Angular Implementation
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
title = 'jitsi';
private jitsi: any;
@drew-thompson
drew-thompson / app.component.ts
Created May 22, 2019 21:45
Angular Video - Initialize Client with Handlers
import { Component, OnInit } from '@angular/core';
import { NgxAgoraService, Stream, AgoraClient, ClientEvent } from 'ngx-agora';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
title = 'angular-video';