Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: Feedback to: Textpattern 4.5.0 Beta released
thebombsite wrote:
It seems that every page has a page title except for the “Write” page. Any reason for this?
Titles serve as an easily recognizable element to distinguish these all-to-similar looking list pages from each other. The Write page really stands out so there’s not much sense in adding a title just for the sake of uniformity and waste valuable screen estate.
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
Testing with Hive and Sandspace4 on iOS: the close
button on the alerts (message panes) doesn’t seem to work. Clicking the ‘x’ button does nothing.
(I’ve only tested with the simulator so far – both iPad and iPod are out of the house atm).
aside: the jQuery docs on ‘live’ (used for the above) notes it is deprecated in 1.7.
Where is that emoji for a solar powered submarine when you need it ?
Sand space – admin theme for Textpattern
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
Are there reasons you have to click the x to close the alerts/announcements? Is it possible to just click anywhere on the screen to close them?
I was also thinking/wondering if it would be useful (or overkill) to include a few more preferences during the install, like Site Name, Permanent link mode etc?
I suppose it would open a can of worms as to which perference is more important, this would differ from person to person and its not so hard to change them…. just throwing it out there :)
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
phiw13 wrote:
Testing with Hive and Sandspace4 on iOS: the
close
button on the alerts (message panes) doesn’t seem to work. Clicking the ‘x’ button does nothing.
Yes. On mobile Safari click doesn’t bubble from non-clickable elements. Same will apply to iPad. Basically the span (span.close
) needs to be changed to a link (a.close
element).
aside: the jQuery docs on ‘live’ (used for the above) notes it is deprecated in 1.7.
Good catch. Indeed Robert updated the jQuery version while a back which allows changing some stuff. Will write a patch that replaces live() method with on(). Unlike the docs say, it will not actually change anything performance-wise.
Last edited by Gocom (2012-08-09 07:12:52)
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
Hmm, Phil did seem to have changed the spans to links in some of the commits after the patch I sent. For classic the change was bundled in the the notification look commits and for Hive… somewhere. That said, the close link should have a target (href="#"
attribute), which makes the link, well, clickable. Which in return should ensure that it bubbles.
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
phiw13 wrote:
Testing with Hive and Sandspace4 on iOS: the
close
button on the alerts (message panes) doesn’t seem to work. Clicking the ‘x’ button does nothing.
Thanks. Please try r4056.
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
tye wrote:
Are there reasons you have to click the x to close the alerts/announcements? Is it possible to just click anywhere on the screen to close them?
Some might want to copy the message text by selecting with the mouse, for instance.
Offline
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
Where is that emoji for a solar powered submarine when you need it ?
Sand space – admin theme for Textpattern
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
wet wrote:
A plugin issue. We expect a few inevitable incompatibilities with plugins for the write tab due to the new plugin types and AJAX adaptations.
With msd_minibar, the “Sorry the form could not be submitted. Please try again later.” alert message appears each time I try to save the article. It seems that the article gets saved anyway (although I’m not ye 100% sure it gets saved every time I click it).
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
I can confirm that the plugin works fine when installed in the DB, but triggers the above alert message when running from plugin cache dir.
According to plugin author, “there aren’t any lifecycle events that take place on install for this plugin or anything complicated going on.”
I will try to find anything else related to this issue.
Offline
Re: Feedback to: Textpattern 4.5.0 Beta released
maniqui wrote:
With msd_minibar, the “Sorry the form could not be submitted. Please try again later.” alert message appears each time I try to save the article. It seems that the article gets saved anyway (although I’m not ye 100% sure it gets saved every time I click it).
The article would be saved on each time, it’s just the script response that is invalid, so don’t worry about that. These issues are due to the plugin cache directory you are using. Any PHP file that is placed to the plugin cache directory is loaded globally, on each interface-side, on each type of response. This will evidently cause issues as the plugins will be loaded on places where they shouldn’t be.
I will try to find anything else related to this issue.
Last edited by Gocom (2012-08-10 02:27:51)
Offline