Skip to content

Instantly share code, notes, and snippets.

View jenswittmann's full-sized avatar

Jens Wittmann – Gestaltung & Entwicklung jenswittmann

View GitHub Profile
@jenswittmann
jenswittmann / gist:1104418adf3720b72c10
Created November 21, 2014 13:41
Phongap: iframes under iOS
// CSS
#wrapper-app {
overflow: auto;
width: 100%;
height: 100%;
-webkit-overflow-scrolling: touch;
}
// HTML
...
@jenswittmann
jenswittmann / redactorReplace
Last active November 18, 2015 21:32
MODX Redactor replace inline CSS and add SrcSet: http://jens-wittmann.de/codeschnipsel/redactor-editor.html
<?php
$o = $input;
// replace inline css
$o = preg_replace('/(<[^>]+) style=".*"/iU', '$1', $o);
// remove paragraph around img and iframe
$o = preg_replace('/<p>\s*(<img.*>)\s*<\/p>/iU', '$1', $o);
$o = preg_replace('/<p>\s*(<iframe.*>\s*<\/iframe>)\s*<\/p>/iU', '$1', $o);
@jenswittmann
jenswittmann / gist:6346133
Last active December 21, 2015 18:19
Looking for responsive embed Videos? Hier is the CSS only trick. You only have to remove width/height in the <iframe> tag. Thanks to www.andmag.se/2011/11/responsive-embeds
.embed {
position: relative;
overflow: hidden;
height: 0;
padding-bottom: 56.25%; /* 16/9 ratio */
padding-top: 30px; /* IE6 workaround*/
iframe {
position: absolute;
top: 0;
@jenswittmann
jenswittmann / gist:6346337
Created August 26, 2013 20:36
Um das Datum unter MODx Revolution korrekt auszugeben, musst du die folgende Einstellung unter "Systemeinstellungen" vornehmen, damit Umlaute korrekt dargestellt werden.
Locale locale de_DE.UTF-8
@jenswittmann
jenswittmann / secure-headers.php
Created December 4, 2016 13:18
MODX secure http headers
header("X-Content-Type-Options: nosniff");
header("X-XSS-Protection: 1; mode=block");
header("X-Frame-Options: SAMEORIGIN");
header("Connection: keep-alive");
header("ETag: ");
header("Content-Security-Policy: base-uri https://nixlos.de; default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval'; style-src https: 'unsafe-inline'; child-src https://nixlos.de");
@jenswittmann
jenswittmann / gist:8ebf882e956c89976fd4dfe2a32a7f37
Created April 4, 2017 10:56
SSH Kommandos zur Sicherung von MODX Evolution auf all-Inkl.com
find -type d -exec /bin/chmod 755 {} \;
find -type f -exec /bin/chmod 644 {} \;
find -type f -name "*.php*" -exec /bin/chmod 600 {} \;
@jenswittmann
jenswittmann / collections.custom.js
Created August 1, 2018 07:32
MODX Collections update TV from grid
collections.combo.TVNAME = function(config) {
config = config || {};
Ext.applyIf(config,{
store: new Ext.data.SimpleStore({
fields: ['v']
,data: [
['val1'],
['val2'],
['val3']
]
@jenswittmann
jenswittmann / fluid-base-rem
Last active April 14, 2020 08:15
Set font-size for <html> proportional for scalling everything with rem.
<!--
$basePxFor1rem = 16;
$baseDesignWidthFromAdobeXD = 1920;
$baseFontSize = 100 * $basePxFor1rem / $baseDesignWidthFromAdobeXD;
Result: .833333333333333vw;
-->
<style>
html {
font-size: .833333333333333vw;
@jenswittmann
jenswittmann / loopjson.php
Last active August 21, 2020 14:54
loopJSON (MODX Snippet)
<?php
/**
* loopJSON
*
* DESCRIPTION
*
* This Snippet loop a JSON Array.
*
* PROPERTIES:
*
@jenswittmann
jenswittmann / instagramLatestPosts.php
Created October 20, 2020 08:58
instagramLatestPosts Snippet for MODX Revolution
<?php
/**
* instagramLatestPosts
*
* DESCRIPTION
*
* This Snippet return latest posts from Instagram as iframe embed.
*
* PROPERTIES:
*