Questions tagged [tether]

Tether is a comprehensive JavaScript library for anchoring elements to other elements, as well as the browser viewport. It can be used with or without jQuery.

Tether is a comprehensive for anchoring elements to other elements, as well as the browser viewport. It can be used with or without .

It can be used to create "sticky" headers or footers to maintain an element's visibility in the viewport, or anchor an absolutely positioned element to another when a container or the page is scrolled.

A less feature-rich but more lightweight alternative is Sticky Kit.

Links:

49 questions
2
votes
2 answers

Is there any way to get usdt from Ropsten Testnet?

I am making an app that can send and receive usdt using Flutter web3. I want to test on Ropsten network, but I want to know how to get usdt for testing.
junmo choi
  • 195
  • 2
  • 7
2
votes
1 answer

webpack: Tether is not defined

I'm creating a WebExtension, I need to use the selection-menu library in my content.js. It has in tether dependencies, so I installed: npm install tether npm install selection-menu Then in my code I write: import * as Tether from 'tether' import…
Marsel.V
  • 1,015
  • 1
  • 12
  • 28
2
votes
2 answers

Using Bootstrap 4 with Angular 4

After installing Bootstrap 4, in Angular 4, I am getting an error : [Script Loader] Error: Bootstrap tooltips require Tether (http://tether.io/). I tried installing tether, passing tether CDN but it dint help.
Ramya
  • 135
  • 1
  • 1
  • 10
2
votes
1 answer

Manipulating DOM in Vue 2.2.1 using Tether is causing errors. Is there a right way to do it?

I'm trying to use tether and vue 2.2.1 together. Here is a jsfiddle example: https://jsfiddle.net/awei01/fwttsa6o/2/ What (i think) tether does: If the tethered DOM node is inside the normal document flow (not position: absolute), the tether code…
awei
  • 1,154
  • 10
  • 26
2
votes
1 answer

Browserify shim doesn't seem to attach Tether to window object

I have the following in my package.json file: "browserify": { "transform": [ "browserify-shim" ] }, "browser": { "jquery": "./node_modules/jquery/dist/jquery.js", "tether": "./node_modules/tether/dist/tether.js" }, "browserify-shim": { …
davidpauljunior
  • 8,238
  • 6
  • 30
  • 54
2
votes
2 answers

Bootstrap, popover not working

I want to add a popover to this glyphicon, however I cannot get it to work. HTML
STEP
  • 65
  • 1
  • 10
1
vote
0 answers

How can i create a smart contract on TRON network to use USDT Token instead of TRX

I want to deploy a smart contract on TRON Network but I want it to use USDT instead of TRX I have already created a smart contract which uses TRX no i need something that uses USDT i just need a simple contract in which the user can invest a…
1
vote
0 answers

Does coinbase API support USDT?

Sorry, I'm new here but my question is pretty basic. I'm in need of suggestions for an API that can provide USDT addresses (any network is fine), and provide webhook notifications on transactions on these addresses. Looking at coinbase API, they…
CTREQER
  • 11
  • 1
1
vote
1 answer

Programmatically enable USB tethering on Android 11

all. I normally write my own enable/disable usb tether scripts for each Android version I'm on, but 11 got me stumped. It looks like they've moved the tethering modules to a different location and it doesn't appear tethering can be called from…
1
vote
1 answer

bootstrap 4 modal bug?

needitohelp
  • 103
  • 2
  • 7
1
vote
1 answer

JSPM doesn't load dependencies as expected

I've forked the official Bootstrap repository (4.0.0-alpha.6) to implement Gulp rather than Grunt, and to start theming Bootstrap for our own needs. The project we're developing uses JSPM for its package management. When we try and install our…
Tom
  • 4,257
  • 6
  • 33
  • 49
1
vote
1 answer

Setting up tether-drop to work with angular-cli@1.0.0-beta.24

I'm having difficulty figuring out how to setup tether-drop with my angular 2 app created with angular-cli@1.0.0-beta.24. Steps to reproduce: Create a new project with the angular-cli. ng new tester --skip-git Follow the angular-cli instructions…
1
vote
1 answer

Bootstrap 4 tether placements

Bootstrap 4 using tether.js as for positions, however it only support 4 position, "top" "right" "bottom" "left", how can I extend to more options which tether support 12 of them? example "top left" or "top right"
max li
  • 2,417
  • 4
  • 30
  • 44
1
vote
0 answers

how do you configure tether for popups with Zurb Foundation for Apps?

I'd like to use popup functionality from Zurb Foundation for Apps (Zurb's popup documentation) which uses Tether (Tether on GitHub). I've tried using the configuration as found on GitHub: new Tether({ element:…
Tom Schreck
  • 5,177
  • 12
  • 68
  • 122
0
votes
1 answer

Which function in the tether contract handles the minting and burning of USDT?

I am a newbie in solidity and currently learning through examples. I was examining the smart contract of tether: https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7#code but I could not find the minting and burning functions which…