andrelohmann-silverstripe-themes / bootstrap
Bootstrap Theme for Silverstripe
Package info
github.com/andrelohmann/silverstripe-themes-bootstrap
Language:Scheme
Type:silverstripe-theme
pkg:composer/andrelohmann-silverstripe-themes/bootstrap
4.6.1
2017-06-01 18:40 UTC
Requires
- php: >=5.4
- composer/installers: *
This package is auto-updated.
Last update: 2026-05-29 01:24:20 UTC
README
Silverstripe Version 3.3.x
Bootstrap Version 3.3.6
Maintainer Contact
- Andre Lohmann <lohmann.andre (at) gmail (dot) com>
Requirements
Silverstripe 3.6.x
Introduction
This Theme provides a general Page.ss Template as a startingpoint for a new Project.
put the follwoing post install and post updates scripts into your composer.json
"scripts": {
"post-install-cmd": [
"sed -i -e 's/$.support.focusinBubbles = !!($.browser.msie);/$.support.focusinBubbles = !!($.browser) && !$.browser.msie;/g' framework/thirdparty/jquery-entwine/dist/jquery.concrete-dist.js",
"sed -i -e 's/$.support.focusinBubbles = !!($.browser.msie);/$.support.focusinBubbles = !!($.browser) && !$.browser.msie;/g' framework/thirdparty/jquery-entwine/dist/jquery.entwine-dist.js"
],
"post-update-cmd": [
"sed -i -e 's/$.support.focusinBubbles = !!($.browser.msie);/$.support.focusinBubbles = !!($.browser) && !$.browser.msie;/g' framework/thirdparty/jquery-entwine/dist/jquery.concrete-dist.js",
"sed -i -e 's/$.support.focusinBubbles = !!($.browser.msie);/$.support.focusinBubbles = !!($.browser) && !$.browser.msie;/g' framework/thirdparty/jquery-entwine/dist/jquery.entwine-dist.js"
]
},