Commit c7608db2 authored by Andy Hausmann's avatar Andy Hausmann

Updated Docs.

parent 731d21f7
### 1.4.1
* __Improvement__: JS can now be injected inline via Page Renderer as well which enables the Extension to put in the Footer and Header if wished so.
### 1.4.0
* __Improvement__: CSS & JS is now being rendered through the Page Renderer which enables the Extensions Resources to be concatenated and compressed.
### 1.3.4
* __Hotfix__: Fixed ViewHelper for link building - multiple dynamic links per page faled to render. Thanks to Simon Rauterberg for reporting this.
......
......@@ -128,8 +128,9 @@ to get further infos about settings and language labels.
Hint at the beginning: If you want to use special objects/vars in Partials, you'll need to pass them through as an argument, e.g.
<f:render partial="JavaScript"
arguments="{settings: settings, data: data, configuration: configuration}"/>
<f:render
partial="JavaScript"
arguments="{settings: settings, data: data, configuration: configuration}"/>
### Storing the templates somewhere else
......@@ -204,6 +205,23 @@ Of course you can adjust the TypoScript Setup to fit your need via lib.example.s
Just dig into /Configuration/Typoscript/setup.txt to get a clue about the possibilities.
### … throw Inline JS into Head or to closing body tag
Visit the Main Template in typo3conf/ext/flexslider/Resources/Private/Templates/FlexSlider/List.html and replace
<f:render
partial="JavaScript"
arguments="{settings: settings, data: data}"/>
with
<fs:AddJsInline
code="<f:render partial='JavaScriptRaw'
arguments='{settings: settings, data: data}'/>"
name="fs-{data.uid}"
moveToFooter="{settings.lib.moveToFooter}" />
## Roadmap and Tasks
Plaese take a look at the Github Issue Tracker for this project.
......@@ -215,7 +233,14 @@ If you have any ideas, features or bug requests, don't hesitate to report them i
Feel free to fork and pull.
### Contributors
Simon Rauterberg
* Hotfix for DynLinkViewHelper)
## Contributors
Xaver Maierhofer
Simon Rauterberg (Hotfix for DynLinkViewHelper)
\ No newline at end of file
* Improvement for AddCssJsViewHelper
* Improvement for AddJQueryViewHelper
* New AddJsInlineViewHelper
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment