You may want to try nighty version of `{{projectName}}`, to test new widgets or new features. The nighty version is hosted on dropbox and github, which is most updated. But, sometimes buggy. Here is github version:
``` {{>bottle-scripts-gh}} ``` Here is dropbox version: ``` {{>bottle-scripts-db}} ```You may check release history, too.
To support different devices, sometimes you will need to require more patch module to fix some issue. Here is a YUI config to auto include required patch for you:
``` var YUI_config = { groups: { 'patches': { base: 'http://yui.yahooapis.com/gallery-2013.03.20-19-59/build/', modules: { 'gallery-patch-373-scrollbar-ie7': { condition: { trigger: 'scrollview-scrollbars', test: function () { var IE = navigator.userAgent.match(/MSIE (\d+)/); return (YUI.version < '3.9') && IE && (IE[1] < 9); } } }, 'patch-390-transition-htcbutterfly': { condition: { trigger: 'transition', test: function () { return (YUI.version > '3.6.0') && navigator.userAgent.match(/Butterfly/) && ! navigator.userAgent.match(/(Chrome|CrMo|CriOS)\//); } } } } } } }; ```