Author |
|
AIWEB Groupie
Joined: 19 October 2010 Location: United States
Online Status: Offline Posts: 54
|
Posted: 27 November 2010 at 5:53pm | IP Logged
|
|
|
How would one go about adding custom links (for integrated applications) to the header?
Like this->
email@host.com | Contacts | Custom1 | Custom2
Thanks
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 29 November 2010 at 2:10am | IP Logged
|
|
|
Check /js/common/defines.js file, you'll find the following code there:
Code:
var CustomTopLinks = [
//{ Name: 'Google', Link: 'http://google.com/' }
]; |
|
|
I guess the idea is clear enough: you need to supply an array of objects having name and link supplied for each of them, e.g.:
Code:
var CustomTopLinks = [
{ Name: 'Google', Link: 'http://google.com/' },
{ Name: 'Hotmail', Link: 'http://hotmail.com/' },
{ Name: 'Yahoo', Link: 'http://yahoo.com/' }
]; |
|
|
Hope this helps!
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
AIWEB Groupie
Joined: 19 October 2010 Location: United States
Online Status: Offline Posts: 54
|
Posted: 30 November 2010 at 5:14am | IP Logged
|
|
|
Awesome! That worked perfectly, many thanks.
|
Back to Top |
|
|