-
Posts
2,769 -
Joined
-
Last visited
-
Days Won
31
Everything posted by Martijn Geerts
-
Just rediscovered an 'old' movie about Adobe Flash from alanbecker. Funny
-
- 2
-
-
Good to see you back Joss.
-
I have no issues with Safari 6.1 & PW 2.35. ps, I'm happy Safari developer tools is useful again.
-
This is great. Thankyou ryan!
-
Yep, agree to diogo & Joss is the Boss at talking about pages.
-
If that are multiple choice questions then you can save the question id and answer id in a cooky. Then you can check if the answer is ctype_diget (check if is number) and the answer has the parent id the same as the question id.
-
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
Actually the end user percentages are very low. The problem is in our office. Marketing, sales and all other departments work in a intra network with XP IE8. So the render engine of IE7 is used to render. -
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
You can't mix percentages with pixels.( yes you can, working with negative margins and position absolute. ) But thats an other story. For PW, border-box is the way to go I agree. it's a closed environment and IE7 is left out. -
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
The first time I experienced issues with box-sizing was when jquery was at 1.8.3. Took me a long time to discover why fancybox 1.32 was messed up. For me (still have to support IE7) it's just annoying. The most CSS frameworks rely on the "lazy" border-box and js plugins will follow. (Maybe some already do) We as devs have to be aware of box rendering, make exceptions use polyfils (or drop the support for IE7). What looks easy at first side, is just giving overhead. -
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
content-box vs. border-box; Looks like the Netscape vs Explorer war in the old days. Wished Paul Irish never told anything about box-sizing ( or had waited for the death of IE7. ) -
Not yet. Maybe it will be in the future.
-
"prevent this field from being used in textarea fields" makes sense! And if it is added to the FieldtypeFile field settings. It would work for both images and files I guess.
-
It's active here & love it !
-
SoundCloud textformatter
Martijn Geerts replied to Marvin Scharle's topic in Module/Plugin Development
Doesn't seem to work for me. But I can just be me, cause I not sure which url to use. It's just trial and error. For me the whole SoundCloud is a little bit confusing. For audio I now use audio.js. Works great, i'm sorry.- 6 replies
-
- SoundCloud
- textformatter
-
(and 1 more)
Tagged with:
-
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
What it looks like if you click, the clickable area shift some pixels to beneath. So never triggering the click. ( This is also an issue, but not the whole ) -
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
Why do we need that span at all ? Setting a height, line-height and padding: 0 6px should be sufficient. -
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
I've put it to static here, will test it for a while. if it's solved I'll report back. (had the same issue. Chrome Version 30.0.1599.101) -
New ProcessWire admin theme on dev branch
Martijn Geerts replied to ryan's topic in Themes and Profiles
@soma, I think it has to do with the position relative on <button> element. Removing the position (back to static) seems to solve it here. -
SoundCloud textformatter
Martijn Geerts replied to Marvin Scharle's topic in Module/Plugin Development
I gonna try your module & love what you build ! but I get a Fatal error: Call-time pass-by-reference has been removed in /Path/To/modules/TextformatterSoundcloudEmbed.module on line 117 I've changed the format() methode, now it seems to works. public function format(&$str) { $str = $this->embedSoundcloud($str); } ps, can't get it working.- 6 replies
-
- 1
-
-
- SoundCloud
- textformatter
-
(and 1 more)
Tagged with:
-
Adrian added support for FieldtypeCropImage. Big thanks !
-
Fixed a bug where ImageInterceptor failed to recognize images in some circumstances. When images are not in the first imagefield found in the page template, it fails to load. This is fixed with the latest update. also pushed version number.
-
Have a scripts/styles loader like WP
Martijn Geerts replied to pogidude's topic in Wishlist & Roadmap
$config->styles->remove("/path-of/other/styles/you/dont/want/file.css"); or : $config->styles->removeAll(); -
Have a scripts/styles loader like WP
Martijn Geerts replied to pogidude's topic in Wishlist & Roadmap
You can clean that array, before you gonna use it. Or you can make your own array. $cssfiles = new FilenameArray; $cssfiles->add("/site/templates/css/middle.css"); $cssfiles->append("/site/templates/css/last.css"); $cssfiles->prepend("/site/templates/css/first.css"); -
So far I know this is not possible. But I love to have this to. ( It's something for the wish list I think )