-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bf1915
commit 6803c2d
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Zendesk-Dopbox bei Seitenaufruf öffnen | ||
--- | ||
|
||
## Zendesk-Dopbox bei Seitenaufruf öffnen | ||
|
||
Möchte man auf der eigenen Seite die Dropbox von Zendesk gleich beim Seitenaufruf öffnen, dann kann man dies wie folgt realisieren: | ||
|
||
### URL | ||
|
||
``` | ||
http://www.doamin.tld/datei.html#support | ||
``` | ||
|
||
### Quelltext (direkt nach dem Quelltext der Integration für die Zendesk-Dropbox einfügen) | ||
|
||
```javascript | ||
<script type="text/javascript"> | ||
if (window.location.hash == '#support') { | ||
Zenbox.render(); | ||
} | ||
</script> | ||
``` |