helthe/turbolinks-bundle
最新稳定版本:1.3.1
Composer 安装命令:
composer require helthe/turbolinks-bundle
包简介
Turbolinks bundle for Symfony
README 文档
README
The HeltheTurbolinksBundle integrates the Helthe Turbolinks Component with your Symfony application.
Installation
Step 1: Add package requirement in Composer
Manually
Add the following in your composer.json:
{
"require": {
// ...
"helthe/turbolinks-bundle": "~1.3"
}
}
Using the command line
$ composer require 'helthe/turbolinks-bundle=~1.3'
Step 2: Register the bundle in the kernel
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Helthe\Bundle\TurbolinksBundle\HeltheTurbolinksBundle(), ); }
Step 3: Add Composer scripts for automatic installation of assets
{
"scripts": {
"post-install-cmd": [
"Helthe\\Bundle\\TurbolinksBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Helthe\\Bundle\\TurbolinksBundle\\Composer\\ScriptHandler::installAssets"
]
}
}
Usage
To start using turbolinks, all you need to do is add the turbolinks javascript to your layout.
Both the original coffeescript version and compiled version of each script are available for use.
Inserting the javascript in your layout
Directly
<script src="{{ asset('bundles/heltheturbolinks/js/turbolinks.js') }}"></script>
Using Assetic
{% javascripts '@HeltheTurbolinksBundle/Resources/public/js/turbolinks.js' %} <script type="text/javascript" src="{{ asset_url }}"></script> {% endjavascripts %}
Using jquery.turbolinks
If you need to use jquery.turbolinks, you need to add it before turbolinks.js
Compatibility
Turbolinks is designed to work with any browser that fully supports pushState and all the related APIs. This includes Safari 6.0+ (but not Safari 5.1.x!), IE10, and latest Chromes and Firefoxes.
Do note that existing JavaScript libraries may not all be compatible with Turbolinks out of the box due to the change in instantiation cycle. You might very well have to modify them to work with Turbolinks' new set of events. For help with this, check out the Turbolinks Compatibility project.
Additional Resources
Please refer to the turbolinks and jquery.turbolinks projects if you require additional information on the javascript libraries.
You will find additional documentation with the turbolinks component documentation.
Bugs
For bugs or feature requests, please create an issue.
统计信息
- 总下载量: 61.31k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 39
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-12-21