You are not logged in.
When loading the Write tab FF error console shows this:
Error: document.article is undefined
Source File: http://localhost:8888/txp430/textpattern/upm_quicktags/lib/txp.js
Line: 19
Sounds like it could be the culprit?!
Edit:
Now the tag buttons show under Pages and Forms but still not in Write – strange
Last edited by masa (2011-03-21 19:06:05)
Offline
Have it working, but only for pages and forms.
:P
Hrrm, great post, following masa’s one, but it wasn’t displayed yet when I submitted.
Last edited by uli (2011-03-21 21:14:20)
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
I thought I’d install this plugin as I’d used it on an old TXP site a few years back. It works for Pages and Forms but not on the Write tab (where I was particularly interested in using it). I was testing it in Google Chrome 12.0.742.91
Any suggestions?
Offline
I guess someone with better knowledge of js could fix that error mentioned in my previous post
Offline
Yes I did notice your post but my knowledge of JavaScript isn’t up to much.
Offline
Masa: Well based on your error message the problem appears to with the txp.js file in the upm_quicktags/lib folder with this line
if (write_tab && document.article.from_view.value == 'text')
But then I guess you knew that already ;-) Just what you’d need to change to get it working I don’t know.
Last edited by Algaris (2011-06-16 08:52:36)
Offline
Did anyone get this fixed for themselves by any chance? I am not sure my way to just omit the second if argument is such a good idea…
Changed
if (write_tab && document.article.from_view.value == 'text')
to
if (write_tab)
Last edited by stephan (2011-09-05 15:14:06)
Offline
Sorry I haven’t responded. Try this:
if (write_tab && document.article_form.from_view.value == 'text')
My email address has changed recently. If you need to contact me, use the forum contact form.
Offline