andrelohmann-silverstripe-themes / bootstrap
Bootstrap Theme for Silverstripe
Installs: 883
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Open Issues: 0
Language:Scheme
Type:silverstripe-theme
Requires
- php: >=5.4
- composer/installers: *
- dev-master
- 4.6.1
- 4.6.0
- 4.5.1
- 4.5.0
- 4.4.1
- 4.4.0
- 4.3.0
- 4.2.0
- v4.1.0
- v4.0.0
- v3.1.13.7
- v3.1.13.6
- v3.1.13.5
- v3.1.13.4
- v3.1.13.3
- v3.1.13.2
- v3.1.13.1
- v3.1.13.0
- v3.1.12.3
- v3.1.12.2
- v3.1.12.1
- v3.1.12.0
- v3.1.10.3
- v3.1.10.2
- v3.1.10.1
- v3.1.10.0
- v3.1.9.1
- v3.1.9.0
- v3.1.8.3
- v3.1.8.2
- v3.1.8.1
- v3.1.8.0
- v3.1.7.1
- v3.1.7.0
- v3.1.6.6
- v3.1.6.5
- v3.1.6.4
- v3.1.6.3
- v3.1.6.2
- v3.1.6.1
- v3.1.6.0
- v3.1.5.1
- v3.1.5.0
- dev-develop
This package is auto-updated.
Last update: 2024-10-29 04:25:36 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"
]
},