This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/reactstrap/esm/Alert.js b/node_modules/reactstrap/esm/Alert.js | |
index 06b5076..db67141 100644 | |
--- a/node_modules/reactstrap/esm/Alert.js | |
+++ b/node_modules/reactstrap/esm/Alert.js | |
@@ -9,7 +9,7 @@ import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import classNames from 'classnames'; | |
import { mapToCssModules, tagPropType } from './utils'; | |
-import Fade from './Fade'; | |
+import Fade, { fadeDefaultProps } from './Fade'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Creates a HTML context for testing elements that require a DOM | |
* such as the Tooltip. | |
* | |
* @returns A tuple with the DOM container and a cleanup function. | |
* | |
* @example | |
* ```typescript | |
* let container: HTMLElement; | |
* let cleanup: () => void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This snippet can be used to pull up anchor tags so they are not covered by a fixed header. | |
* You can use anchor tags within floated elements and you are still able to click on links above the anchor | |
* if the header is hidden. | |
*/ | |
// dont' style anchors | |
a[name]:not([href]), a[name]:not([href]):hover { | |
color: $body-font-color; | |
font-family: $sansFontFamily; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
""" | |
Add the necessary tracking information to track each page with Adform. | |
Add ADFORM_PM to settings. Alternatively you could leave out the pm field and just | |
write it directly into the template. | |
<script type="text/javascript"> | |
{% if feincms_page and feincms_page.adform_id > 0 %} | |
var _adftrack = { | |
pm: {{ feincms_page.adform_pm }}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
""" | |
Thumbnailer class for FeinCMS. Allows using sorl thumbnail as default thumbnailer. | |
Use this if you have mediafiles stored on S3. | |
Add this line to your settings: | |
FEINCMS_MEDIALIBRARY_THUMBNAIL = 'feincms_sorl_thumbnailer.thumbnailer' | |
""" | |
from __future__ import unicode_literals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Based on http://blog.localkinegrinds.com/2007/09/06/digg-style-pagination-in-django/ | |
and http://djangosnippets.org/snippets/2680/ | |
Recreated by Haisheng HU <[email protected]> on Jun 3, 2012 | |
Updated by Simon Bächler for Foundation on Apr. 28, 2015 | |
http://foundation.zurb.com/docs/components/pagination.html | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ajax_links_selector = 'a.ajax'; | |
var content_selector = '#content'; | |
var first_call = true; | |
var navilevel_substring = 3; // how many chars from pathname are static (3 for languagecode like /de/) | |
/* needs jquery address loaded: http://www.asual.com/jquery/address/ | |
* | |
* needs feincms to be ajax-enabled: | |
* | |
* feincms/views/base.py: |