survivalkit 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.markdown +4 -0
- data/README.markdown +81 -0
- data/VERSION +1 -0
- data/lib/survivalkit.rb +9 -0
- data/stylesheets/survivalkit/extend/_all.sass +1 -0
- data/stylesheets/survivalkit/extend/_helpers.sass +20 -0
- data/stylesheets/survivalkit/functions/_all.sass +3 -0
- data/stylesheets/survivalkit/functions/_calculations.sass +19 -0
- data/stylesheets/survivalkit/functions/_color.sass +7 -0
- data/stylesheets/survivalkit/functions/_modular-scale.sass +142 -0
- data/stylesheets/survivalkit/mixins/_all.sass +5 -0
- data/stylesheets/survivalkit/mixins/_helpers.sass +29 -0
- data/stylesheets/survivalkit/mixins/_layout.sass +19 -0
- data/stylesheets/survivalkit/mixins/_sfx.sass +199 -0
- data/stylesheets/survivalkit/mixins/_typography.sass +77 -0
- data/stylesheets/survivalkit/mixins/_ui.sass +49 -0
- data/stylesheets/survivalkit/readme.markdown +1 -0
- data/stylesheets/survivalkit/reset/_meyer-reset.sass +33 -0
- data/stylesheets/survivalkit/reset/_normalize.sass +345 -0
- data/stylesheets/survivalkit/reset/_reset.sass +18 -0
- data/stylesheets/survivalkit/survival_kit/_survival-kit.sass +52 -0
- data/stylesheets/survivalkit/variables/_all.sass +2 -0
- data/stylesheets/survivalkit/variables/_color_names.sass +149 -0
- data/stylesheets/survivalkit/variables/_color_schemes.sass +54 -0
- data/templates/project/files/apple-touch-icon.png +0 -0
- data/templates/project/files/crossdomain.xml +25 -0
- data/templates/project/files/favicon.ico +0 -0
- data/templates/project/files/google.yml +22 -0
- data/templates/project/files/htaccess.htaccess +478 -0
- data/templates/project/files/html/404.html +22 -0
- data/templates/project/files/html/formalize_jquery_demo.html +288 -0
- data/templates/project/files/html/formalize_jquery_disabled.html +288 -0
- data/templates/project/files/html/formalize_jquery_errors.html +288 -0
- data/templates/project/files/html/index.html +63 -0
- data/templates/project/files/html/survivalkit/elements-common.html +549 -0
- data/templates/project/files/html/survivalkit/elements-html5.html +2959 -0
- data/templates/project/files/html/survivalkit/elements-typography.html +196 -0
- data/templates/project/files/html/survivalkit/elements-ui-patterns-drupal.html +625 -0
- data/templates/project/files/html/survivalkit/elements-ui-patterns.html +151 -0
- data/templates/project/files/html/survivalkit/index.html +94 -0
- data/templates/project/files/html/survivalkit/styletile/index.html +1 -0
- data/templates/project/files/html/survivalkit/styletile/styletile.html +168 -0
- data/templates/project/files/humans.txt +43 -0
- data/templates/project/files/robots.txt +5 -0
- data/templates/project/ie.sass +3 -0
- data/templates/project/kit/kit-source.jquery.js +21 -0
- data/templates/project/libs/dd_belatedpng.js +13 -0
- data/templates/project/libs/formalize/README.txt +11 -0
- data/templates/project/libs/formalize/dojo.formalize.js +174 -0
- data/templates/project/libs/formalize/extjs.formalize.js +168 -0
- data/templates/project/libs/formalize/jquery.formalize.js +158 -0
- data/templates/project/libs/formalize/mootools.formalize.js +163 -0
- data/templates/project/libs/formalize/prototype.formalize.js +171 -0
- data/templates/project/libs/formalize/yui.formalize.js +168 -0
- data/templates/project/libs/jquery-1.6.js +8865 -0
- data/templates/project/libs/jquery-1.6.min.js +16 -0
- data/templates/project/libs/modernizr-2.0.min.js +4 -0
- data/templates/project/libs/mootools-core-1.3.1-full-compat-yc.js +485 -0
- data/templates/project/libs/plugins.js +16 -0
- data/templates/project/libs/respond.min.js +7 -0
- data/templates/project/libs/selectivizr.js +5 -0
- data/templates/project/manifest.rb +78 -0
- data/templates/project/partials/01-variables/_all.sass +6 -0
- data/templates/project/partials/01-variables/_base.sass +29 -0
- data/templates/project/partials/01-variables/_colors.sass +21 -0
- data/templates/project/partials/01-variables/_fonts.sass +22 -0
- data/templates/project/partials/01-variables/_grids-all.sass +10 -0
- data/templates/project/partials/02-extend/_all.sass +1 -0
- data/templates/project/partials/02-extend/_typography.sass +39 -0
- data/templates/project/partials/03-defaults/_all.sass +10 -0
- data/templates/project/partials/03-defaults/_common.sass +40 -0
- data/templates/project/partials/03-defaults/_font-face.sass +3 -0
- data/templates/project/partials/03-defaults/markup/_edits.sass +6 -0
- data/templates/project/partials/03-defaults/markup/_grouping.sass +52 -0
- data/templates/project/partials/03-defaults/markup/_headers.sass +33 -0
- data/templates/project/partials/03-defaults/markup/_images.sass +14 -0
- data/templates/project/partials/03-defaults/markup/_semantics.sass +104 -0
- data/templates/project/partials/03-defaults/markup/_tables.sass +48 -0
- data/templates/project/partials/03-defaults/markup/forms/_form-defaults.sass +67 -0
- data/templates/project/partials/03-defaults/markup/forms/_formalize.sass +261 -0
- data/templates/project/partials/04-grids/_grids-blueprint.sass +20 -0
- data/templates/project/partials/04-grids/_grids-susy.sass +38 -0
- data/templates/project/partials/05-ui-patterns/_common.sass +26 -0
- data/templates/project/partials/05-ui-patterns/drupal/_ui-patterns.sass +83 -0
- data/templates/project/partials/06-sprites/_sprites.sass +20 -0
- data/templates/project/partials/07-layout-design/_design.sass +6 -0
- data/templates/project/partials/07-layout-design/_layout.sass +8 -0
- data/templates/project/partials/08-styletile/_tile-design.sass +139 -0
- data/templates/project/partials/08-styletile/_tile-layout.sass +81 -0
- data/templates/project/partials/09-responsive/_responsive-blueprint.sass +139 -0
- data/templates/project/partials/09-responsive/_responsive-susy.sass +106 -0
- data/templates/project/partials/10-media/_print.sass +57 -0
- data/templates/project/partials/11-browser-adjustments/_ie.sass +26 -0
- data/templates/project/partials/11-browser-adjustments/_modernizr.sass +8 -0
- data/templates/project/partials/11-browser-adjustments/_selectivizr.sass +0 -0
- data/templates/project/partials/readme.markdown +3 -0
- data/templates/project/readme.markdown +3 -0
- data/templates/project/script.js +26 -0
- data/templates/project/selectivizr.sass +8 -0
- data/templates/project/sources/BigText/README.markdown +128 -0
- data/templates/project/sources/BigText/artifacts/output.html +32 -0
- data/templates/project/sources/BigText/bigtext.js +242 -0
- data/templates/project/sources/BigText/demo/bigtextWizard.css +129 -0
- data/templates/project/sources/BigText/demo/bigtextWizard.js +373 -0
- data/templates/project/sources/BigText/demo/css/flexbox.css +105 -0
- data/templates/project/sources/BigText/demo/css/images/button_bg.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/datepicker.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/icon_sprite.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/progress_bar.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/slider_h_bg.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/slider_handles.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/slider_v_bg.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/the_gradient.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-icons_222222_256x240.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-icons_228ef1_256x240.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-icons_ffffff_256x240.png +0 -0
- data/templates/project/sources/BigText/demo/css/jquery-ui-1.8rc3.custom.css +519 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.eot +0 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.svg +223 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.ttf +0 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.woff +0 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/stylesheet.css +12 -0
- data/templates/project/sources/BigText/demo/index.html +95 -0
- data/templates/project/sources/BigText/demo/js/jquery.ba-throttle-debounce.js +252 -0
- data/templates/project/sources/BigText/demo/js/jquery.ba-throttle-debounce.min.js +9 -0
- data/templates/project/sources/BigText/demo/js/jquery.smartresize.js +41 -0
- data/templates/project/sources/BigText/demo/js/modernizr-1.6.js +892 -0
- data/templates/project/sources/BigText/demo/js/modernizr-1.6.min.js +30 -0
- data/templates/project/sources/BigText/demo/resizeDemoSmartResize.html +37 -0
- data/templates/project/sources/BigText/demo/resizeDemoThrottle.html +38 -0
- data/templates/project/sources/BigText/demo/simpleDemo.html +42 -0
- data/templates/project/sources/BigText/demo/simpleDemoDiv.html +26 -0
- data/templates/project/sources/BigText/test.bat +4 -0
- data/templates/project/sources/BigText/test.sh +5 -0
- data/templates/project/sources/BigText/test/bigtext.conf +6 -0
- data/templates/project/sources/BigText/test/bigtextTest.js +192 -0
- data/templates/project/sources/BigText/test/lib/JsTestDriver-1.2.2-custom.jar +0 -0
- data/templates/project/sources/BigText/test/lib/jquery-1.4.2.js +6240 -0
- data/templates/project/sources/BigText/test/lib/launch-safari.sh +4 -0
- data/templates/project/sources/Dynamic-Carousel/demo.html +92 -0
- data/templates/project/sources/Dynamic-Carousel/plugin.js +191 -0
- data/templates/project/sources/Dynamic-Carousel/readme.md +10 -0
- data/templates/project/sources/Geared-Scrolling/README.md +31 -0
- data/templates/project/sources/Geared-Scrolling/css/specific.css +88 -0
- data/templates/project/sources/Geared-Scrolling/images/col1.png +0 -0
- data/templates/project/sources/Geared-Scrolling/images/col2.png +0 -0
- data/templates/project/sources/Geared-Scrolling/images/col3.png +0 -0
- data/templates/project/sources/Geared-Scrolling/images/header.png +0 -0
- data/templates/project/sources/Geared-Scrolling/index.html +32 -0
- data/templates/project/sources/Geared-Scrolling/js/init.js +11 -0
- data/templates/project/sources/Geared-Scrolling/js/jquery.heyday.gearedscrolling.js +283 -0
- data/templates/project/sources/Lettering.js/README.md +58 -0
- data/templates/project/sources/Lettering.js/examples/index.html +135 -0
- data/templates/project/sources/Lettering.js/examples/style.css +171 -0
- data/templates/project/sources/Lettering.js/jquery.lettering.js +66 -0
- data/templates/project/sources/PaintbrushJS/common.js +245 -0
- data/templates/project/sources/PaintbrushJS/demo/css/playground.css +334 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/165.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/bee.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/bird.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/helmets.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/jordan.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/leaves.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/lighthouse.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/louvre.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/pods.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/redbarn.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/road.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/sign.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/staples.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/stones.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/tear.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/window.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/bg.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/bg-highlight.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/bg.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/byline.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/current.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/divider.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/forkme.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/heading.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/index.html +171 -0
- data/templates/project/sources/PaintbrushJS/demo/script/common.js +245 -0
- data/templates/project/sources/PaintbrushJS/demo/script/paintbrush.js +607 -0
- data/templates/project/sources/PaintbrushJS/demo/script/playground.js +357 -0
- data/templates/project/sources/PaintbrushJS/demo/script/timing.js +23 -0
- data/templates/project/sources/PaintbrushJS/demo/usage.html +183 -0
- data/templates/project/sources/PaintbrushJS/paintbrush.js +595 -0
- data/templates/project/sources/Respond/README.md +76 -0
- data/templates/project/sources/Respond/respond.min.js +2 -0
- data/templates/project/sources/Respond/respond.src.js +286 -0
- data/templates/project/sources/Respond/test/test.css +61 -0
- data/templates/project/sources/Respond/test/test.html +20 -0
- data/templates/project/sources/Respond/test/test2.css +8 -0
- data/templates/project/sources/Respond/test/unit/index.html +28 -0
- data/templates/project/sources/Respond/test/unit/test.css +56 -0
- data/templates/project/sources/Respond/test/unit/test2.css +5 -0
- data/templates/project/sources/Respond/test/unit/tests.js +97 -0
- data/templates/project/sources/Sticky-Footer-jQuery-Plugin/README.md +27 -0
- data/templates/project/sources/Sticky-Footer-jQuery-Plugin/jquery.heyday.stickyfooter.js +154 -0
- data/templates/project/sources/flexie/README.md +142 -0
- data/templates/project/sources/flexie/demo/css/box-flex.css +30 -0
- data/templates/project/sources/flexie/demo/index.html +108 -0
- data/templates/project/sources/flexie/dist/flexie.min.js +33 -0
- data/templates/project/sources/flexie/src/flexie.js +1872 -0
- data/templates/project/sources/flexie/test/css/demo.css +34 -0
- data/templates/project/sources/flexie/test/css/test.css +141 -0
- data/templates/project/sources/flexie/test/index.html +54 -0
- data/templates/project/sources/flexie/vendor/google-compiler/compiler.jar +0 -0
- data/templates/project/sources/flexie/vendor/yuicompressor/yuicompressor-2.4.2.jar +0 -0
- data/templates/project/sources/flickrbomb/css/app.css +41 -0
- data/templates/project/sources/flickrbomb/css/flickrbomb.css +38 -0
- data/templates/project/sources/flickrbomb/css/global.css +0 -0
- data/templates/project/sources/flickrbomb/demo.html +169 -0
- data/templates/project/sources/flickrbomb/images/bg-clouds.jpg +0 -0
- data/templates/project/sources/flickrbomb/images/bg-ground.jpg +0 -0
- data/templates/project/sources/flickrbomb/images/bomb.png +0 -0
- data/templates/project/sources/flickrbomb/images/bomber.jpg +0 -0
- data/templates/project/sources/flickrbomb/images/old.gif +0 -0
- data/templates/project/sources/flickrbomb/images/setupIcon.png +0 -0
- data/templates/project/sources/flickrbomb/js/app.js +28 -0
- data/templates/project/sources/flickrbomb/js/backbone-localstorage.js +94 -0
- data/templates/project/sources/flickrbomb/js/backbone.js +1011 -0
- data/templates/project/sources/flickrbomb/js/flickrbomb-demo.js +310 -0
- data/templates/project/sources/flickrbomb/js/flickrbomb.js +307 -0
- data/templates/project/sources/flickrbomb/js/underscore.js +713 -0
- data/templates/project/sources/formalize/README.txt +23 -0
- data/templates/project/sources/formalize/assets/css/_formalize.sass +274 -0
- data/templates/project/sources/formalize/assets/css/demo.css +47 -0
- data/templates/project/sources/formalize/assets/css/formalize.css +311 -0
- data/templates/project/sources/formalize/assets/css/reset.css +171 -0
- data/templates/project/sources/formalize/assets/css/text.css +81 -0
- data/templates/project/sources/formalize/assets/images/button.png +0 -0
- data/templates/project/sources/formalize/assets/images/select_arrow.gif +0 -0
- data/templates/project/sources/formalize/assets/js/dojo.formalize.js +174 -0
- data/templates/project/sources/formalize/assets/js/dojo.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/extjs.formalize.js +168 -0
- data/templates/project/sources/formalize/assets/js/extjs.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/jquery.formalize.js +158 -0
- data/templates/project/sources/formalize/assets/js/jquery.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/mootools.formalize.js +163 -0
- data/templates/project/sources/formalize/assets/js/mootools.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/prototype.formalize.js +171 -0
- data/templates/project/sources/formalize/assets/js/prototype.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/yui.formalize.js +168 -0
- data/templates/project/sources/formalize/assets/js/yui.formalize.min.js +1 -0
- data/templates/project/sources/formalize/demo.html +144 -0
- data/templates/project/sources/formalize/dojo_demo.html +213 -0
- data/templates/project/sources/formalize/dojo_disabled.html +213 -0
- data/templates/project/sources/formalize/dojo_errors.html +213 -0
- data/templates/project/sources/formalize/extjs_demo.html +213 -0
- data/templates/project/sources/formalize/extjs_disabled.html +213 -0
- data/templates/project/sources/formalize/extjs_errors.html +213 -0
- data/templates/project/sources/formalize/jquery_demo.html +213 -0
- data/templates/project/sources/formalize/jquery_disabled.html +213 -0
- data/templates/project/sources/formalize/jquery_errors.html +213 -0
- data/templates/project/sources/formalize/mootools_demo.html +213 -0
- data/templates/project/sources/formalize/mootools_disabled.html +213 -0
- data/templates/project/sources/formalize/mootools_errors.html +213 -0
- data/templates/project/sources/formalize/prototype_demo.html +213 -0
- data/templates/project/sources/formalize/prototype_disabled.html +213 -0
- data/templates/project/sources/formalize/prototype_errors.html +213 -0
- data/templates/project/sources/formalize/unstyled.html +210 -0
- data/templates/project/sources/formalize/yui_demo.html +213 -0
- data/templates/project/sources/formalize/yui_disabled.html +213 -0
- data/templates/project/sources/formalize/yui_errors.html +213 -0
- data/templates/project/sources/html5-boilerplate/404.html +38 -0
- data/templates/project/sources/html5-boilerplate/README.md +228 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-114x114-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-57x57-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-72x72-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon.png +0 -0
- data/templates/project/sources/html5-boilerplate/build/build.xml +821 -0
- data/templates/project/sources/html5-boilerplate/build/config/default.properties +80 -0
- data/templates/project/sources/html5-boilerplate/build/config/project.properties +56 -0
- data/templates/project/sources/html5-boilerplate/build/createproject.sh +50 -0
- data/templates/project/sources/html5-boilerplate/build/runbuildscript.bat +5 -0
- data/templates/project/sources/html5-boilerplate/build/tools/ant-contrib-1.0b3.jar +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/htmlcompressor-1.1.jar +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/jpegtran.exe +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/optipng-0.6.4-exe/LICENSE.txt +21 -0
- data/templates/project/sources/html5-boilerplate/build/tools/optipng-0.6.4-exe/optipng.exe +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/yuicompressor-2.4.5.jar +0 -0
- data/templates/project/sources/html5-boilerplate/crossdomain.xml +25 -0
- data/templates/project/sources/html5-boilerplate/css/handheld.css +8 -0
- data/templates/project/sources/html5-boilerplate/css/style.css +263 -0
- data/templates/project/sources/html5-boilerplate/demo/elements.html +531 -0
- data/templates/project/sources/html5-boilerplate/demo/hack.css +85 -0
- data/templates/project/sources/html5-boilerplate/demo/hack2.css +41 -0
- data/templates/project/sources/html5-boilerplate/demo/internet_explorer.png +0 -0
- data/templates/project/sources/html5-boilerplate/demo/test_tubes.png +0 -0
- data/templates/project/sources/html5-boilerplate/demo/tests.html +313 -0
- data/templates/project/sources/html5-boilerplate/favicon.ico +0 -0
- data/templates/project/sources/html5-boilerplate/humans.txt +43 -0
- data/templates/project/sources/html5-boilerplate/index.html +80 -0
- data/templates/project/sources/html5-boilerplate/js/libs/dd_belatedpng.js +13 -0
- data/templates/project/sources/html5-boilerplate/js/libs/jquery-1.5.2.js +8374 -0
- data/templates/project/sources/html5-boilerplate/js/libs/jquery-1.5.2.min.js +16 -0
- data/templates/project/sources/html5-boilerplate/js/libs/modernizr-1.7.min.js +2 -0
- data/templates/project/sources/html5-boilerplate/js/plugins.js +16 -0
- data/templates/project/sources/html5-boilerplate/js/script.js +26 -0
- data/templates/project/sources/html5-boilerplate/robots.txt +5 -0
- data/templates/project/sources/html5-boilerplate/test/index.html +31 -0
- data/templates/project/sources/html5-boilerplate/test/qunit/qunit.css +148 -0
- data/templates/project/sources/html5-boilerplate/test/qunit/qunit.js +1265 -0
- data/templates/project/sources/html5-boilerplate/test/tests.js +27 -0
- data/templates/project/sources/iSwipe-jQuery-Plugin/README.md +26 -0
- data/templates/project/sources/iSwipe-jQuery-Plugin/jquery.heyday.iswipe.js +126 -0
- data/templates/project/sources/infinite-scroll/ajax-loader.gif +0 -0
- data/templates/project/sources/infinite-scroll/jquery.infinitescroll.js +425 -0
- data/templates/project/sources/infinite-scroll/jquery.infinitescroll.min.js +8 -0
- data/templates/project/sources/infinite-scroll/site/assets/anivers_regular.otf +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/buttons.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/logo.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/mobius-strip2.ai +2266 -15
- data/templates/project/sources/infinite-scroll/site/assets/pattern.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/selector spots.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/sites.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/buttons.png +0 -0
- data/templates/project/sources/infinite-scroll/site/infinite-scroll-pattern.gif +0 -0
- data/templates/project/sources/infinite-scroll/site/logo.jpg +0 -0
- data/templates/project/sources/infinite-scroll/site/screens.jpg +0 -0
- data/templates/project/sources/infinite-scroll/site/selectors.jpg +0 -0
- data/templates/project/sources/infinite-scroll/test/test-loadingmsg.html +121 -0
- data/templates/project/sources/infinite-scroll/test/test.html +120 -0
- data/templates/project/sources/infinite-scroll/test/test2.html +70 -0
- data/templates/project/sources/infinite-scroll/test/test3.html +68 -0
- data/templates/project/sources/infinite-scroll/test/trigger.html +140 -0
- data/templates/project/sources/infinite-scroll/test/trigger2.html +80 -0
- data/templates/project/sources/infinite-scroll/test/trigger3.html +80 -0
- data/templates/project/sources/infinite-scroll/wp_infinite_scroll.php +454 -0
- data/templates/project/sources/jquery-lightbox/LICENSE.txt +30 -0
- data/templates/project/sources/jquery-lightbox/README.markdown +8 -0
- data/templates/project/sources/jquery-lightbox/css/lightbox.css +129 -0
- data/templates/project/sources/jquery-lightbox/images/blank.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/close.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/closelabel.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-0.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-1.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-2.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-3.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/loading.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/next.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/nextlabel.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/prev.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/prevlabel.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-0.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-1.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-2.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-3.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/index.html +102 -0
- data/templates/project/sources/jquery-lightbox/jquery.lightbox.js +515 -0
- data/templates/project/sources/jquery-ui/AUTHORS.txt +30 -0
- data/templates/project/sources/jquery-ui/GPL-LICENSE.txt +278 -0
- data/templates/project/sources/jquery-ui/MIT-LICENSE.txt +25 -0
- data/templates/project/sources/jquery-ui/README.md +9 -0
- data/templates/project/sources/jquery-ui/build/build.xml +392 -0
- data/templates/project/sources/jquery-ui/build/build/ant-contrib-0.6.jar +0 -0
- data/templates/project/sources/jquery-ui/build/build/google-compiler-20110320.jar +0 -0
- data/templates/project/sources/jquery-ui/build/build/style.xsl +211 -0
- data/templates/project/sources/jquery-ui/build/build/yuicompressor-2.4.2.jar +0 -0
- data/templates/project/sources/jquery-ui/demos/accordion/collapsible.html +57 -0
- data/templates/project/sources/jquery-ui/demos/accordion/custom-icons.html +69 -0
- data/templates/project/sources/jquery-ui/demos/accordion/default.html +85 -0
- data/templates/project/sources/jquery-ui/demos/accordion/fillspace.html +77 -0
- data/templates/project/sources/jquery-ui/demos/accordion/hoverintent.html +134 -0
- data/templates/project/sources/jquery-ui/demos/accordion/index.html +25 -0
- data/templates/project/sources/jquery-ui/demos/accordion/mouseover.html +57 -0
- data/templates/project/sources/jquery-ui/demos/accordion/no-auto-height.html +58 -0
- data/templates/project/sources/jquery-ui/demos/accordion/sortable.html +83 -0
- data/templates/project/sources/jquery-ui/demos/addClass/default.html +52 -0
- data/templates/project/sources/jquery-ui/demos/addClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/animate/default.html +61 -0
- data/templates/project/sources/jquery-ui/demos/animate/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/categories.html +72 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/combobox.html +195 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/custom-data.html +96 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/default.html +65 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/folding.html +63 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/jquery_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/jqueryui_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/sizzlejs_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/transparent_1x1.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/index.html +27 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/london.xml +114 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/maxheight.html +79 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/multiple-remote.html +85 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/multiple.html +100 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/remote-jsonp.html +87 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/remote-with-cache.html +60 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/remote.html +60 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/search.php +588 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/xml.html +73 -0
- data/templates/project/sources/jquery-ui/demos/button/checkbox.html +44 -0
- data/templates/project/sources/jquery-ui/demos/button/default.html +38 -0
- data/templates/project/sources/jquery-ui/demos/button/icons.html +56 -0
- data/templates/project/sources/jquery-ui/demos/button/index.html +23 -0
- data/templates/project/sources/jquery-ui/demos/button/radio.html +39 -0
- data/templates/project/sources/jquery-ui/demos/button/splitbutton.html +78 -0
- data/templates/project/sources/jquery-ui/demos/button/toolbar.html +120 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/alt-field.html +36 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/animation.html +58 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/buttonbar.html +35 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/date-formats.html +47 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/date-range.html +49 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/default.html +33 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/dropdown-month-year.html +36 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/icon-trigger.html +37 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/images/calendar.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/index.html +31 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/inline.html +33 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/localization.html +162 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/min-max.html +33 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/multiple-calendars.html +36 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/other-months.html +37 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/show-week.html +39 -0
- data/templates/project/sources/jquery-ui/demos/demos.css +334 -0
- data/templates/project/sources/jquery-ui/demos/dialog/animated.html +56 -0
- data/templates/project/sources/jquery-ui/demos/dialog/default.html +54 -0
- data/templates/project/sources/jquery-ui/demos/dialog/index.html +23 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal-confirmation.html +69 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal-form.html +167 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal-message.html +71 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal.html +60 -0
- data/templates/project/sources/jquery-ui/demos/draggable/constrain-movement.html +69 -0
- data/templates/project/sources/jquery-ui/demos/draggable/cursor-style.html +49 -0
- data/templates/project/sources/jquery-ui/demos/draggable/default.html +39 -0
- data/templates/project/sources/jquery-ui/demos/draggable/delay-start.html +45 -0
- data/templates/project/sources/jquery-ui/demos/draggable/events.html +77 -0
- data/templates/project/sources/jquery-ui/demos/draggable/handle.html +50 -0
- data/templates/project/sources/jquery-ui/demos/draggable/index.html +28 -0
- data/templates/project/sources/jquery-ui/demos/draggable/revert.html +44 -0
- data/templates/project/sources/jquery-ui/demos/draggable/scroll.html +51 -0
- data/templates/project/sources/jquery-ui/demos/draggable/snap-to.html +68 -0
- data/templates/project/sources/jquery-ui/demos/draggable/sortable.html +57 -0
- data/templates/project/sources/jquery-ui/demos/draggable/visual-feedback.html +77 -0
- data/templates/project/sources/jquery-ui/demos/droppable/accepted-elements.html +60 -0
- data/templates/project/sources/jquery-ui/demos/droppable/default.html +53 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras2.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras2_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras3.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras3_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras4.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras4_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/index.html +24 -0
- data/templates/project/sources/jquery-ui/demos/droppable/photo-manager.html +184 -0
- data/templates/project/sources/jquery-ui/demos/droppable/propagation.html +80 -0
- data/templates/project/sources/jquery-ui/demos/droppable/revert.html +61 -0
- data/templates/project/sources/jquery-ui/demos/droppable/shopping-cart.html +101 -0
- data/templates/project/sources/jquery-ui/demos/droppable/visual-feedback.html +78 -0
- data/templates/project/sources/jquery-ui/demos/effect/default.html +109 -0
- data/templates/project/sources/jquery-ui/demos/effect/easing.html +108 -0
- data/templates/project/sources/jquery-ui/demos/effect/index.html +19 -0
- data/templates/project/sources/jquery-ui/demos/hide/default.html +102 -0
- data/templates/project/sources/jquery-ui/demos/hide/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/images/calendar.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-config-on-tile.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-config-on.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-spindown-closed.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-spindown-open.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/icon-docs-info.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/pbar-ani.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/index.html +329 -0
- data/templates/project/sources/jquery-ui/demos/menu/contextmenu.html +81 -0
- data/templates/project/sources/jquery-ui/demos/menu/default.html +54 -0
- data/templates/project/sources/jquery-ui/demos/menu/index.html +17 -0
- data/templates/project/sources/jquery-ui/demos/position/cycler.html +120 -0
- data/templates/project/sources/jquery-ui/demos/position/default.html +153 -0
- data/templates/project/sources/jquery-ui/demos/position/images/earth.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/position/images/flight.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/position/images/rocket.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/position/index.html +19 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/animated.html +44 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/default.html +35 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/images/pbar-ani.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/index.html +20 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/resize.html +40 -0
- data/templates/project/sources/jquery-ui/demos/removeClass/default.html +52 -0
- data/templates/project/sources/jquery-ui/demos/removeClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/resizable/animate.html +43 -0
- data/templates/project/sources/jquery-ui/demos/resizable/aspect-ratio.html +42 -0
- data/templates/project/sources/jquery-ui/demos/resizable/constrain-area.html +47 -0
- data/templates/project/sources/jquery-ui/demos/resizable/default.html +40 -0
- data/templates/project/sources/jquery-ui/demos/resizable/delay-start.html +52 -0
- data/templates/project/sources/jquery-ui/demos/resizable/helper.html +43 -0
- data/templates/project/sources/jquery-ui/demos/resizable/index.html +28 -0
- data/templates/project/sources/jquery-ui/demos/resizable/max-min.html +45 -0
- data/templates/project/sources/jquery-ui/demos/resizable/snap-to-grid.html +42 -0
- data/templates/project/sources/jquery-ui/demos/resizable/synchronous-resize.html +49 -0
- data/templates/project/sources/jquery-ui/demos/resizable/textarea.html +41 -0
- data/templates/project/sources/jquery-ui/demos/resizable/visual-feedback.html +43 -0
- data/templates/project/sources/jquery-ui/demos/selectable/default.html +50 -0
- data/templates/project/sources/jquery-ui/demos/selectable/display-grid.html +55 -0
- data/templates/project/sources/jquery-ui/demos/selectable/index.html +20 -0
- data/templates/project/sources/jquery-ui/demos/selectable/serialize.html +61 -0
- data/templates/project/sources/jquery-ui/demos/show/default.html +104 -0
- data/templates/project/sources/jquery-ui/demos/show/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/slider/colorpicker.html +95 -0
- data/templates/project/sources/jquery-ui/demos/slider/default.html +37 -0
- data/templates/project/sources/jquery-ui/demos/slider/hotelrooms.html +59 -0
- data/templates/project/sources/jquery-ui/demos/slider/index.html +29 -0
- data/templates/project/sources/jquery-ui/demos/slider/multiple-vertical.html +77 -0
- data/templates/project/sources/jquery-ui/demos/slider/range-vertical.html +51 -0
- data/templates/project/sources/jquery-ui/demos/slider/range.html +52 -0
- data/templates/project/sources/jquery-ui/demos/slider/rangemax.html +50 -0
- data/templates/project/sources/jquery-ui/demos/slider/rangemin.html +51 -0
- data/templates/project/sources/jquery-ui/demos/slider/side-scroll.html +140 -0
- data/templates/project/sources/jquery-ui/demos/slider/slider-vertical.html +52 -0
- data/templates/project/sources/jquery-ui/demos/slider/steps.html +51 -0
- data/templates/project/sources/jquery-ui/demos/slider/tabs.html +67 -0
- data/templates/project/sources/jquery-ui/demos/sortable/connect-lists-through-tabs.html +78 -0
- data/templates/project/sources/jquery-ui/demos/sortable/connect-lists.html +58 -0
- data/templates/project/sources/jquery-ui/demos/sortable/default.html +51 -0
- data/templates/project/sources/jquery-ui/demos/sortable/delay-start.html +67 -0
- data/templates/project/sources/jquery-ui/demos/sortable/display-grid.html +54 -0
- data/templates/project/sources/jquery-ui/demos/sortable/empty-lists.html +69 -0
- data/templates/project/sources/jquery-ui/demos/sortable/index.html +26 -0
- data/templates/project/sources/jquery-ui/demos/sortable/items.html +70 -0
- data/templates/project/sources/jquery-ui/demos/sortable/placeholder.html +56 -0
- data/templates/project/sources/jquery-ui/demos/sortable/portlets.html +96 -0
- data/templates/project/sources/jquery-ui/demos/spinner/currency.html +61 -0
- data/templates/project/sources/jquery-ui/demos/spinner/decimal.html +59 -0
- data/templates/project/sources/jquery-ui/demos/spinner/default.html +65 -0
- data/templates/project/sources/jquery-ui/demos/spinner/index.html +20 -0
- data/templates/project/sources/jquery-ui/demos/spinner/latlong.html +60 -0
- data/templates/project/sources/jquery-ui/demos/spinner/overflow.html +47 -0
- data/templates/project/sources/jquery-ui/demos/spinner/time.html +71 -0
- data/templates/project/sources/jquery-ui/demos/switchClass/default.html +47 -0
- data/templates/project/sources/jquery-ui/demos/switchClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax.html +53 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content1.html +4 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content2.html +4 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content3-slow.php +7 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content4-broken.php +3 -0
- data/templates/project/sources/jquery-ui/demos/tabs/bottom.html +59 -0
- data/templates/project/sources/jquery-ui/demos/tabs/collapsible.html +55 -0
- data/templates/project/sources/jquery-ui/demos/tabs/cookie.html +57 -0
- data/templates/project/sources/jquery-ui/demos/tabs/default.html +49 -0
- data/templates/project/sources/jquery-ui/demos/tabs/index.html +25 -0
- data/templates/project/sources/jquery-ui/demos/tabs/manipulation.html +124 -0
- data/templates/project/sources/jquery-ui/demos/tabs/mouseover.html +53 -0
- data/templates/project/sources/jquery-ui/demos/tabs/sortable.html +58 -0
- data/templates/project/sources/jquery-ui/demos/tabs/vertical.html +61 -0
- data/templates/project/sources/jquery-ui/demos/toggle/default.html +94 -0
- data/templates/project/sources/jquery-ui/demos/toggle/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/toggleClass/default.html +46 -0
- data/templates/project/sources/jquery-ui/demos/toggleClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/ajax/content1.html +1 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/ajax/content2.html +1 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/custom-animation.html +58 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/default.html +48 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/delegation-mixbag.html +73 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/forms.html +71 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/index.html +22 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/tracking.html +64 -0
- data/templates/project/sources/jquery-ui/external/jquery.bgiframe-2.1.2.js +39 -0
- data/templates/project/sources/jquery-ui/external/jquery.cookie.js +89 -0
- data/templates/project/sources/jquery-ui/external/jquery.global.de-DE.js +55 -0
- data/templates/project/sources/jquery-ui/external/jquery.global.ja-JP.js +74 -0
- data/templates/project/sources/jquery-ui/external/jquery.global.js +1341 -0
- data/templates/project/sources/jquery-ui/external/jquery.metadata.js +122 -0
- data/templates/project/sources/jquery-ui/external/jquery.mousewheel-3.0.4.js +78 -0
- data/templates/project/sources/jquery-ui/external/qunit.css +215 -0
- data/templates/project/sources/jquery-ui/external/qunit.js +1444 -0
- data/templates/project/sources/jquery-ui/jquery-1.5.1.js +8316 -0
- data/templates/project/sources/jquery-ui/tests/index.html +22 -0
- data/templates/project/sources/jquery-ui/tests/jquery.simulate.js +151 -0
- data/templates/project/sources/jquery-ui/tests/static/button/default.html +161 -0
- data/templates/project/sources/jquery-ui/tests/static/datepicker/datepicker.html +1367 -0
- data/templates/project/sources/jquery-ui/tests/static/datepicker/default.html +86 -0
- data/templates/project/sources/jquery-ui/tests/static/icons.html +246 -0
- data/templates/project/sources/jquery-ui/tests/static/menu/all-menus-icons.html +172 -0
- data/templates/project/sources/jquery-ui/tests/static/menu/default.html +39 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/default.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/default_vertical.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal_range.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal_range_max.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal_range_min.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical_range.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical_range_max.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical_range_min.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/static.css +1 -0
- data/templates/project/sources/jquery-ui/tests/static/static.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion.html +163 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_core.js +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_defaults.js +15 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_defaults_deprecated.js +21 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_deprecated.html +161 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_deprecated.js +320 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_events.js +122 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_methods.js +37 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_options.js +266 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete.html +46 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_core.js +73 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_defaults.js +19 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_events.js +206 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_methods.js +39 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_options.js +247 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/remote_object_array_labels.txt +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/remote_object_array_values.txt +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/remote_string_array.txt +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button.html +68 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_core.js +70 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_defaults.js +15 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_events.js +8 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_methods.js +19 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_options.js +93 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_tickets.js +45 -0
- data/templates/project/sources/jquery-ui/tests/unit/core/core.html +134 -0
- data/templates/project/sources/jquery-ui/tests/unit/core/core.js +157 -0
- data/templates/project/sources/jquery-ui/tests/unit/core/selector.js +253 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker.html +54 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_core.js +441 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_defaults.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_events.js +117 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_methods.js +118 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_options.js +924 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_tickets.js +27 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog.html +57 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_core.js +138 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_defaults.js +35 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_events.js +254 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_methods.js +127 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_options.js +444 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_tickets.js +116 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable.html +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_core.js +67 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_defaults.js +36 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_events.js +81 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_methods.js +99 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_options.js +753 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable.html +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js +36 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_events.js +28 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_methods.js +86 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_options.js +68 -0
- data/templates/project/sources/jquery-ui/tests/unit/images/jqueryui_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/tests/unit/index.html +64 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu.html +74 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_core.js +38 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_defaults.js +13 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_events.js +24 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_methods.js +15 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_options.js +10 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position.html +62 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position_core.js +438 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position_deprecated.html +60 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position_deprecated.js +32 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar.html +41 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_core.js +28 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_defaults.js +11 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_events.js +51 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_methods.js +36 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_options.js +59 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/images/test.jpg +0 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable.html +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_core.js +148 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_defaults.js +28 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_events.js +20 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_methods.js +64 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_options.js +190 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable.html +56 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_events.js +32 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_methods.js +93 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_options.js +46 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider.html +55 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_core.js +292 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_defaults.js +20 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_events.js +109 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_methods.js +102 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_options.js +146 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable.html +57 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_core.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_defaults.js +34 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_events.js +147 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_methods.js +108 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_options.js +256 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_tickets.js +83 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner.html +46 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_core.js +171 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_events.js +64 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_methods.js +155 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_options.js +154 -0
- data/templates/project/sources/jquery-ui/tests/unit/swarminject.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/data/test.html +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/spinner.gif +0 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs.html +139 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_core.js +50 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_defaults.js +13 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_defaults_deprecated.js +26 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_deprecated.html +138 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_deprecated.js +350 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_events.js +198 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_methods.js +165 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_options.js +146 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_tickets.js +99 -0
- data/templates/project/sources/jquery-ui/tests/unit/testsuite.js +101 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip.html +47 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_core.js +11 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_events.js +54 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_methods.js +30 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_options.js +62 -0
- data/templates/project/sources/jquery-ui/tests/unit/widget/widget.html +40 -0
- data/templates/project/sources/jquery-ui/tests/unit/widget/widget_core.js +992 -0
- data/templates/project/sources/jquery-ui/tests/visual/addClass/addClass_queue.html +50 -0
- data/templates/project/sources/jquery-ui/tests/visual/all.css +84 -0
- data/templates/project/sources/jquery-ui/tests/visual/all.html +190 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_backgroundColor_hex.html +44 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_backgroundColor_rgb.html +35 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_color_hex.html +44 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_color_rgb.html +35 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button.html +140 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_disabled_true.html +84 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_input_type_checkbox.html +25 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_option_disabled_true.html +84 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_performance.html +555 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_ticket_5254.html +55 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_ticket_5261.html +42 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_ticket_5278.html +58 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/accordion_dialog.html +202 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/accordion_tabs.html +86 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/datepicker_dialog.html +157 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/draggable_accordion.html +65 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/draggable_accordion_accordion_tabs_draggable.html +109 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/sortable_accordion_sortable_tabs.html +108 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/tabs_tabs.html +73 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/tabs_tooltips.html +37 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/widgets_in_dialog.html +229 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/calendar.gif +0 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker.html +23 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_multi_inline.html +113 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_4071.html +96 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_4240.html +55 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_4443.html +38 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_5676.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/multimonth.html +23 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/viewport.html +278 -0
- data/templates/project/sources/jquery-ui/tests/visual/dialog/dialog_on_page_with_large_dom.html +2963 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable.html +24 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable.scroll.html +152 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_containment_array.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_cursorAt_object.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_handle_selector.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_iframeFix_false.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_iframeFix_selector.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_iframeFix_true.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable.css +3 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable.html +33 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_option_accept_default.html +40 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_option_accept_function.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_option_accept_selector.html +41 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_ticket_4087.html +51 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_ticket_4088.html +69 -0
- data/templates/project/sources/jquery-ui/tests/visual/effects.all.css +54 -0
- data/templates/project/sources/jquery-ui/tests/visual/effects.all.html +193 -0
- data/templates/project/sources/jquery-ui/tests/visual/effects.all.js +92 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/contextmenu.html +191 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/drilldown.html +266 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/menu.html +147 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/menubar.html +208 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/menubar.js +189 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/popup.html +159 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/popup.js +113 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/tablemenu.html +67 -0
- data/templates/project/sources/jquery-ui/tests/visual/mouse/mouse_ticket_6946.html +67 -0
- data/templates/project/sources/jquery-ui/tests/visual/position/position.html +67 -0
- data/templates/project/sources/jquery-ui/tests/visual/position/position_margin.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/images/test.png +0 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable.html +24 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_alsoResize_child.html +48 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_0.5.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_1.0.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_1.5.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_maxHeight_150.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_maxWidth_150.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_minHeight_50.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_minWidth_50.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_w100xh100.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_w100xh50.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_w50xh100.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_3053.html +37 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_4199.html +37 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_4217.html +46 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_4940.html +32 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_5335.html +52 -0
- data/templates/project/sources/jquery-ui/tests/visual/selectable/selectable.html +40 -0
- data/templates/project/sources/jquery-ui/tests/visual/selectable/selectable_ticket_4341.html +46 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider.html +24 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal_range.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal_range_max.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal_range_min.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_in_container_with_scrollbars.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_method_destroy.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_method_disable.html +47 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_animate_false.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_animate_true.html +65 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_max_3.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_max_30.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_max_300.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_min_-3.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_min_-30.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_min_-300.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_orientation_horizontal.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_orientation_vertical.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_false.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_max.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_min.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_true.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_step_25.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_step_5.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_value_3.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_value_30.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_values_25_50_75.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_values_25_75.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_values_50.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_3736.html +36 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_3762.html +44 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_4385.html +42 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_4467.html +34 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical_range.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical_range_max.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical_range_min.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable.html +40 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_massive_scale.html +757 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_option_revert_false.html +31 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_option_revert_true.html +31 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_ticket_4231.html +78 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_ticket_5355.html +58 -0
- data/templates/project/sources/jquery-ui/tests/visual/spinner/spinner.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/theme.html +532 -0
- data/templates/project/sources/jquery-ui/tests/visual/tooltip/ajaxcontent.php +2 -0
- data/templates/project/sources/jquery-ui/tests/visual/tooltip/callout.html +213 -0
- data/templates/project/sources/jquery-ui/tests/visual/tooltip/tooltip.html +186 -0
- data/templates/project/sources/jquery-ui/tests/visual/visual.css +3 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.accordion.css +18 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.all.css +11 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.autocomplete.css +13 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.base.css +24 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.button.css +38 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.core.css +41 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.datepicker.css +68 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.dialog.css +21 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.menu.css +44 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.progressbar.css +11 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.resizable.css +25 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.selectable.css +10 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.slider.css +24 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.spinner.css +23 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.tabs.css +17 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.theme.css +252 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.tooltip.css +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-af.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-az.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-da.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-de.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-el.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-es.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-et.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fa.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-he.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-id.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-is.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-it.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-kz.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-no.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-th.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-uk.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.blind.js +52 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.bounce.js +102 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.clip.js +69 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.core.js +825 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.drop.js +64 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.explode.js +103 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.fade.js +34 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.fold.js +73 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.highlight.js +51 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.pulsate.js +52 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.scale.js +250 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.shake.js +64 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.slide.js +69 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.transfer.js +46 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.accordion.js +669 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.autocomplete.js +439 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.button.js +384 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.core.js +303 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.datepicker.js +1779 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.dialog.js +829 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.draggable.js +799 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.droppable.js +285 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.menu.js +402 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.mouse.js +156 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.position.js +283 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.progressbar.js +107 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.resizable.js +812 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.selectable.js +266 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.slider.js +684 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.sortable.js +1076 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.spinner.js +362 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.tabs.js +1039 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.tooltip.js +146 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.widget.js +363 -0
- data/templates/project/sources/jquery-ui/version.txt +1 -0
- data/templates/project/sources/pie/LICENSE-APACHE2.txt +13 -0
- data/templates/project/sources/pie/LICENSE-GPL2.txt +278 -0
- data/templates/project/sources/pie/build.xml +118 -0
- data/templates/project/sources/pie/demos/basic.html +321 -0
- data/templates/project/sources/pie/demos/farbtastic/CHANGELOG.html +26 -0
- data/templates/project/sources/pie/demos/farbtastic/LICENSE.txt +341 -0
- data/templates/project/sources/pie/demos/farbtastic/README.html +71 -0
- data/templates/project/sources/pie/demos/farbtastic/demo1.html +28 -0
- data/templates/project/sources/pie/demos/farbtastic/demo2.html +57 -0
- data/templates/project/sources/pie/demos/farbtastic/farbtastic.css +51 -0
- data/templates/project/sources/pie/demos/farbtastic/farbtastic.js +345 -0
- data/templates/project/sources/pie/demos/farbtastic/farbtastic.min.js +1 -0
- data/templates/project/sources/pie/demos/farbtastic/marker.png +0 -0
- data/templates/project/sources/pie/demos/farbtastic/mask.png +0 -0
- data/templates/project/sources/pie/demos/farbtastic/wheel.png +0 -0
- data/templates/project/sources/pie/demos/tabs-control.png +0 -0
- data/templates/project/sources/pie/demos/tabs.html +296 -0
- data/templates/project/sources/pie/documentation/about.html +63 -0
- data/templates/project/sources/pie/documentation/build.html +72 -0
- data/templates/project/sources/pie/documentation/getting-started.html +66 -0
- data/templates/project/sources/pie/documentation/known-issues.html +205 -0
- data/templates/project/sources/pie/documentation/pie-js.html +89 -0
- data/templates/project/sources/pie/documentation/product-comparison.html +89 -0
- data/templates/project/sources/pie/documentation/q-and-a.html +152 -0
- data/templates/project/sources/pie/documentation/supported-css3-features.html +402 -0
- data/templates/project/sources/pie/site/pie-wp-theme/404.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/archive.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/attachment.php +25 -0
- data/templates/project/sources/pie/site/pie-wp-theme/attachment/attachment-default.php +61 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/CHANGELOG.txt +72 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/README.txt +15 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/admin.php +330 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/ajax-load.php +115 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/attachment.php +126 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/carrington.php +106 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/compatibility.php +234 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/css/colorpicker.css +161 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/blank.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_background.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hex.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hsb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hsb_h.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hsb_s.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_indic.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_overlay.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_rgb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_rgb_g.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_rgb_r.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_select.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_submit.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_background.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hex.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hsb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hsb_h.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hsb_s.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_indic.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_rgb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_rgb_g.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_rgb_r.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_submit.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/select.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/select2.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/slider.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/js/colorpicker.js +490 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/LICENSE.txt +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/css/thickbox.css +157 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/img/blank.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/img/loadingAnimation.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/img/macFFBgHack.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/thickbox.js +332 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/templates.php +105 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/utility.php +821 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comment/comment-default.php +53 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comment/ping.php +33 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/comments-default.php +66 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/comments-loop.php +49 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/pings-loop.php +38 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/threaded.php +31 -0
- data/templates/project/sources/pie/site/pie-wp-theme/content/content-default.php +56 -0
- data/templates/project/sources/pie/site/pie-wp-theme/content/page.php +44 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/common.css +442 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.eot +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.svg +240 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.ttf +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.woff +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/error/404.php +31 -0
- data/templates/project/sources/pie/site/pie-wp-theme/error/exit.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/excerpt/excerpt-default.php +41 -0
- data/templates/project/sources/pie/site/pie-wp-theme/footer.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/footer/footer-default.php +53 -0
- data/templates/project/sources/pie/site/pie-wp-theme/forms/comment.php +94 -0
- data/templates/project/sources/pie/site/pie-wp-theme/forms/search.php +33 -0
- data/templates/project/sources/pie/site/pie-wp-theme/functions.php +28 -0
- data/templates/project/sources/pie/site/pie-wp-theme/functions/sidebars.php +42 -0
- data/templates/project/sources/pie/site/pie-wp-theme/header.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/header/header-default.php +99 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/divider.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/favicon.ico +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/icons.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/logo.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/index.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/CHANGELOG.html +26 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/LICENSE.txt +341 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/README.html +71 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/demo1.html +28 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/demo2.html +57 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/farbtastic.css +51 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/farbtastic.js +345 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/farbtastic.min.js +1 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/marker.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/mask.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/wheel.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/loop/archive.php +28 -0
- data/templates/project/sources/pie/site/pie-wp-theme/loop/loop-default.php +33 -0
- data/templates/project/sources/pie/site/pie-wp-theme/loop/search.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/misc/banner.php +21 -0
- data/templates/project/sources/pie/site/pie-wp-theme/misc/nav-posts.php +22 -0
- data/templates/project/sources/pie/site/pie-wp-theme/misc/no-results.php +23 -0
- data/templates/project/sources/pie/site/pie-wp-theme/page.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/pages/pages-default.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/author.php +52 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/category.php +40 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/home.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/posts-default.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/search.php +44 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/tag.php +38 -0
- data/templates/project/sources/pie/site/pie-wp-theme/screenshot.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/search.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/sidebar.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/sidebar/sidebar-default.php +68 -0
- data/templates/project/sources/pie/site/pie-wp-theme/single.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/single/single-default.php +40 -0
- data/templates/project/sources/pie/site/pie-wp-theme/style.css +73 -0
- data/templates/project/sources/pie/sources/Angle.js +36 -0
- data/templates/project/sources/pie/sources/BackgroundRenderer.js +381 -0
- data/templates/project/sources/pie/sources/BackgroundStyleInfo.js +295 -0
- data/templates/project/sources/pie/sources/BgPosition.js +104 -0
- data/templates/project/sources/pie/sources/BorderImageRenderer.js +124 -0
- data/templates/project/sources/pie/sources/BorderImageStyleInfo.js +146 -0
- data/templates/project/sources/pie/sources/BorderRadiusStyleInfo.js +68 -0
- data/templates/project/sources/pie/sources/BorderRenderer.js +328 -0
- data/templates/project/sources/pie/sources/BorderStyleInfo.js +101 -0
- data/templates/project/sources/pie/sources/BoundsInfo.js +56 -0
- data/templates/project/sources/pie/sources/BoxShadowInsetRenderer.js +31 -0
- data/templates/project/sources/pie/sources/BoxShadowOutsetRenderer.js +136 -0
- data/templates/project/sources/pie/sources/BoxShadowStyleInfo.js +67 -0
- data/templates/project/sources/pie/sources/Color.js +127 -0
- data/templates/project/sources/pie/sources/Element.js +416 -0
- data/templates/project/sources/pie/sources/Heartbeat.js +16 -0
- data/templates/project/sources/pie/sources/ImgRenderer.js +66 -0
- data/templates/project/sources/pie/sources/Length.js +134 -0
- data/templates/project/sources/pie/sources/Observable.js +44 -0
- data/templates/project/sources/pie/sources/OnBeforeUnload.js +15 -0
- data/templates/project/sources/pie/sources/OnPrint.js +25 -0
- data/templates/project/sources/pie/sources/OnResize.js +12 -0
- data/templates/project/sources/pie/sources/OnScroll.js +15 -0
- data/templates/project/sources/pie/sources/PIE_API.js +35 -0
- data/templates/project/sources/pie/sources/PIE_close.js +2 -0
- data/templates/project/sources/pie/sources/PIE_open.js +47 -0
- data/templates/project/sources/pie/sources/RendererBase.js +299 -0
- data/templates/project/sources/pie/sources/RootRenderer.js +112 -0
- data/templates/project/sources/pie/sources/StyleInfoBase.js +93 -0
- data/templates/project/sources/pie/sources/Tokenizer.js +274 -0
- data/templates/project/sources/pie/sources/Util.js +94 -0
- data/templates/project/sources/pie/sources/VisibilityStyleInfo.js +38 -0
- data/templates/project/sources/pie/sources/closure_externs.js +4 -0
- data/templates/project/sources/pie/sources/closure_preservefunctions.js +4 -0
- data/templates/project/sources/pie/sources/htc_close.txt +2 -0
- data/templates/project/sources/pie/sources/htc_init.js +19 -0
- data/templates/project/sources/pie/sources/htc_open.txt +13 -0
- data/templates/project/sources/pie/sources/js_close.js +1 -0
- data/templates/project/sources/pie/sources/js_open.js +8 -0
- data/templates/project/sources/pie/sources/wrappers/PIE.php +19 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-001.htm +27 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-002.htm +31 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-003.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-004.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-005.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-006.htm +41 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-007.htm +46 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-008.htm +41 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-009.htm +45 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-010.htm +31 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-011.htm +41 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-012.htm +49 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-013.htm +51 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-014.htm +51 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-015.htm +51 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-016.htm +50 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-017.htm +35 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-different-width-001.htm +77 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-initial-value-001.htm +35 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-not-inherited-001.htm +44 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-shorthand-001.htm +69 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-001.htm +33 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-002.htm +28 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-003.htm +28 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-004.htm +28 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-005.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-sum-of-radii-001.htm +158 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-sum-of-radii-002.htm +92 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-with-three-values-001.htm +43 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-with-two-values-001.htm +43 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-top-left-radius-values-001.htm +45 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-top-left-radius-values-002.htm +40 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-top-left-radius-values-003.htm +51 -0
- data/templates/project/sources/pie/tests/background1.gif +0 -0
- data/templates/project/sources/pie/tests/background2.gif +0 -0
- data/templates/project/sources/pie/tests/basic.html +188 -0
- data/templates/project/sources/pie/tests/border-image-test.html +52 -0
- data/templates/project/sources/pie/tests/border.png +0 -0
- data/templates/project/sources/pie/tests/border2.png +0 -0
- data/templates/project/sources/pie/tests/box-shadow-tests.html +166 -0
- data/templates/project/sources/pie/tests/buttons.html +735 -0
- data/templates/project/sources/pie/tests/color-names.html +32 -0
- data/templates/project/sources/pie/tests/gradient-tests.html +237 -0
- data/templates/project/sources/pie/tests/hiding-tests.html +92 -0
- data/templates/project/sources/pie/tests/hover-tests.html +107 -0
- data/templates/project/sources/pie/tests/iPhoneBackButton.png +0 -0
- data/templates/project/sources/pie/tests/icon-chrome.png +0 -0
- data/templates/project/sources/pie/tests/icon-firefox.png +0 -0
- data/templates/project/sources/pie/tests/icon-ie.png +0 -0
- data/templates/project/sources/pie/tests/icon-opera.png +0 -0
- data/templates/project/sources/pie/tests/icon-safari.png +0 -0
- data/templates/project/sources/pie/tests/img.html +63 -0
- data/templates/project/sources/pie/tests/margin-auto-tests.html +57 -0
- data/templates/project/sources/pie/tests/margin-collapsing-tests.html +77 -0
- data/templates/project/sources/pie/tests/misc-tests.html +257 -0
- data/templates/project/sources/pie/tests/multiple-bg-tests.html +100 -0
- data/templates/project/sources/pie/tests/peculiar-icons/Peculiar.html +372 -0
- data/templates/project/sources/pie/tests/peculiar-icons/pictograms.css +1934 -0
- data/templates/project/sources/pie/tests/peculiar-icons/style.css +106 -0
- data/templates/project/sources/pie/tests/photo.jpg +0 -0
- data/templates/project/sources/pie/tests/png-fix.html +50 -0
- data/templates/project/sources/pie/tests/position-fixed.html +70 -0
- data/templates/project/sources/pie/tests/rtl.html +190 -0
- data/templates/project/sources/pie/tests/sizing-tests.html +55 -0
- data/templates/project/sources/pie/tests/solar-system/asteroids_meteorids.png +0 -0
- data/templates/project/sources/pie/tests/solar-system/bg.jpg +0 -0
- data/templates/project/sources/pie/tests/solar-system/solar-system.html +148 -0
- data/templates/project/sources/pie/tests/solar-system/styles.css +447 -0
- data/templates/project/sources/pie/tests/stress-test.html +187 -0
- data/templates/project/sources/pie/tests/submitted/block.png +0 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t19.html +31 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t25.gif +0 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t25.html +24 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t70.html +136 -0
- data/templates/project/sources/pie/tests/submitted/issue23.html +124 -0
- data/templates/project/sources/pie/tests/submitted/issue41.html +164 -0
- data/templates/project/sources/pie/tests/submitted/issue47.html +136 -0
- data/templates/project/sources/pie/tests/submitted/issue75.html +94 -0
- data/templates/project/sources/pie/tests/submitted/tab.png +0 -0
- data/templates/project/sources/pie/tests/tables.html +87 -0
- data/templates/project/sources/pie/tests/tokenizer-tests.html +158 -0
- data/templates/project/sources/pie/tests/z-index-tests.html +145 -0
- data/templates/project/sources/pie/tools/compiler.jar +0 -0
- data/templates/project/sources/scrollability/README.md +38 -0
- data/templates/project/sources/scrollability/scrollability-min.js +1 -0
- data/templates/project/sources/scrollability/scrollability.js +661 -0
- data/templates/project/style.sass +136 -0
- data/templates/project/templates/_flashes.html.haml +4 -0
- data/templates/project/templates/_footer.html.haml +2 -0
- data/templates/project/templates/_head.html.haml +26 -0
- data/templates/project/templates/_header.html.haml +1 -0
- data/templates/project/templates/_javascripts.html.haml +27 -0
- data/templates/project/templates/_stylesheets.html.haml +5 -0
- data/templates/project/templates/application.html.haml +28 -0
- data/templates/project/templates/old/_layout.haml +1 -0
- data/templates/project/templates/old/home.html.haml +14 -0
- data/templates/project/templates/old/layouts/default.haml +62 -0
- data/templates/project/templates/old/layouts/survivalkit/default.haml +64 -0
- data/templates/project/templates/old/layouts/survivalkit/styletile.haml +64 -0
- data/templates/project/templates/old/survivalkit/_layout.haml +1 -0
- data/templates/project/templates/old/survivalkit/elements-common.haml +33 -0
- data/templates/project/templates/old/survivalkit/elements-html5.haml +71 -0
- data/templates/project/templates/old/survivalkit/elements-typography.haml +100 -0
- data/templates/project/templates/old/survivalkit/elements-ui-patterns-drupal.haml +38 -0
- data/templates/project/templates/old/survivalkit/elements-ui-patterns.haml +23 -0
- data/templates/project/templates/old/survivalkit/index.haml +2 -0
- data/templates/project/templates/old/survivalkit/partials/common/abbr.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/acronym.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/characters.haml +11 -0
- data/templates/project/templates/old/survivalkit/partials/common/cite.haml +12 -0
- data/templates/project/templates/old/survivalkit/partials/common/code.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/dfn.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/em.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/common/forms.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/common/headers.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/common/inline-images.haml +9 -0
- data/templates/project/templates/old/survivalkit/partials/common/kbd.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/common/links.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/common/lists.haml +55 -0
- data/templates/project/templates/old/survivalkit/partials/common/others.haml +35 -0
- data/templates/project/templates/old/survivalkit/partials/common/paragraphs.haml +15 -0
- data/templates/project/templates/old/survivalkit/partials/common/pre.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/common/q.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/samp.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/strong.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/tables.haml +43 -0
- data/templates/project/templates/old/survivalkit/partials/common/var.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/header-styletile.haml +9 -0
- data/templates/project/templates/old/survivalkit/partials/header.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/html5/a.haml +36 -0
- data/templates/project/templates/old/survivalkit/partials/html5/abbr.haml +26 -0
- data/templates/project/templates/old/survivalkit/partials/html5/address.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/html5/all-headings.haml +31 -0
- data/templates/project/templates/old/survivalkit/partials/html5/article.haml +22 -0
- data/templates/project/templates/old/survivalkit/partials/html5/aside.haml +20 -0
- data/templates/project/templates/old/survivalkit/partials/html5/b.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/html5/bdi.haml +30 -0
- data/templates/project/templates/old/survivalkit/partials/html5/blockquote.haml +32 -0
- data/templates/project/templates/old/survivalkit/partials/html5/cite.haml +46 -0
- data/templates/project/templates/old/survivalkit/partials/html5/code.haml +70 -0
- data/templates/project/templates/old/survivalkit/partials/html5/details.haml +42 -0
- data/templates/project/templates/old/survivalkit/partials/html5/dfn.haml +52 -0
- data/templates/project/templates/old/survivalkit/partials/html5/dl.haml +69 -0
- data/templates/project/templates/old/survivalkit/partials/html5/em.haml +15 -0
- data/templates/project/templates/old/survivalkit/partials/html5/fieldset.haml +49 -0
- data/templates/project/templates/old/survivalkit/partials/html5/figure.haml +48 -0
- data/templates/project/templates/old/survivalkit/partials/html5/footer.haml +37 -0
- data/templates/project/templates/old/survivalkit/partials/html5/header.haml +44 -0
- data/templates/project/templates/old/survivalkit/partials/html5/hgroup.haml +20 -0
- data/templates/project/templates/old/survivalkit/partials/html5/hr.haml +52 -0
- data/templates/project/templates/old/survivalkit/partials/html5/i.haml +28 -0
- data/templates/project/templates/old/survivalkit/partials/html5/kbd.haml +19 -0
- data/templates/project/templates/old/survivalkit/partials/html5/label.haml +18 -0
- data/templates/project/templates/old/survivalkit/partials/html5/li.haml +91 -0
- data/templates/project/templates/old/survivalkit/partials/html5/mark.haml +30 -0
- data/templates/project/templates/old/survivalkit/partials/html5/menu.haml +39 -0
- data/templates/project/templates/old/survivalkit/partials/html5/nav.haml +68 -0
- data/templates/project/templates/old/survivalkit/partials/html5/ol.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/html5/p.haml +41 -0
- data/templates/project/templates/old/survivalkit/partials/html5/pre.haml +48 -0
- data/templates/project/templates/old/survivalkit/partials/html5/q.haml +34 -0
- data/templates/project/templates/old/survivalkit/partials/html5/ruby.haml +55 -0
- data/templates/project/templates/old/survivalkit/partials/html5/s.haml +17 -0
- data/templates/project/templates/old/survivalkit/partials/html5/samp.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/html5/sample-forms.haml +52 -0
- data/templates/project/templates/old/survivalkit/partials/html5/sample-tables.haml +152 -0
- data/templates/project/templates/old/survivalkit/partials/html5/section.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/html5/small.haml +33 -0
- data/templates/project/templates/old/survivalkit/partials/html5/strong.haml +25 -0
- data/templates/project/templates/old/survivalkit/partials/html5/sub-sup.haml +58 -0
- data/templates/project/templates/old/survivalkit/partials/html5/table.haml +196 -0
- data/templates/project/templates/old/survivalkit/partials/html5/text-summary.haml +305 -0
- data/templates/project/templates/old/survivalkit/partials/html5/thead.haml +67 -0
- data/templates/project/templates/old/survivalkit/partials/html5/time.haml +31 -0
- data/templates/project/templates/old/survivalkit/partials/html5/ul.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/menu.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/block.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/breadcrumbs.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/comments.haml +69 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/field-image.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-comment.haml +54 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-login.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-new-account.haml +24 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-new-password.haml +16 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/links.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/menu.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/messages.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/node.haml +28 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/pager.haml +17 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/rss-link.haml +5 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/search.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/site-name.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/tabs.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/taxonomy.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/block.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/breadcrumbs.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/comments.haml +69 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/field-image.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-comment.haml +54 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-login.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-new-account.haml +24 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-new-password.haml +16 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/links.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/menu.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/messages.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/node.haml +28 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/pager.haml +17 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/rss-link.haml +5 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/search.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/site-name.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/tabs.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/taxonomy.haml +10 -0
- data/templates/project/templates/old/survivalkit/styletile/_layout.haml +1 -0
- data/templates/project/templates/old/survivalkit/styletile/index.redirect +1 -0
- data/templates/project/templates/old/survivalkit/styletile/styletile.haml +60 -0
- data/templates/project/templates/old/view_helpers.rb +25 -0
- metadata +1448 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Animate Visual Test : Animate color rgb</title>
|
|
6
|
+
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
7
|
+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
8
|
+
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
|
9
|
+
<script type="text/javascript" src="../../../ui/jquery.effects.core.js"></script>
|
|
10
|
+
<script type="text/javascript">
|
|
11
|
+
function randomColorRGB() {
|
|
12
|
+
return 'rgb('
|
|
13
|
+
+ Math.floor(Math.random()*256)
|
|
14
|
+
+ ', ' + Math.floor(Math.random()*256)
|
|
15
|
+
+ ', ' + Math.floor(Math.random()*256)
|
|
16
|
+
+ ')';
|
|
17
|
+
}
|
|
18
|
+
$(function() {
|
|
19
|
+
$("#go").click(function() {
|
|
20
|
+
$("#animate-color").stop().animate({ color: randomColorRGB() }, "fast");
|
|
21
|
+
});
|
|
22
|
+
})
|
|
23
|
+
</script>
|
|
24
|
+
<style type="text/css">
|
|
25
|
+
#animate-color { width: 250px; height: 100px; color: gray; }
|
|
26
|
+
</style>
|
|
27
|
+
</head>
|
|
28
|
+
<body>
|
|
29
|
+
|
|
30
|
+
<div id="animate-color">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</div>
|
|
31
|
+
|
|
32
|
+
<button id="go">Go</button>
|
|
33
|
+
|
|
34
|
+
</body>
|
|
35
|
+
</html>
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Button Visual push: Default</title>
|
|
6
|
+
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
7
|
+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
#toolbar { margin-top: 2em; padding:0.2em; }
|
|
10
|
+
#ops1, #ops2, #format, #mode { margin-right: 1em }
|
|
11
|
+
</style>
|
|
12
|
+
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../../../external/jquery.metadata.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
15
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
16
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
|
|
17
|
+
<script type="text/javascript">
|
|
18
|
+
$(function() {
|
|
19
|
+
var buttons = $('#push button, #check').button();
|
|
20
|
+
var buttonSets = $('#radio0, #radio1, #radio2, #ops1, #format, #ops2, #mode, #inputs, #anchors').buttonset();
|
|
21
|
+
|
|
22
|
+
buttons.add(buttonSets).click(function(event) {
|
|
23
|
+
var target = $(event.target);
|
|
24
|
+
if (target.closest('.ui-button:not(.ui-state-disabled)').length) {
|
|
25
|
+
$("<div></div>")
|
|
26
|
+
.text("Clicked " + (target.text() || target.val()))
|
|
27
|
+
.appendTo("#log");
|
|
28
|
+
window.console && console.log(this, arguments);
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
$("#disable-widgets").toggle(function() {
|
|
33
|
+
buttons.button("disable");
|
|
34
|
+
buttonSets.buttonset("disable");
|
|
35
|
+
}, function() {
|
|
36
|
+
buttons.button("enable");
|
|
37
|
+
buttonSets.buttonset("enable");
|
|
38
|
+
});
|
|
39
|
+
$("#toggle-widgets").toggle(function() {
|
|
40
|
+
buttons.button();
|
|
41
|
+
buttonSets.buttonset();
|
|
42
|
+
}, function() {
|
|
43
|
+
buttons.button("destroy");
|
|
44
|
+
buttonSets.buttonset("destroy");
|
|
45
|
+
}).click();
|
|
46
|
+
});
|
|
47
|
+
</script>
|
|
48
|
+
</head>
|
|
49
|
+
<body>
|
|
50
|
+
|
|
51
|
+
<div id="push">
|
|
52
|
+
<div>
|
|
53
|
+
No icon
|
|
54
|
+
<button>Simple button, only text</button>
|
|
55
|
+
<button class="ui-priority-secondary">Secondary priority button</button>
|
|
56
|
+
</div>
|
|
57
|
+
<br/>
|
|
58
|
+
<div>
|
|
59
|
+
With icon
|
|
60
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
61
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Primary icon</button>
|
|
62
|
+
<button class="{button:{icons:{secondary:'ui-icon-triangle-1-s'}}}">Secondary icon</button>
|
|
63
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Both icons</button>
|
|
64
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons and no text</button>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
<div id="toggle" style="margin-top: 2em;">
|
|
69
|
+
<input type="checkbox" id="check" /><label for="check">Toggle</label>
|
|
70
|
+
</div>
|
|
71
|
+
|
|
72
|
+
<div id="radio0" style="margin-top: 2em;">
|
|
73
|
+
<input type="radio" id="radio01" name="radio" checked="checked" /><label for="radio01">Choice 1</label>
|
|
74
|
+
<input type="radio" id="radio02" name="radio" /><label for="radio02">Choice 2</label>
|
|
75
|
+
<input type="radio" id="radio03" name="radio" /><label for="radio03">Choice 3</label>
|
|
76
|
+
</div>
|
|
77
|
+
<form>
|
|
78
|
+
<div id="radio1" style="margin-top: 2em;">
|
|
79
|
+
<input type="radio" id="radio11" name="radio" /><label for="radio11">Choice 1</label>
|
|
80
|
+
<input type="radio" id="radio12" name="radio" checked="checked" /><label for="radio12">Choice 2</label>
|
|
81
|
+
<input type="radio" id="radio13" name="radio" /><label for="radio13">Choice 3</label>
|
|
82
|
+
</div>
|
|
83
|
+
</form>
|
|
84
|
+
<form>
|
|
85
|
+
<div id="radio2" style="margin-top: 2em;">
|
|
86
|
+
<input type="radio" id="radio21" name="radio" /><label for="radio21">Choice 1</label>
|
|
87
|
+
<input type="radio" id="radio22" name="radio" /><label for="radio22">Choice 2</label>
|
|
88
|
+
<input type="radio" id="radio23" name="radio" checked="checked" /><label for="radio23">Choice 3</label>
|
|
89
|
+
</div>
|
|
90
|
+
</form>
|
|
91
|
+
|
|
92
|
+
<div id="toolbar" class="ui-widget-header ui-corner-all ui-helper-clearfix">
|
|
93
|
+
<span id="ops1">
|
|
94
|
+
<button class="{button:{icons:{primary:'ui-icon-folder-open'},text:false}}">Open</button>
|
|
95
|
+
<button class="{button:{icons:{primary:'ui-icon-disk'},text:false}}">Save</button>
|
|
96
|
+
<button class="{button:{icons:{primary:'ui-icon-trash'},text:false}}">Delete</button>
|
|
97
|
+
</span>
|
|
98
|
+
<span id="format">
|
|
99
|
+
<input type="checkbox" id="check1" /><label for="check1">B</label>
|
|
100
|
+
<input type="checkbox" id="check2" /><label for="check2">I</label>
|
|
101
|
+
<input type="checkbox" id="check3" /><label for="check3">U</label>
|
|
102
|
+
</span>
|
|
103
|
+
<span id="ops2">
|
|
104
|
+
<button class="{button:{icons:{primary:'ui-icon-print'},text:false}}">Print...</button>
|
|
105
|
+
<button class="{button:{icons:{primary:'ui-icon-mail-closed'},text:false}}">Mail to...</button>
|
|
106
|
+
</span>
|
|
107
|
+
<span id="mode">
|
|
108
|
+
<input type="radio" id="mode1" name="radio2" checked="checked" /><label for="mode1">Edit</label>
|
|
109
|
+
<input type="radio" id="mode2" name="radio2" /><label for="mode2">View</label>
|
|
110
|
+
</span>
|
|
111
|
+
</div>
|
|
112
|
+
|
|
113
|
+
<div id="inputs" style="margin-top: 2em;">
|
|
114
|
+
<input type="submit" value="Submit button" />
|
|
115
|
+
<input type="reset" value="Reset button" class="{button:{label:'Custom reset'}}" />
|
|
116
|
+
</div>
|
|
117
|
+
|
|
118
|
+
<div id="anchors" style="margin-top: 2em;">
|
|
119
|
+
<a href="#">Anchor 1</a>
|
|
120
|
+
<a href="#" class="{button:{icons:{primary:'ui-icon-print'},text:false}}">Anchor 2</a>
|
|
121
|
+
<a href="#" class="{button:{icons:{primary:'ui-icon-mail-closed'},text:false}}">Anchor 3</a>
|
|
122
|
+
<a href="#">Anchor 4</a>
|
|
123
|
+
</div>
|
|
124
|
+
|
|
125
|
+
<div style="margin-top: 2em;">
|
|
126
|
+
<button id="disable-widgets">Toggle disabled</button>
|
|
127
|
+
<button id="toggle-widgets">Toggle widget</button>
|
|
128
|
+
</div>
|
|
129
|
+
<div id="log"></div>
|
|
130
|
+
|
|
131
|
+
<script type="text/javascript" src="http://jqueryui.com/themeroller/themeswitchertool/"></script>
|
|
132
|
+
<script type="text/javascript">
|
|
133
|
+
$.fn.themeswitcher && $('<div></div>').css({
|
|
134
|
+
position: "absolute",
|
|
135
|
+
right: 10,
|
|
136
|
+
top: 10
|
|
137
|
+
}).appendTo(document.body).themeswitcher();
|
|
138
|
+
</script>
|
|
139
|
+
</body>
|
|
140
|
+
</html>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Button Visual Test : Button disabled true</title>
|
|
6
|
+
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
7
|
+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
8
|
+
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
|
9
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
10
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
11
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
$(function() {
|
|
14
|
+
|
|
15
|
+
$("#button1").button({
|
|
16
|
+
disabled: true
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
$("#anchor1").button({
|
|
20
|
+
disabled: true
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
$("#inputbutton1").button({
|
|
24
|
+
disabled: true
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
$("#radio1, #radio2, #radio3").button({
|
|
28
|
+
disabled: true
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
$("#checkbox1, #checkbox2, #checkbox3").button({
|
|
32
|
+
disabled: true
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
});
|
|
36
|
+
</script>
|
|
37
|
+
</head>
|
|
38
|
+
<body>
|
|
39
|
+
|
|
40
|
+
<fieldset>
|
|
41
|
+
<legend>button</legend>
|
|
42
|
+
<button disabled="disabled">button</button>
|
|
43
|
+
<hr />
|
|
44
|
+
<button id="button1">button</button>
|
|
45
|
+
</fieldset>
|
|
46
|
+
|
|
47
|
+
<fieldset>
|
|
48
|
+
<legend>anchor</legend>
|
|
49
|
+
<a href="javascript:void(0)" disabled="disabled">anchor 1</a>
|
|
50
|
+
<hr />
|
|
51
|
+
<a href="javascript:void(0)" id="anchor1">anchor 1</a>
|
|
52
|
+
</fieldset>
|
|
53
|
+
|
|
54
|
+
<fieldset>
|
|
55
|
+
<legend>input type="button"</legend>
|
|
56
|
+
<input type="button" disabled="disabled" value="input button 1" />
|
|
57
|
+
<hr />
|
|
58
|
+
<input type="button" id="inputbutton1" value="input button 1" />
|
|
59
|
+
</fieldset>
|
|
60
|
+
|
|
61
|
+
<fieldset>
|
|
62
|
+
<legend>input type="radio"</legend>
|
|
63
|
+
<input type="radio" name="radioletter" id="radioa" disabled="disabled" /><label for="radioa">radio a</label>
|
|
64
|
+
<input type="radio" name="radioletter" id="radiob" disabled="disabled" /><label for="radiob">radio b</label>
|
|
65
|
+
<input type="radio" name="radioletter" id="radioc" disabled="disabled" /><label for="radioc">radio c</label>
|
|
66
|
+
<hr />
|
|
67
|
+
<input type="radio" name="radionumber" id="radio1" /><label for="radio1">radio 1</label>
|
|
68
|
+
<input type="radio" name="radionumber" id="radio2" /><label for="radio2">radio 2</label>
|
|
69
|
+
<input type="radio" name="radionumber" id="radio3" /><label for="radio3">radio 3</label>
|
|
70
|
+
</fieldset>
|
|
71
|
+
|
|
72
|
+
<fieldset>
|
|
73
|
+
<legend>input type="checkbox"</legend>
|
|
74
|
+
<input type="checkbox" id="checkboxa" disabled="disabled" /><label for="checkboxa">checkbox a</label>
|
|
75
|
+
<input type="checkbox" id="checkboxb" disabled="disabled" /><label for="checkboxb">checkbox b</label>
|
|
76
|
+
<input type="checkbox" id="checkboxc" disabled="disabled" /><label for="checkboxc">checkbox c</label>
|
|
77
|
+
<hr />
|
|
78
|
+
<input type="checkbox" id="checkbox1" /><label for="checkbox1">checkbox 1</label>
|
|
79
|
+
<input type="checkbox" id="checkbox2" /><label for="checkbox2">checkbox 2</label>
|
|
80
|
+
<input type="checkbox" id="checkbox3" /><label for="checkbox3">checkbox 3</label>
|
|
81
|
+
</fieldset>
|
|
82
|
+
|
|
83
|
+
</body>
|
|
84
|
+
</html>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Button Visual Test : Button input type checkbox</title>
|
|
6
|
+
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
7
|
+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
8
|
+
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
|
9
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
10
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
11
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
$(function() {
|
|
14
|
+
|
|
15
|
+
$('#check').button();
|
|
16
|
+
|
|
17
|
+
});
|
|
18
|
+
</script>
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
|
|
22
|
+
<input type="checkbox" id="check" /><label for="check">Toggle</label>
|
|
23
|
+
|
|
24
|
+
</body>
|
|
25
|
+
</html>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Button Visual Test : Button disabled true</title>
|
|
6
|
+
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
7
|
+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
8
|
+
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
|
9
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
10
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
11
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
$(function() {
|
|
14
|
+
|
|
15
|
+
$("#button1").button({
|
|
16
|
+
disabled: true
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
$("#anchor1").button({
|
|
20
|
+
disabled: true
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
$("#inputbutton1").button({
|
|
24
|
+
disabled: true
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
$("#radio1, #radio2, #radio3").button({
|
|
28
|
+
disabled: true
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
$("#checkbox1, #checkbox2, #checkbox3").button({
|
|
32
|
+
disabled: true
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
});
|
|
36
|
+
</script>
|
|
37
|
+
</head>
|
|
38
|
+
<body>
|
|
39
|
+
|
|
40
|
+
<fieldset>
|
|
41
|
+
<legend>button</legend>
|
|
42
|
+
<button disabled="disabled">button</button>
|
|
43
|
+
<hr />
|
|
44
|
+
<button id="button1">button</button>
|
|
45
|
+
</fieldset>
|
|
46
|
+
|
|
47
|
+
<fieldset>
|
|
48
|
+
<legend>anchor</legend>
|
|
49
|
+
<a href="javascript:void(0)" disabled="disabled">anchor 1</a>
|
|
50
|
+
<hr />
|
|
51
|
+
<a href="javascript:void(0)" id="anchor1">anchor 1</a>
|
|
52
|
+
</fieldset>
|
|
53
|
+
|
|
54
|
+
<fieldset>
|
|
55
|
+
<legend>input type="button"</legend>
|
|
56
|
+
<input type="button" disabled="disabled" value="input button 1" />
|
|
57
|
+
<hr />
|
|
58
|
+
<input type="button" id="inputbutton1" value="input button 1" />
|
|
59
|
+
</fieldset>
|
|
60
|
+
|
|
61
|
+
<fieldset>
|
|
62
|
+
<legend>input type="radio"</legend>
|
|
63
|
+
<input type="radio" name="radioletter" id="radioa" disabled="disabled" /><label for="radioa">radio a</label>
|
|
64
|
+
<input type="radio" name="radioletter" id="radiob" disabled="disabled" /><label for="radiob">radio b</label>
|
|
65
|
+
<input type="radio" name="radioletter" id="radioc" disabled="disabled" /><label for="radioc">radio c</label>
|
|
66
|
+
<hr />
|
|
67
|
+
<input type="radio" name="radionumber" id="radio1" /><label for="radio1">radio 1</label>
|
|
68
|
+
<input type="radio" name="radionumber" id="radio2" /><label for="radio2">radio 2</label>
|
|
69
|
+
<input type="radio" name="radionumber" id="radio3" /><label for="radio3">radio 3</label>
|
|
70
|
+
</fieldset>
|
|
71
|
+
|
|
72
|
+
<fieldset>
|
|
73
|
+
<legend>input type="checkbox"</legend>
|
|
74
|
+
<input type="checkbox" id="checkboxa" disabled="disabled" /><label for="checkboxa">checkbox a</label>
|
|
75
|
+
<input type="checkbox" id="checkboxb" disabled="disabled" /><label for="checkboxb">checkbox b</label>
|
|
76
|
+
<input type="checkbox" id="checkboxc" disabled="disabled" /><label for="checkboxc">checkbox c</label>
|
|
77
|
+
<hr />
|
|
78
|
+
<input type="checkbox" id="checkbox1" /><label for="checkbox1">checkbox 1</label>
|
|
79
|
+
<input type="checkbox" id="checkbox2" /><label for="checkbox2">checkbox 2</label>
|
|
80
|
+
<input type="checkbox" id="checkbox3" /><label for="checkbox3">checkbox 3</label>
|
|
81
|
+
</fieldset>
|
|
82
|
+
|
|
83
|
+
</body>
|
|
84
|
+
</html>
|
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Button Visual push: Default</title>
|
|
6
|
+
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
|
7
|
+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
#toolbar { margin-top: 2em; padding:0.2em; }
|
|
10
|
+
#ops1, #ops2, #format, #mode { margin-right: 1em }
|
|
11
|
+
</style>
|
|
12
|
+
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../../../external/jquery.metadata.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
|
15
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
|
16
|
+
<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
|
|
17
|
+
<script type="text/javascript">
|
|
18
|
+
$(function() {
|
|
19
|
+
var start = +new Date();
|
|
20
|
+
$("button").button();
|
|
21
|
+
var end = +new Date();
|
|
22
|
+
$("<p></p>").text( "Time to initialize: " + (end - start) + "ms" ).prependTo("body");
|
|
23
|
+
});
|
|
24
|
+
</script>
|
|
25
|
+
</head>
|
|
26
|
+
<body>
|
|
27
|
+
|
|
28
|
+
<button>Simple button, only text</button>
|
|
29
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
30
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
31
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
32
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
33
|
+
<button>Simple button, only text</button>
|
|
34
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
35
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
36
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
37
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
38
|
+
<button>Simple button, only text</button>
|
|
39
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
40
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
41
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
42
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
43
|
+
<button>Simple button, only text</button>
|
|
44
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
45
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
46
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
47
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
48
|
+
<button>Simple button, only text</button>
|
|
49
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
50
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
51
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
52
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
53
|
+
<button>Simple button, only text</button>
|
|
54
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
55
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
56
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
57
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
58
|
+
<button>Simple button, only text</button>
|
|
59
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
60
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
61
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
62
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
63
|
+
<button>Simple button, only text</button>
|
|
64
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
65
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
66
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
67
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
68
|
+
<button>Simple button, only text</button>
|
|
69
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
70
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
71
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
72
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
73
|
+
<button>Simple button, only text</button>
|
|
74
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
75
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
76
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
77
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
78
|
+
<button>Simple button, only text</button>
|
|
79
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
80
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
81
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
82
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
83
|
+
<button>Simple button, only text</button>
|
|
84
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
85
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
86
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
87
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
88
|
+
<button>Simple button, only text</button>
|
|
89
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
90
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
91
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
92
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
93
|
+
<button>Simple button, only text</button>
|
|
94
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
95
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
96
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
97
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
98
|
+
<button>Simple button, only text</button>
|
|
99
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
100
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
101
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
102
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
103
|
+
<button>Simple button, only text</button>
|
|
104
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
105
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
106
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
107
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
108
|
+
<button>Simple button, only text</button>
|
|
109
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
110
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
111
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
112
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
113
|
+
<button>Simple button, only text</button>
|
|
114
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
115
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
116
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
117
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
118
|
+
<button>Simple button, only text</button>
|
|
119
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
120
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
121
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
122
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
123
|
+
<button>Simple button, only text</button>
|
|
124
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
125
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
126
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
127
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
128
|
+
<button>Simple button, only text</button>
|
|
129
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
130
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
131
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
132
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
133
|
+
<button>Simple button, only text</button>
|
|
134
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
135
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
136
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
137
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
138
|
+
<button>Simple button, only text</button>
|
|
139
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
140
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
141
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
142
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
143
|
+
<button>Simple button, only text</button>
|
|
144
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
145
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
146
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
147
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
148
|
+
<button>Simple button, only text</button>
|
|
149
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
150
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
151
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
152
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
153
|
+
<button>Simple button, only text</button>
|
|
154
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
155
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
156
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
157
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
158
|
+
<button>Simple button, only text</button>
|
|
159
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
160
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
161
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
162
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
163
|
+
<button>Simple button, only text</button>
|
|
164
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
165
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
166
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
167
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
168
|
+
<button>Simple button, only text</button>
|
|
169
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
170
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
171
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
172
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
173
|
+
<button>Simple button, only text</button>
|
|
174
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
175
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
176
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
177
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
178
|
+
<button>Simple button, only text</button>
|
|
179
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
180
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
181
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
182
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
183
|
+
<button>Simple button, only text</button>
|
|
184
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
185
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
186
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
187
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
188
|
+
<button>Simple button, only text</button>
|
|
189
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
190
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
191
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
192
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
193
|
+
<button>Simple button, only text</button>
|
|
194
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
195
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
196
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
197
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
198
|
+
<button>Simple button, only text</button>
|
|
199
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
200
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
201
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
202
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
203
|
+
<button>Simple button, only text</button>
|
|
204
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
205
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
206
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
207
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
208
|
+
<button>Simple button, only text</button>
|
|
209
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
210
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
211
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
212
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
213
|
+
<button>Simple button, only text</button>
|
|
214
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
215
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
216
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
217
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
218
|
+
<button>Simple button, only text</button>
|
|
219
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
220
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
221
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
222
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
223
|
+
<button>Simple button, only text</button>
|
|
224
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
225
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
226
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
227
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
228
|
+
<button>Simple button, only text</button>
|
|
229
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
230
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
231
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
232
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
233
|
+
<button>Simple button, only text</button>
|
|
234
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
235
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
236
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
237
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
238
|
+
<button>Simple button, only text</button>
|
|
239
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
240
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
241
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
242
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
243
|
+
<button>Simple button, only text</button>
|
|
244
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
245
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
246
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
247
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
248
|
+
<button>Simple button, only text</button>
|
|
249
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
250
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
251
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
252
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
253
|
+
<button>Simple button, only text</button>
|
|
254
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
255
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
256
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
257
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
258
|
+
<button>Simple button, only text</button>
|
|
259
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
260
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
261
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
262
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
263
|
+
<button>Simple button, only text</button>
|
|
264
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
265
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
266
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
267
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
268
|
+
<button>Simple button, only text</button>
|
|
269
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
270
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
271
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
272
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
273
|
+
<button>Simple button, only text</button>
|
|
274
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
275
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
276
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
277
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
278
|
+
<button>Simple button, only text</button>
|
|
279
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
280
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
281
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
282
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
283
|
+
<button>Simple button, only text</button>
|
|
284
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
285
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
286
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
287
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
288
|
+
<button>Simple button, only text</button>
|
|
289
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
290
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
291
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
292
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
293
|
+
<button>Simple button, only text</button>
|
|
294
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
295
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
296
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
297
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
298
|
+
<button>Simple button, only text</button>
|
|
299
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
300
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
301
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
302
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
303
|
+
<button>Simple button, only text</button>
|
|
304
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
305
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
306
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
307
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
308
|
+
<button>Simple button, only text</button>
|
|
309
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
310
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
311
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
312
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
313
|
+
<button>Simple button, only text</button>
|
|
314
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
315
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
316
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
317
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
318
|
+
<button>Simple button, only text</button>
|
|
319
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
320
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
321
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
322
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
323
|
+
<button>Simple button, only text</button>
|
|
324
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
325
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
326
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
327
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
328
|
+
<button>Simple button, only text</button>
|
|
329
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
330
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
331
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
332
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
333
|
+
<button>Simple button, only text</button>
|
|
334
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
335
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
336
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
337
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
338
|
+
<button>Simple button, only text</button>
|
|
339
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
340
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
341
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
342
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
343
|
+
<button>Simple button, only text</button>
|
|
344
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
345
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
346
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
347
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
348
|
+
<button>Simple button, only text</button>
|
|
349
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
350
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
351
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
352
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
353
|
+
<button>Simple button, only text</button>
|
|
354
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
355
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
356
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
357
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
358
|
+
<button>Simple button, only text</button>
|
|
359
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
360
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
361
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
362
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
363
|
+
<button>Simple button, only text</button>
|
|
364
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
365
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
366
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
367
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
368
|
+
<button>Simple button, only text</button>
|
|
369
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
370
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
371
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
372
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
373
|
+
<button>Simple button, only text</button>
|
|
374
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
375
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
376
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
377
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
378
|
+
<button>Simple button, only text</button>
|
|
379
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
380
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
381
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
382
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
383
|
+
<button>Simple button, only text</button>
|
|
384
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
385
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
386
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
387
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
388
|
+
<button>Simple button, only text</button>
|
|
389
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
390
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
391
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
392
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
393
|
+
<button>Simple button, only text</button>
|
|
394
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
395
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
396
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
397
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
398
|
+
<button>Simple button, only text</button>
|
|
399
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
400
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
401
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
402
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
403
|
+
<button>Simple button, only text</button>
|
|
404
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
405
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
406
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
407
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
408
|
+
<button>Simple button, only text</button>
|
|
409
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
410
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
411
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
412
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
413
|
+
<button>Simple button, only text</button>
|
|
414
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
415
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
416
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
417
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
418
|
+
<button>Simple button, only text</button>
|
|
419
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
420
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
421
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
422
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
423
|
+
<button>Simple button, only text</button>
|
|
424
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
425
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
426
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
427
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
428
|
+
<button>Simple button, only text</button>
|
|
429
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
430
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
431
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
432
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
433
|
+
<button>Simple button, only text</button>
|
|
434
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
435
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
436
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
437
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
438
|
+
<button>Simple button, only text</button>
|
|
439
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
440
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
441
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
442
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
443
|
+
<button>Simple button, only text</button>
|
|
444
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
445
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
446
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
447
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
448
|
+
<button>Simple button, only text</button>
|
|
449
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
450
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
451
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
452
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
453
|
+
<button>Simple button, only text</button>
|
|
454
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
455
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
456
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
457
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
458
|
+
<button>Simple button, only text</button>
|
|
459
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
460
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
461
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
462
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
463
|
+
<button>Simple button, only text</button>
|
|
464
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
465
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
466
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
467
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
468
|
+
<button>Simple button, only text</button>
|
|
469
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
470
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
471
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
472
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
473
|
+
<button>Simple button, only text</button>
|
|
474
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
475
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
476
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
477
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
478
|
+
<button>Simple button, only text</button>
|
|
479
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
480
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
481
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
482
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
483
|
+
<button>Simple button, only text</button>
|
|
484
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
485
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
486
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
487
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
488
|
+
<button>Simple button, only text</button>
|
|
489
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
490
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
491
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
492
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
493
|
+
<button>Simple button, only text</button>
|
|
494
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
495
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
496
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
497
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
498
|
+
<button>Simple button, only text</button>
|
|
499
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
500
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
501
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
502
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
503
|
+
<button>Simple button, only text</button>
|
|
504
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
505
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
506
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
507
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
508
|
+
<button>Simple button, only text</button>
|
|
509
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
510
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
511
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
512
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
513
|
+
<button>Simple button, only text</button>
|
|
514
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
515
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
516
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
517
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
518
|
+
<button>Simple button, only text</button>
|
|
519
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
520
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
521
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
522
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
523
|
+
<button>Simple button, only text</button>
|
|
524
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
525
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
526
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
527
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
528
|
+
<button>Simple button, only text</button>
|
|
529
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
530
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
531
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
532
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
533
|
+
<button>Simple button, only text</button>
|
|
534
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
535
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
536
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
537
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
538
|
+
<button>Simple button, only text</button>
|
|
539
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
540
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
541
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
542
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
543
|
+
<button>Simple button, only text</button>
|
|
544
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
545
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
546
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
547
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
548
|
+
<button>Simple button, only text</button>
|
|
549
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'},text:false}}">Button with icon only</button>
|
|
550
|
+
<button class="{button:{icons:{primary:'ui-icon-locked'}}}">Button with icon on the left</button>
|
|
551
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'}}}">Button with two icons</button>
|
|
552
|
+
<button class="{button:{icons:{primary:'ui-icon-gear',secondary:'ui-icon-triangle-1-s'},text:false}}">Button with two icons</button>
|
|
553
|
+
|
|
554
|
+
</body>
|
|
555
|
+
</html>
|