mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
8 lines
361 B
JavaScript
8 lines
361 B
JavaScript
import { $TD } from "../api/bridge.js";
|
|
|
|
export default function() {
|
|
if (!("TD" in window)) {
|
|
$TD.alert("warning", "Some TweetDuck features failed to load. This might happen if your Twitter account is enrolled into the TweetDeck Preview, which TweetDuck does not support. Try opting out of the TweetDeck Preview to restore TweetDuck's functionality.");
|
|
}
|
|
}
|