diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 000000000..d6ba1f4b0
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,12 @@
+# Enforce Unix newlines
+*.css text eol=lf
+*.html text eol=lf
+*.js text eol=lf
+*.json text eol=lf
+*.md text eol=lf
+*.scss text eol=lf
+*.svg text eol=lf
+*.xml text eol=lf
+*.yml text eol=lf
+# Don't diff or textually merge source maps
+*.map binary
diff --git a/.gitignore b/.gitignore
index 0a1ab686e..92175a833 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,8 @@
+# Ignore docs files
+_gh_pages
+_site
+.ruby-version
+
# Numerous always-ignore extensions
*.diff
*.err
@@ -9,7 +14,6 @@
*.zip
*.vi
*~
-*.sass-cache
# OS or Editor folders
.DS_Store
@@ -23,14 +27,16 @@ Thumbs.db
nbproject
*.sublime-project
*.sublime-workspace
+.idea
# Komodo
*.komodoproject
.komodotools
+# Jekyll metadata
+docs/.jekyll-metadata
+
# Folders to ignore
-.hg
-.svn
-.CVS
-.idea
-node_modules
\ No newline at end of file
+node_modules
+bower_components
+.grunt
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..90f2d8c6e
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,32 @@
+sudo: required
+
+dist: trusty
+
+language: node_js
+
+git:
+ depth: 10
+
+node_js:
+ - "4"
+ - "5"
+
+env:
+ matrix:
+ - RUBY_VERSION=2.2
+
+before_install:
+ - rvm install $RUBY_VERSION
+ - rvm use $RUBY_VERSION --fuzzy
+ - export GEMDIR=$(rvm gemdir)
+
+install:
+ - travis_retry npm install -g grunt-cli
+ - travis_retry npm install
+ - travis_retry gem install --no-document "jekyll:~>3.1"
+
+matrix:
+ fast_finish: true
+
+notifications:
+ slack: heybb:51atQXKR2rpnbohAZ0X1vNbE
diff --git a/CNAME b/CNAME
new file mode 100644
index 000000000..aff77b6d7
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+goratchet.com
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index c61c4f39a..1a386364d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,6 +1,6 @@
# Contributing to Ratchet
-## Types of issues
+## Types of issues
The GitHub issue tracker should only be used for one of the
following:
@@ -24,7 +24,7 @@ These are some things that don't belong in the issue tracker:
+ **Please avoid derailing issues.** Keep the discussion on topic and respect
the opinions of others.
-## Bugs
+## Bugs
A bug is a _demonstrable problem_ that is caused by the code in the
repository.
@@ -55,7 +55,7 @@ environment? What steps will reproduce the issue? What browser(s) and OS
experience the problem? What would you expect to be the outcome? All these
details will help me and others to assess and fix any potential bugs.
-### Example of a good bug report:
+### Example of a good bug report
> Short and descriptive title
>
@@ -76,14 +76,14 @@ details will help me and others to assess and fix any potential bugs.
A good bug report shouldn't leave us needing to chase you up to get further
information that is required to assess or fix the bug.
-## Feature requests
+## Feature requests
Feature requests are welcome! Please provide links to examples or articles that
help to illustrate the specifics of a feature you're requesting. The more
detail, the better. It will help us to decide whether the feature is something I
agree should become part of the project.
-## Contribution enquiries
+## Contribution enquiries
Contribution enquiries should take place before any significant pull request,
otherwise you risk spending a lot of time working on something that we might not
@@ -94,7 +94,7 @@ would like to have a go at implementing yourself if they are wanted. Other
enquiries might revolve around refactoring code or porting a project to
different languages.
-## Pull requests
+## Pull requests
Good pull requests - patches, improvements, new features - are a fantastic
help.
@@ -112,7 +112,7 @@ commits.
Please follow this process; it's the best way to get your work included in the
project:
-1. [Fork](http://help.github.com/fork-a-repo/) the project.
+1. [Fork](https://github.com/twbs/ratchet/fork) the project.
2. Clone your fork (`git clone
git@github.com:/.git`).
@@ -146,6 +146,8 @@ project:
If you have any other questions about contributing, please feel free to contact
us.
+**Don't edit files in `dist/`.** You should edit files in `sass/` and `js/`.
+
## Special thanks to @necolas
-For writing the original [issue-guidelines](https://github.com/necolas/issue-guidelines/) from which these were adapted.
\ No newline at end of file
+For writing the original [issue-guidelines](https://github.com/necolas/issue-guidelines/) from which these were adapted.
diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644
index 000000000..2e629eb48
--- /dev/null
+++ b/Gruntfile.js
@@ -0,0 +1,447 @@
+/*!
+ * Ratchet's Gruntfile
+ * http://goratchet.com
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ */
+
+/* jshint node: true */
+module.exports = function (grunt) {
+ 'use strict';
+
+ // Force use of Unix newlines
+ grunt.util.linefeed = '\n';
+
+ RegExp.quote = function (string) {
+ return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&');
+ };
+
+ var generateRatchiconsData = require('./grunt/ratchicons-data-generator.js');
+
+ // Project configuration.
+ grunt.initConfig({
+ pkg: grunt.file.readJSON('package.json'),
+
+ // Metadata.
+ meta: {
+ distPath: 'dist/',
+ docsAssetsPath: 'docs/assets/',
+ docsDistPath: 'docs/dist/',
+ docsPath: 'docs/',
+ jsPath: 'js/',
+ jsTestPath: 'js/tests/',
+ srcPath: 'sass/'
+ },
+
+ banner: '/*!\n' +
+ ' * =====================================================\n' +
+ ' * Ratchet v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
+ ' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
+ ' * Licensed under <%= pkg.license %> (https://github.com/twbs/ratchet/blob/master/LICENSE)\n' +
+ ' *\n' +
+ ' * v<%= pkg.version %> designed by @connors.\n' +
+ ' * =====================================================\n' +
+ ' */\n',
+
+ clean: {
+ dist: ['<%= meta.distPath %>', '<%= meta.docsDistPath %>']
+ },
+
+ concat: {
+ ratchet: {
+ options: {
+ banner: '<%= banner %>'
+ },
+ src: [
+ 'js/common.js',
+ 'js/modals.js',
+ 'js/popovers.js',
+ 'js/push.js',
+ 'js/segmented-controllers.js',
+ 'js/sliders.js',
+ 'js/toggles.js'
+ ],
+ dest: '<%= meta.distPath %>js/<%= pkg.name %>.js'
+ }
+ },
+
+ sass: {
+ options: {
+ outputStyle: 'expanded',
+ precision: 6,
+ sourceComments: false,
+ sourcemap: false,
+ style: 'expanded'
+ },
+ core: {
+ src: 'sass/ratchet.scss',
+ dest: '<%= meta.distPath %>css/<%= pkg.name %>.css'
+ },
+ android: {
+ src: 'sass/theme-android.scss',
+ dest: '<%= meta.distPath %>css/<%= pkg.name %>-theme-android.css'
+ },
+ ios: {
+ src: 'sass/theme-ios.scss',
+ dest: '<%= meta.distPath %>css/<%= pkg.name %>-theme-ios.css'
+ },
+ docs: {
+ src: 'sass/docs.scss',
+ dest: '<%= meta.docsAssetsPath %>css/docs.css'
+ }
+ },
+
+ usebanner: {
+ dist: {
+ options: {
+ position: 'top',
+ banner: '<%= banner %>'
+ },
+ files: {
+ src: [
+ '<%= meta.distPath %>css/*.css',
+ '<%= meta.docsAssetsPath %>css/docs.css'
+ ]
+ }
+ }
+ },
+
+ csscomb: {
+ options: {
+ config: 'sass/.csscomb.json'
+ },
+ core: {
+ files: {
+ '<%= sass.core.dest %>': '<%= sass.core.dest %>'
+ }
+ },
+ android: {
+ files: {
+ '<%= sass.android.dest %>': '<%= sass.android.dest %>'
+ }
+ },
+ ios: {
+ files: {
+ '<%= sass.ios.dest %>': '<%= sass.ios.dest %>'
+ }
+ },
+ docs: {
+ files: {
+ '<%= sass.docs.dest %>': '<%= sass.docs.dest %>'
+ }
+ }
+ },
+
+ copy: {
+ fonts: {
+ expand: true,
+ src: 'fonts/*',
+ dest: '<%= meta.distPath %>'
+ },
+ docs: {
+ expand: true,
+ cwd: '<%= meta.distPath %>',
+ src: [
+ '**/*'
+ ],
+ dest: '<%= meta.docsDistPath %>'
+ }
+ },
+
+ autoprefixer: {
+ options: {
+ browsers: [
+ 'Android 2.3',
+ 'Android >= 4',
+ 'Chrome >= 20',
+ 'Firefox >= 24', // Firefox 24 is the latest ESR
+ 'Explorer >= 9',
+ 'iOS >= 6',
+ 'Opera >= 12',
+ 'Safari >= 6'
+ ]
+ },
+ core: {
+ src: '<%= sass.core.dest %>'
+ },
+ android: {
+ options: {
+ browsers: [
+ 'Android 2.3',
+ 'Android >= 4',
+ 'Chrome >= 20',
+ 'Firefox >= 24', // Firefox 24 is the latest ESR
+ 'Opera >= 12'
+ ]
+ },
+ src: '<%= sass.android.dest %>'
+ },
+ ios: {
+ options: {
+ browsers: ['iOS >= 6']
+ },
+ src: '<%= sass.ios.dest %>'
+ },
+ docs: {
+ src: '<%= sass.docs.dest %>'
+ }
+ },
+
+ cssmin: {
+ options: {
+ keepSpecialComments: '*' // keep all important comments
+ },
+ ratchet: {
+ src: '<%= meta.distPath %>css/<%= pkg.name %>.css',
+ dest: '<%= meta.distPath %>css/<%= pkg.name %>.min.css',
+ options: {
+ sourceMap: true
+ }
+ },
+ theme: {
+ files: {
+ '<%= meta.distPath %>css/<%= pkg.name %>-theme-ios.min.css': '<%= meta.distPath %>css/<%= pkg.name %>-theme-ios.css',
+ '<%= meta.distPath %>css/<%= pkg.name %>-theme-android.min.css': '<%= meta.distPath %>css/<%= pkg.name %>-theme-android.css'
+ }
+ },
+ docs: {
+ src: [
+ '<%= meta.docsAssetsPath %>css/docs.css',
+ '<%= meta.docsAssetsPath %>css/pygments-manni.css'
+ ],
+ dest: '<%= meta.docsAssetsPath %>css/docs.min.css',
+ options: {
+ sourceMap: true
+ }
+ }
+ },
+
+ uglify: {
+ options: {
+ banner: '<%= banner %>',
+ compress: {
+ warnings: false
+ },
+ mangle: true,
+ preserveComments: false
+ },
+ ratchet: {
+ src: '<%= concat.ratchet.dest %>',
+ dest: '<%= meta.distPath %>js/<%= pkg.name %>.min.js',
+ options: {
+ sourceMap: true
+ }
+ },
+ docs: {
+ src: [
+ '<%= meta.docsAssetsPath %>js/docs.js',
+ '<%= meta.docsAssetsPath %>js/fingerblast.js'
+ ],
+ dest: '<%= meta.docsAssetsPath %>js/docs.min.js'
+ }
+ },
+
+ watch: {
+ options: {
+ hostname: 'localhost',
+ livereload: true,
+ port: 8000
+ },
+ js: {
+ files: '<%= meta.jsPath %>**/*.js',
+ tasks: ['dist-js', 'copy']
+ },
+ css: {
+ files: '<%= meta.srcPath %>**/*.scss',
+ tasks: ['dist-css', 'copy']
+ },
+ html: {
+ files: '<%= meta.docsPath %>**',
+ tasks: ['jekyll']
+ }
+ },
+
+ jekyll: {
+ options: {
+ config: '_config.yml'
+ },
+ docs: {},
+ github: {
+ options: {
+ raw: 'github: true'
+ }
+ }
+ },
+
+ htmlmin: {
+ dist: {
+ options: {
+ collapseWhitespace: true,
+ conservativeCollapse: true,
+ minifyCSS: true,
+ minifyJS: true,
+ removeAttributeQuotes: true,
+ removeComments: true
+ },
+ expand: true,
+ cwd: '_site',
+ dest: '_site',
+ src: [
+ '**/*.html'
+ ]
+ }
+ },
+
+ jshint: {
+ options: {
+ jshintrc: 'js/.jshintrc'
+ },
+ grunt: {
+ src: ['Gruntfile.js', 'grunt/*.js']
+ },
+ src: {
+ src: 'js/*.js'
+ },
+ docs: {
+ src: ['<%= meta.docsAssetsPath %>/js/docs.js', '<%= meta.docsAssetsPath %>/js/fingerblast.js']
+ },
+ tests: {
+ options: {
+ jshintrc: 'js/tests/.jshintrc'
+ },
+ src: 'js/tests/*.js'
+ }
+ },
+
+ jscs: {
+ options: {
+ config: 'js/.jscsrc'
+ },
+ grunt: {
+ src: '<%= jshint.grunt.src %>'
+ },
+ src: {
+ src: '<%= jshint.src.src %>'
+ },
+ docs: {
+ src: '<%= jshint.docs.src %>'
+ },
+ tests: {
+ src: '<%= jshint.tests.src %>'
+ }
+ },
+
+ csslint: {
+ options: {
+ csslintrc: 'sass/.csslintrc'
+ },
+ src: [
+ '<%= meta.distPath %>/css/<%= pkg.name %>.css',
+ '<%= meta.distPath %>/css/<%= pkg.name %>-theme-android.css',
+ '<%= meta.distPath %>/css/<%= pkg.name %>-theme-ios.css'
+ ],
+ docs: {
+ options: {
+ ids: false
+ },
+ src: ['<%= meta.docsAssetsPath %>/css/docs.css']
+ }
+ },
+
+ htmllint: {
+ options: {
+ ignore: [
+ 'Attribute "ontouchstart" not allowed on element "body" at this point.',
+ 'Consider using the "h1" element as a top-level heading only (all "h1" elements are treated as top-level headings by many screen readers and other tools).'
+ ]
+ },
+ src: '_site/**/*.html'
+ },
+
+ sed: {
+ versionNumber: {
+ pattern: (function () {
+ var old = grunt.option('oldver');
+ return old ? RegExp.quote(old) : old;
+ })(),
+ replacement: grunt.option('newver'),
+ exclude: [
+ 'dist/fonts',
+ 'docs/assets',
+ 'fonts',
+ 'node_modules'
+ ],
+ recursive: true
+ }
+ },
+
+ connect: {
+ site: {
+ options: {
+ base: '_site/',
+ hostname: 'localhost',
+ livereload: true,
+ open: true,
+ port: 8000
+ }
+ }
+ },
+
+ compress: {
+ main: {
+ options: {
+ archive: 'ratchet-<%= pkg.version %>-dist.zip',
+ mode: 'zip',
+ level: 9,
+ pretty: true
+ },
+ files: [
+ {
+ expand: true,
+ cwd: 'dist/',
+ src: ['**'],
+ dest: 'ratchet-<%= pkg.version %>-dist'
+ }
+ ]
+ }
+ },
+
+ jasmine: {
+ src: '<%= jshint.src.src %>',
+ options: {
+ specs: '<%= jshint.tests.src %>',
+ styles: 'dist/ratchet.min.css',
+ display: 'short',
+ vendor: [
+ '<%= meta.docsAssetsPath %>js/fingerblast.js',
+ '<%= jshint.src.src %>',
+ '<%= meta.jsTestPath %>vendor/touchfaker.min.js'
+ ],
+ outfile: 'js/tests/SpecRunner.html',
+ keepRunner: true
+ }
+ }
+ });
+
+ // Load the plugins
+ require('load-grunt-tasks')(grunt, { scope: 'devDependencies' });
+ require('time-grunt')(grunt);
+
+ // Default task(s).
+ grunt.registerTask('dist-css', ['sass', 'autoprefixer', 'usebanner', 'csscomb', 'cssmin']);
+ grunt.registerTask('dist-js', ['concat', 'uglify']);
+ grunt.registerTask('dist', ['clean', 'dist-css', 'dist-js', 'copy', 'build-ratchicons-data']);
+ grunt.registerTask('validate-html', ['jekyll:docs', 'htmllint']);
+ grunt.registerTask('build', ['dist']);
+ grunt.registerTask('default', ['dist']);
+ grunt.registerTask('test', ['dist', 'csslint', 'jshint', 'jscs', 'jasmine', 'validate-html']);
+ grunt.registerTask('server', ['dist', 'jekyll:docs', 'connect', 'watch']);
+ grunt.registerTask('prep-release', ['dist', 'jekyll:github', 'htmlmin', 'compress']);
+
+ grunt.registerTask('build-ratchicons-data', function () { generateRatchiconsData.call(this, grunt); });
+
+ // Version numbering task.
+ // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z
+ // This can be overzealous, so its changes should always be manually reviewed!
+ grunt.registerTask('change-version-number', 'sed');
+};
diff --git a/LICENSE b/LICENSE
index 1c5c40902..8e6fa2319 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,7 +1,20 @@
-Copyright (c) 2012 DHG, CONNORS, FAT and other contributors
+The MIT License (MIT)
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+Copyright (c) 2015 connors and other contributors
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 7ebbf6fc6..000000000
--- a/Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-#
-# BUILD LIB FILES
-#
-
-build:
- mkdir -p dist
- cat lib/css/base.css lib/css/bars.css lib/css/lists.css lib/css/forms.css lib/css/buttons.css lib/css/chevrons.css lib/css/counts.css lib/css/segmented-controllers.css lib/css/popovers.css lib/css/modals.css lib/css/sliders.css lib/css/toggles.css lib/css/push.css > ./dist/ratchet.tmp.css
- cat lib/js/*.js > ./dist/ratchet.tmp.js
- @echo "/**\n * ==================================\n * Ratchet v1.0.1\n * Licensed under The MIT License\n * http://opensource.org/licenses/MIT\n * ==================================\n */\n" > ./dist/copywrite.txt
- cat ./dist/copywrite.txt ./dist/ratchet.tmp.js > ./dist/ratchet.js
- cat ./dist/copywrite.txt ./dist/ratchet.tmp.css > ./dist/ratchet.css
- rm ./dist/ratchet.tmp.css ./dist/ratchet.tmp.js ./dist/copywrite.txt
-
-
-#
-# START DOCS SERVER
-#
-
-docs:
- open http://localhost:8000/docs
- python -m SimpleHTTPServer
-
-
-#
-# BUILDS GH-PAGES BRANCH
-#
-
-gh-pages: build
- mkdir -p gh-pages
- cp -r docs/ gh-pages/
- cp -r lib gh-pages/lib
- cp -r dist gh-pages/dist
- cd gh-pages
- cp -r dist ratchet
- zip -r ratchet.zip ratchet
- rm -rf ratchet
- cd ..
- git fetch origin
- git checkout gh-pages
- sed -i -e 's/\.\.\//\.\//g' gh-pages/index.html
- sed -i -e 's/\.\.\//\.\//g' gh-pages/one.html
- sed -i -e 's/\.\.\//\.\//g' gh-pages/two.html
- rm -rf ./css
- rm -rf ./img
- rm -rf ./js
- rm -rf ./lib
- rm -rf ./dist
- mv gh-pages/* .
- rm -rf ./*-e
- rm -rf gh-pages
-
-#
-# START DEMO SERVER
-#
-
-demo: build_demo
- open http://localhost:8000/test/app
- python -m SimpleHTTPServer
-
-#
-# START TEST SERVER
-#
-
-test:
- open http://localhost:8000/test
- python -m SimpleHTTPServer
-
-
-.PHONY: docs demo test gh-pages
\ No newline at end of file
diff --git a/README.md b/README.md
index c267e1e9b..d676ed5e7 100644
--- a/README.md
+++ b/README.md
@@ -1,67 +1,118 @@
-# Ratchet
+# [Ratchet](http://goratchet.com)
+[](https://github.com/twbs/ratchet/releases)
+[](https://travis-ci.org/twbs/ratchet)
+[](https://david-dm.org/twbs/ratchet#info=devDependencies)
-Prototype mobile apps with simple HTML, CSS and JS components.
+Build mobile apps with simple HTML, CSS, and JS components.
-## Getting Started
+## Table of contents
-- Clone the repo `git clone git@github.com:maker/ratchet.git` or just [download](http://maker.github.com/ratchet/ratchet.zip) the bundled CSS and JS
-- [Read the docs](http://maker.github.com/ratchet) to learn about the components and how to get a prototype on your phone
-- We will have example apps to check out very soon!
+* [Getting started](#getting-started)
+* [Documentation](#documentation)
+* [Support](#support)
+* [Contributing](#contributing)
+* [Troubleshooting](#troubleshooting)
+* [Versioning](#versioning)
+* [Maintainers](#maintainers)
+* [License](#license)
-Take note that our master branch is our active, unstable development branch and that if you're looking to download a stable copy of the repo, check the [tagged downloads](https://github.com/maker/ratchet/tags).
+## Getting started
+
+* Clone the repo with `git clone https://github.com/twbs/ratchet.git` or just [download](http://github.com/twbs/ratchet/archive/v2.0.2.zip) the bundled CSS and JS
+* [Read the docs](http://goratchet.com) to learn about the components and how to get a prototype on your phone
+* [Check out examples](http://goratchet.com/examples/)
+
+Take note that our master branch is our active, unstable development branch and that if you're looking to download a stable copy of the repo, check the [tagged downloads](https://github.com/twbs/ratchet/tags).
+
+### What's included
+
+Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
+
+```
+ratchet/
+├── css/
+│ ├── ratchet.css
+│ ├── ratchet.min.css
+│ ├── ratchet-theme-android.css
+│ ├── ratchet-theme-android.min.css
+│ ├── ratchet-theme-ios.css
+│ └── ratchet-theme-ios.min.css
+├── js/
+│ ├── ratchet.js
+│ └── ratchet.min.js
+└── fonts/
+ ├── ratchicons.eot
+ ├── ratchicons.svg
+ ├── ratchicons.ttf
+ └── ratchicons.woff
+```
+
+We provide compiled CSS and JS (`ratchet.*`), as well as compiled and minified CSS and JS (`ratchet.min.*`). The Ratchicon fonts are included, as are the optional Android and iOS platform themes.
+
+## Documentation
+
+Ratchet's documentation is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at . The docs may also be run locally.
+
+### Running documentation locally
+
+1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v3.0.x).
+ * **Windows users:** Read [this unofficial guide](http://jekyll-windows.juthilo.com/) to get Jekyll up and running without problems.
+2. Install the Ruby-based syntax highlighter, [Rouge](https://github.com/jneen/rouge), with `gem install rouge`.
+3. From the root `/ratchet` directory, run `jekyll serve` in the command line.
+4. Open in your browser, and boom!
+
+Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).
+
+### Documentation for previous releases
+
+Documentation for v1.0.2 has been made available for the time being at while folks transition to Ratchet 2.
+
+[Previous releases](https://github.com/twbs/ratchet/releases) and their documentation are also available for download.
## Support
-Ratchet was developed to support iOS 5+ for iPhone. Questions or discussions about Ratchet should happen in the [Google group](https://groups.google.com/forum/#!forum/goratchet) or hit us up on Twitter [@goRatchet](http://www.twitter.com/goratchet).
+Questions or discussions about Ratchet should happen in the [Google group](https://groups.google.com/forum/#!forum/goratchet) or hit us up on Twitter [@GoRatchet](https://twitter.com/goratchet).
-## Reporting bugs & contributing
+## Contributing
-Please file a Github issue to [report a bug](http://github.com/maker/ratchet/issues). When reporting a bug, be sure to follow the [contributor guidelines](https://github.com/maker/ratchet/blob/master/CONTRIBUTING.md).
+Please file a GitHub issue to [report a bug](https://github.com/twbs/ratchet/issues). When reporting a bug, be sure to follow the [contributor guidelines](https://github.com/twbs/ratchet/blob/master/CONTRIBUTING.md).
## Troubleshooting
-A small list of "gotchas" are provided below for designers and developers starting to work with Ratchet
+A small list of "gotchas" is provided below for designers and developers starting to work with Ratchet.
+
+* Ratchet is designed to respond to touch events from a mobile device. In order to use mouse click events (for desktop browsing and testing), you have a few options:
+ * Enable touch event emulation in Chrome (found in the overrides tab in the web inspector preferences)
+ * Use a JavaScript library like fingerblast.js to emulate touch events (ideally only loaded from desktop devices)
+* Script tags containing JavaScript will not be executed on pages that are loaded with push.js. If you would like to attach event handlers to elements on other pages, document-level event delegation is a common solution.
+* Ratchet uses XHR requests to fetch additional pages inside the application. Due to security concerns, modern browsers prevent XHR requests when opening files locally (aka using the `file://` protocol); consequently, Ratchet does not work when opened directly as a file.
+ * A common solution to this is to simply serve the files from a local server. One convenient way to achieve this is to run `python -m SimpleHTTPServer ` to serve up the files in the current directory to `http://localhost:`
-- Ratchet is designed to respond to touch events from a mobile device. In order to use mouse click events (for desktop browsing and testing), you have a few options:
- - Enable touch event emulation in Chrome (found in the overrides tab in the web inspector preferences)
- - Use a javascript library like fingerblast.js to emulate touch events (ideally only loaded from desktop devices)
-- Script tags containing javascript will not be executed on pages that are loaded with push.js. If you would like to attach event handlers to elements on other pages, document-level event delegation is a common solution.
-- Ratchet uses XHR requests to fetch additional pages inside the application. Due to security concerns, modern browsers prevent XHR requests when opening files locally (aka using the file:/// protocol); consequently, Ratchet does not work when opened directly as a file.
- - A common solution to this is to simply serve the files from a local server. One convenient way to achieve this is to run ```python -m SimpleHTTPServer ``` to serve up the files in the current directory to ```http://localhost:```
+## Versioning
-## Future features
+For transparency into our release cycle and in striving to maintain backward compatibility, Ratchet is maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we'll adhere to these rules whenever possible.
-Ratchet is just getting started. Here are some of the immediate features we're thinking about:
+Releases will be numbered with the following format:
-- Shelf (exposable left hand navigation a la Path or Facebook)
-- Gridviews
-- Notifications
-- Slide control
-- More list views options
-- Improved active states (especially for lists)
-- Docking list dividers
-- Touch library for richer touch events (swipes, long press, etc)
-- Autocomplete
-- Hiding title bar (hides with scroll)
+`..`
-Even these are just the short-term goals though. We eventually want to extend Ratchet beyond the prototying for iPhone and create HTML/CSS/JS components for iPad and Android devices. Our dream is that Ratchet becomes the best way to create mobile experiences with web standard languages.
+And constructed with the following guidelines:
-## Authors
+* Breaking backward compatibility **bumps the major** while resetting minor and patch
+* New additions without breaking backward compatibility **bumps the minor** while resetting the patch
+* Bug fixes and misc changes **bumps only the patch**
-Dave Gamache
+For more information on SemVer, please visit .
-- http://twitter.com/dhg
-- http://github.com/dhgamache
+## Maintainers
Connor Sears
-- http://twitter.com/connors
-- http://github.com/connors
+*
+*
-Jacob Thornton
-- http://twitter.com/fat
-- http://github.com/fat
+Created by Connor Sears, Dave Gamache, and Jacob Thornton.
## License
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 000000000..5d9972b15
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,15 @@
+# Meta data
+name: Ratchet
+authors: Connor Sears
+description: Build mobile apps with simple HTML, CSS, and JS components.
+
+# Dependencies
+highlighter: rouge
+
+# Permalinks
+permalink: pretty
+
+# Server
+source: docs
+port: 4000
+url: http://goratchet.com
diff --git a/bower.json b/bower.json
new file mode 100644
index 000000000..9ae7be1eb
--- /dev/null
+++ b/bower.json
@@ -0,0 +1,30 @@
+{
+ "name": "ratchet",
+ "description": "Build mobile apps with simple HTML, CSS, and JS components.",
+ "keywords": [
+ "css",
+ "js",
+ "fonts",
+ "ios",
+ "android",
+ "mobile",
+ "prototype"
+ ],
+ "homepage": "http://goratchet.com",
+ "main": [
+ "sass/ratchet.scss",
+ "dist/css/ratchet.css",
+ "dist/js/ratchet.js",
+ "dist/fonts/ratchicons.eot",
+ "dist/fonts/ratchicons.svg",
+ "dist/fonts/ratchicons.ttf",
+ "dist/fonts/ratchicons.woff"
+ ],
+ "ignore": [
+ "_config.yml",
+ ".travis.yml",
+ "CNAME",
+ "CONTRIBUTING.md",
+ "docs"
+ ]
+}
diff --git a/component.json b/component.json
deleted file mode 100644
index 5354c9498..000000000
--- a/component.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "ratchet",
- "version": "1.0.1",
- "main": ["./dist/ratchet.js", "./dist/ratchet.css"]
-}
\ No newline at end of file
diff --git a/dist/css/ratchet-theme-android.css b/dist/css/ratchet-theme-android.css
new file mode 100644
index 000000000..946cd3c07
--- /dev/null
+++ b/dist/css/ratchet-theme-android.css
@@ -0,0 +1,676 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */
+
+body {
+ font-family: "Roboto", sans-serif;
+ font-size: 18px;
+ line-height: 22px;
+ color: #222;
+}
+
+a {
+ color: #33b5e5;
+}
+
+a:active {
+ color: #1a9bcb;
+}
+
+.content {
+ background-color: #f2f2f2;
+}
+
+.bar-nav ~ .content {
+ padding-top: 50px;
+}
+
+.bar-header-secondary ~ .content {
+ padding-top: 100px;
+}
+
+.bar-tab ~ .content {
+ padding-top: 50px;
+ padding-bottom: 0;
+}
+
+.bar-footer ~ .content {
+ padding-bottom: 50px;
+}
+
+.bar-footer-secondary ~ .content {
+ padding-bottom: 100px;
+}
+
+.btn {
+ padding: 8px 15px;
+ font-size: 14px;
+ color: #222;
+ background-color: #cecece;
+ border: 0;
+ border-radius: 2px;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);
+}
+
+.btn:active, .btn.active {
+ color: #222;
+ background-color: #999;
+ border: 0;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
+}
+
+.btn-primary {
+ color: #fff;
+ background-color: #33b5e5;
+ border: 0;
+}
+
+.btn-primary:active, .btn-primary.active {
+ color: #fff;
+ background-color: #1a9bcb;
+ border: 0;
+}
+
+.btn-positive {
+ color: #fff;
+ background-color: #9c0;
+ border: 0;
+}
+
+.btn-positive:active, .btn-positive.active {
+ color: #fff;
+ background-color: #739900;
+ border: 0;
+}
+
+.btn-negative {
+ color: #fff;
+ background-color: #f44;
+ border: 0;
+}
+
+.btn-negative:active, .btn-negative.active {
+ color: #fff;
+ background-color: #f11;
+ border: 0;
+}
+
+.btn-outlined {
+ background-color: transparent;
+ border: 1px solid #999;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-outlined.btn-primary {
+ color: #33b5e5;
+ border: 1px solid #33b5e5;
+}
+
+.btn-outlined.btn-primary:active {
+ background-color: #33b5e5;
+ border: 1px solid #33b5e5;
+}
+
+.btn-outlined.btn-positive {
+ color: #9c0;
+ border: 1px solid #9c0;
+}
+
+.btn-outlined.btn-positive:active {
+ background-color: #9c0;
+ border: 1px solid #9c0;
+}
+
+.btn-outlined.btn-negative {
+ color: #f44;
+ border: 1px solid #f44;
+}
+
+.btn-outlined.btn-negative:active {
+ background-color: #f44;
+ border: 1px solid #f44;
+}
+
+.btn-outlined:active {
+ background-color: #999;
+ border: 1px solid #999;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {
+ color: #fff;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-link {
+ color: #33b5e5;
+ background-color: transparent;
+ border: none;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-link:active, .btn-link.active {
+ color: #1a9bcb;
+ background-color: transparent;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.btn-block {
+ padding: 15px 0;
+ font-size: 18px;
+}
+
+.btn .badge {
+ background-color: rgba(0, 0, 0, .15);
+}
+
+.btn .badge.badge-inverted {
+ background-color: transparent;
+}
+
+.btn:active .badge {
+ color: #fff;
+}
+
+.bar {
+ height: 50px;
+ background-color: #ddd;
+ border-bottom: 1px solid #b1b1b1;
+ -webkit-box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);
+ box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);
+}
+
+.bar.bar-header-secondary {
+ top: 50px;
+}
+
+.bar.bar-footer-secondary {
+ bottom: 50px;
+}
+
+.bar.bar-footer-secondary-tab {
+ bottom: 50px;
+}
+
+.bar .bar-footer,
+.bar .bar-footer-secondary,
+.bar .bar-footer-secondary-tab {
+ border-top: 1px solid #b1b1b1;
+ border-bottom: 0;
+ -webkit-box-shadow: inset 0 -2px 0 #33b5e5;
+ box-shadow: inset 0 -2px 0 #33b5e5;
+}
+
+.bar-tab {
+ top: 0;
+ bottom: auto;
+ height: 50px;
+ border-top: 0;
+}
+
+.bar-tab .tab-item {
+ color: #929292;
+}
+
+.bar-tab .tab-item.active {
+ color: #33b5e5;
+ -webkit-box-shadow: inset 0 -2px 0 #33b5e5;
+ box-shadow: inset 0 -2px 0 #33b5e5;
+}
+
+.bar-tab .tab-item:active {
+ color: #929292;
+ background-color: #78c6e3;
+}
+
+.bar-tab .tab-item .icon {
+ top: 3px;
+ padding-top: 0;
+ padding-bottom: 0;
+}
+
+.title {
+ position: static;
+ padding-left: 15px;
+ font-size: 18px;
+ line-height: 49px;
+ text-align: left;
+}
+
+.bar .btn {
+ top: 7px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+}
+
+.bar .btn-link {
+ top: 0;
+ padding: 0;
+ font-size: 18px;
+ line-height: 49px;
+ color: #33b5e5;
+}
+
+.bar .btn-link:active, .bar .btn-link.active {
+ color: #1a9bcb;
+}
+
+.bar .btn-link .icon {
+ top: 2px;
+ padding: 0;
+}
+
+.bar .btn-block {
+ top: 4px;
+}
+
+.bar .segmented-control {
+ top: 7px;
+}
+
+.bar .icon {
+ padding-top: 13px;
+ padding-bottom: 13px;
+}
+
+.bar .title .icon {
+ padding: 0;
+}
+
+.bar .title .icon.icon-caret {
+ top: 10px;
+ color: #777;
+}
+
+.bar input[type="search"] {
+ height: 35px;
+}
+
+.badge.badge-inverted {
+ color: #999;
+ background-color: transparent;
+}
+
+.badge-primary {
+ color: #fff;
+ background-color: #33b5e5;
+}
+
+.badge-primary.badge-inverted {
+ color: #33b5e5;
+ background-color: transparent;
+}
+
+.badge-positive {
+ color: #fff;
+ background-color: #9c0;
+}
+
+.badge-positive.badge-inverted {
+ color: #9c0;
+ background-color: transparent;
+}
+
+.badge-negative {
+ color: #fff;
+ background-color: #f44;
+}
+
+.badge-negative.badge-inverted {
+ color: #f44;
+ background-color: transparent;
+}
+
+.card {
+ background-color: transparent;
+ border-color: #d9d9d9;
+ border-radius: 2px;
+}
+
+.table-view {
+ background-color: transparent;
+}
+
+.table-view .table-view-cell {
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.table-view .table-view-cell:last-child {
+ background-image: none;
+}
+
+.table-view .table-view-cell > a:not(.btn):active {
+ color: inherit;
+ background-color: #e0e0e0;
+}
+
+.table-view .table-view-cell > a:not(.btn):active .icon {
+ color: #fff;
+}
+
+.table-view .table-view-divider {
+ padding-top: 25px;
+ font-size: 12px;
+ font-weight: bold;
+ text-transform: uppercase;
+ background-color: transparent;
+ border-top: 0;
+ border-bottom: 2px solid #a9a9a9;
+}
+
+.table-view-cell .navigate-left > .btn,
+.table-view-cell .navigate-left > .badge,
+.table-view-cell .navigate-left > .toggle,
+.table-view-cell .navigate-right > .btn,
+.table-view-cell .navigate-right > .badge,
+.table-view-cell .navigate-right > .toggle,
+.table-view-cell .push-left > .btn,
+.table-view-cell .push-left > .badge,
+.table-view-cell .push-left > .toggle,
+.table-view-cell .push-right > .btn,
+.table-view-cell .push-right > .badge,
+.table-view-cell .push-right > .toggle,
+.table-view-cell > a .navigate-left > .btn,
+.table-view-cell > a .navigate-left > .badge,
+.table-view-cell > a .navigate-left > .toggle,
+.table-view-cell > a .navigate-right > .btn,
+.table-view-cell > a .navigate-right > .badge,
+.table-view-cell > a .navigate-right > .toggle,
+.table-view-cell > a .push-left > .btn,
+.table-view-cell > a .push-left > .badge,
+.table-view-cell > a .push-left > .toggle,
+.table-view-cell > a .push-right > .btn,
+.table-view-cell > a .push-right > .badge,
+.table-view-cell > a .push-right > .toggle {
+ right: 15px;
+}
+
+select,
+textarea,
+input[type="text"],
+input[type="search"],
+input[type="password"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="date"],
+input[type="month"],
+input[type="time"],
+input[type="week"],
+input[type="number"],
+input[type="email"],
+input[type="url"],
+input[type="tel"],
+input[type="color"],
+.input-group {
+ height: 40px;
+ padding: 10px 15px;
+ border: 1px solid rgba(0, 0, 0, .2);
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
+}
+
+input[type="search"] {
+ border-radius: 2px;
+}
+
+select,
+textarea,
+.input-group {
+ height: auto;
+}
+
+.input-group {
+ padding: 0;
+ border: 0;
+}
+
+.input-group input {
+ border: 0;
+ border-bottom: 1px solid #d9d9d9;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.input-group input:last-child {
+ background-image: none;
+}
+
+.input-row {
+ height: 40px;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.input-row label {
+ padding-top: 10px;
+ padding-bottom: 10px;
+}
+
+.input-row label + input {
+ background-image: none;
+ border-bottom: 0;
+}
+
+.segmented-control {
+ font-size: 14px;
+ background-color: #cecece;
+ border: 0;
+ border-radius: 2px;
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .25);
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .25);
+}
+
+.segmented-control .control-item {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ color: #222;
+ border-left: 1px solid #999;
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
+}
+
+.segmented-control .control-item:first-child {
+ border-left-width: 0;
+}
+
+.segmented-control .control-item:active, .segmented-control .control-item.active {
+ background-color: #999;
+}
+
+.segmented-control-primary {
+ border: 0;
+}
+
+.segmented-control-primary .control-item {
+ color: #fff;
+ border-color: inherit;
+}
+
+.segmented-control-primary .control-item:active, .segmented-control-primary .control-item.active {
+ color: #fff;
+ background-color: #33b5e5;
+}
+
+.segmented-control-positive {
+ border: 0;
+}
+
+.segmented-control-positive .control-item {
+ color: #fff;
+ border-color: inherit;
+}
+
+.segmented-control-positive .control-item:active, .segmented-control-positive .control-item.active {
+ color: #fff;
+ background-color: #9c0;
+}
+
+.segmented-control-negative {
+ border: 0;
+}
+
+.segmented-control-negative .control-item {
+ color: #fff;
+ border-color: inherit;
+}
+
+.segmented-control-negative .control-item:active, .segmented-control-negative .control-item.active {
+ color: #fff;
+ background-color: #f44;
+}
+
+.popover {
+ top: 47px;
+ left: 15px;
+ width: 200px;
+ margin-left: 0;
+ border: 1px solid #9b9b9b;
+ border-radius: 0;
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
+ box-shadow: 0 0 3px rgba(0, 0, 0, .2);
+ -webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out;
+ -o-transition: -o-transform .1s ease-in-out, opacity .2s ease-in-out;
+ transition: transform .1s ease-in-out, opacity .2s ease-in-out;
+ -webkit-transform: scale(.75);
+ -o-transform: scale(.75);
+ transform: scale(.75);
+}
+
+.popover:before {
+ display: none;
+}
+
+.popover.visible {
+ -webkit-transform: scale(1);
+ -o-transform: scale(1);
+ transform: scale(1);
+}
+
+.backdrop {
+ background-color: transparent;
+}
+
+.popover .bar {
+ border-radius: 0;
+}
+
+.popover .bar-nav ~ .table-view {
+ padding-top: 50px;
+}
+
+.popover .table-view {
+ border-radius: 12px;
+}
+
+.toggle {
+ width: 104px;
+ height: 28px;
+ background-color: #d7d7d7;
+ border: 2px solid #d7d7d7;
+ border-radius: 0;
+}
+
+.toggle .toggle-handle {
+ top: 0;
+ left: 0;
+ width: 50px;
+ height: 24px;
+ background-color: #bebebe;
+ border: 1px solid #b5b5b5;
+ border-radius: 2px;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);
+}
+
+.toggle:before {
+ top: 1px;
+ right: auto;
+ left: 11px;
+ z-index: 3;
+ color: #fff;
+}
+
+.toggle.active {
+ background-color: #d7d7d7;
+ border: 2px solid #d7d7d7;
+}
+
+.toggle.active .toggle-handle {
+ margin-right: 2px;
+ background-color: #33b5e5;
+ border-color: #33b5e5;
+ -webkit-transform: translate3d(50px, 0, 0);
+ transform: translate3d(50px, 0, 0);
+}
+
+.toggle.active:before {
+ right: 14px;
+ left: auto;
+ color: #fff;
+}
+
+.navigate-left:after,
+.push-left:after {
+ content: '';
+}
+
+.navigate-right:after,
+.push-right:after {
+ content: '';
+}
+
+.icon-caret:before {
+ content: '\e800';
+}
+
+.icon-down:before,
+.icon-down-nav:before {
+ content: '\e801';
+}
+
+.icon-download:before {
+ content: '\e802';
+}
+
+.icon-left:before,
+.icon-left-nav:before {
+ content: '\e803';
+}
+
+.icon-more-vertical:before {
+ content: '\e804';
+}
+
+.icon-more:before {
+ content: '\e805';
+}
+
+.icon-right:before,
+.icon-right-nav:before {
+ content: '\e806';
+}
+
+.icon-search:before {
+ content: '\e807';
+}
+
+.icon-share:before {
+ content: '\e808';
+}
+
+.icon-up:before,
+.icon-up-nav:before {
+ content: '\e809';
+}
diff --git a/dist/css/ratchet-theme-android.min.css b/dist/css/ratchet-theme-android.min.css
new file mode 100644
index 000000000..44780f29e
--- /dev/null
+++ b/dist/css/ratchet-theme-android.min.css
@@ -0,0 +1,9 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */.input-group input:last-child,.table-view .table-view-cell:last-child{background-image:none}body{font-family:Roboto,sans-serif;font-size:18px;line-height:22px;color:#222}.bar .btn-link,.title{line-height:49px;font-size:18px}a{color:#33b5e5}a:active{color:#1a9bcb}.content{background-color:#f2f2f2}.bar-nav~.content{padding-top:50px}.bar-header-secondary~.content{padding-top:100px}.bar-tab~.content{padding-top:50px;padding-bottom:0}.bar-footer~.content{padding-bottom:50px}.bar-footer-secondary~.content{padding-bottom:100px}.btn{padding:8px 15px;font-size:14px;color:#222;background-color:#cecece;border:0;border-radius:2px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2),0 1px 1px rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2),0 1px 1px rgba(0,0,0,.25)}.btn.active,.btn:active{color:#222;background-color:#999;border:0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2)}.btn-primary{color:#fff;background-color:#33b5e5;border:0}.btn-primary.active,.btn-primary:active{color:#fff;background-color:#1a9bcb;border:0}.btn-positive{color:#fff;background-color:#9c0;border:0}.btn-positive.active,.btn-positive:active{color:#fff;background-color:#739900;border:0}.btn-negative{color:#fff;background-color:#f44;border:0}.btn-negative.active,.btn-negative:active{color:#fff;background-color:#f11;border:0}.btn-outlined{background-color:transparent;border:1px solid #999;-webkit-box-shadow:none;box-shadow:none}.btn-outlined.btn-primary{color:#33b5e5;border:1px solid #33b5e5}.btn-outlined.btn-primary:active{background-color:#33b5e5;border:1px solid #33b5e5}.btn-outlined.btn-positive{color:#9c0;border:1px solid #9c0}.btn-outlined.btn-positive:active{background-color:#9c0;border:1px solid #9c0}.btn-outlined.btn-negative{color:#f44;border:1px solid #f44}.btn-outlined.btn-negative:active{background-color:#f44;border:1px solid #f44}.btn-outlined:active{background-color:#999;border:1px solid #999;-webkit-box-shadow:none;box-shadow:none}.btn-outlined.btn-negative:active,.btn-outlined.btn-positive:active,.btn-outlined.btn-primary:active{color:#fff;-webkit-box-shadow:none;box-shadow:none}.btn-link{color:#33b5e5;background-color:transparent;border:none;-webkit-box-shadow:none;box-shadow:none}.btn-link.active,.btn-link:active{color:#1a9bcb;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-block{padding:15px 0;font-size:18px}.btn .badge{background-color:rgba(0,0,0,.15)}.btn .badge.badge-inverted{background-color:transparent}.btn:active .badge{color:#fff}.bar{height:50px;background-color:#ddd;border-bottom:1px solid #b1b1b1;-webkit-box-shadow:inset 0 -2px 0 #d2d2d2,0 3px 3px rgba(0,0,0,.07);box-shadow:inset 0 -2px 0 #d2d2d2,0 3px 3px rgba(0,0,0,.07)}.bar.bar-header-secondary{top:50px}.bar.bar-footer-secondary,.bar.bar-footer-secondary-tab{bottom:50px}.bar .bar-footer,.bar .bar-footer-secondary,.bar .bar-footer-secondary-tab{border-top:1px solid #b1b1b1;border-bottom:0;-webkit-box-shadow:inset 0 -2px 0 #33b5e5;box-shadow:inset 0 -2px 0 #33b5e5}.bar-tab{top:0;bottom:auto;height:50px;border-top:0}.bar-tab .tab-item{color:#929292}.bar-tab .tab-item.active{color:#33b5e5;-webkit-box-shadow:inset 0 -2px 0 #33b5e5;box-shadow:inset 0 -2px 0 #33b5e5}.bar-tab .tab-item:active{color:#929292;background-color:#78c6e3}.bar-tab .tab-item .icon{top:3px;padding-top:0;padding-bottom:0}.title{position:static;padding-left:15px;text-align:left}.bar .btn{top:7px;padding-top:10px;padding-bottom:10px}.bar .btn-link{top:0;padding:0;color:#33b5e5}.bar .btn-link.active,.bar .btn-link:active{color:#1a9bcb}.bar .btn-link .icon{top:2px;padding:0}.bar .btn-block{top:4px}.bar .segmented-control{top:7px}.bar .icon{padding-top:13px;padding-bottom:13px}.bar .title .icon{padding:0}.bar .title .icon.icon-caret{top:10px;color:#777}.bar input[type=search]{height:35px}.badge.badge-inverted{color:#999;background-color:transparent}.badge-primary{color:#fff;background-color:#33b5e5}.badge-primary.badge-inverted{color:#33b5e5;background-color:transparent}.badge-positive{color:#fff;background-color:#9c0}.badge-positive.badge-inverted{color:#9c0;background-color:transparent}.badge-negative{color:#fff;background-color:#f44}.card,.table-view{background-color:transparent}.badge-negative.badge-inverted{color:#f44;background-color:transparent}.card{border-color:#d9d9d9;border-radius:2px}.table-view .table-view-cell{border-bottom:1px solid #d9d9d9}.table-view .table-view-cell>a:not(.btn):active{color:inherit;background-color:#e0e0e0}.table-view .table-view-cell>a:not(.btn):active .icon{color:#fff}.table-view .table-view-divider{padding-top:25px;font-size:12px;font-weight:700;text-transform:uppercase;background-color:transparent;border-top:0;border-bottom:2px solid #a9a9a9}.table-view-cell .navigate-left>.badge,.table-view-cell .navigate-left>.btn,.table-view-cell .navigate-left>.toggle,.table-view-cell .navigate-right>.badge,.table-view-cell .navigate-right>.btn,.table-view-cell .navigate-right>.toggle,.table-view-cell .push-left>.badge,.table-view-cell .push-left>.btn,.table-view-cell .push-left>.toggle,.table-view-cell .push-right>.badge,.table-view-cell .push-right>.btn,.table-view-cell .push-right>.toggle,.table-view-cell>a .navigate-left>.badge,.table-view-cell>a .navigate-left>.btn,.table-view-cell>a .navigate-left>.toggle,.table-view-cell>a .navigate-right>.badge,.table-view-cell>a .navigate-right>.btn,.table-view-cell>a .navigate-right>.toggle,.table-view-cell>a .push-left>.badge,.table-view-cell>a .push-left>.btn,.table-view-cell>a .push-left>.toggle,.table-view-cell>a .push-right>.badge,.table-view-cell>a .push-right>.btn,.table-view-cell>a .push-right>.toggle{right:15px}.input-group,input[type=number],input[type=email],input[type=url],input[type=tel],input[type=color],input[type=search],input[type=text],input[type=password],input[type=datetime],input[type=datetime-local],input[type=date],input[type=month],input[type=time],input[type=week],select,textarea{height:40px;padding:10px 15px;border:1px solid rgba(0,0,0,.2);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}input[type=search]{border-radius:2px}.input-group,select,textarea{height:auto}.input-group{padding:0;border:0}.input-row label,.segmented-control .control-item{padding-top:10px;padding-bottom:10px}.input-group input{border:0;border-bottom:1px solid #d9d9d9;-webkit-box-shadow:none;box-shadow:none}.input-row{height:40px;border-bottom:1px solid #d9d9d9}.input-row label+input{background-image:none;border-bottom:0}.segmented-control{font-size:14px;background-color:#cecece;border:0;border-radius:2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.25);box-shadow:0 1px 1px rgba(0,0,0,.25)}.segmented-control .control-item{color:#222;border-left:1px solid #999;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2);box-shadow:inset 0 -1px 0 rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.2)}.segmented-control .control-item:first-child{border-left-width:0}.segmented-control .control-item.active,.segmented-control .control-item:active{background-color:#999}.segmented-control-primary{border:0}.segmented-control-primary .control-item{color:#fff;border-color:inherit}.segmented-control-primary .control-item.active,.segmented-control-primary .control-item:active{color:#fff;background-color:#33b5e5}.segmented-control-positive{border:0}.segmented-control-positive .control-item{color:#fff;border-color:inherit}.segmented-control-positive .control-item.active,.segmented-control-positive .control-item:active{color:#fff;background-color:#9c0}.segmented-control-negative{border:0}.segmented-control-negative .control-item{color:#fff;border-color:inherit}.segmented-control-negative .control-item.active,.segmented-control-negative .control-item:active{color:#fff;background-color:#f44}.popover{top:47px;left:15px;width:200px;margin-left:0;border:1px solid #9b9b9b;border-radius:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-transition:-webkit-transform .1s ease-in-out,opacity .2s ease-in-out;-o-transition:-o-transform .1s ease-in-out,opacity .2s ease-in-out;transition:transform .1s ease-in-out,opacity .2s ease-in-out;-webkit-transform:scale(.75);-o-transform:scale(.75);transform:scale(.75)}.popover:before{display:none}.popover.visible{-webkit-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.backdrop{background-color:transparent}.popover .bar{border-radius:0}.popover .bar-nav~.table-view{padding-top:50px}.popover .table-view{border-radius:12px}.toggle{width:104px;height:28px;background-color:#d7d7d7;border:2px solid #d7d7d7;border-radius:0}.toggle .toggle-handle{top:0;left:0;width:50px;height:24px;background-color:#bebebe;border:1px solid #b5b5b5;border-radius:2px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -1px 0 rgba(0,0,0,.1)}.toggle:before{top:1px;right:auto;left:11px;z-index:3;color:#fff}.toggle.active{background-color:#d7d7d7;border:2px solid #d7d7d7}.toggle.active .toggle-handle{margin-right:2px;background-color:#33b5e5;border-color:#33b5e5;-webkit-transform:translate3d(50px,0,0);transform:translate3d(50px,0,0)}.toggle.active:before{right:14px;left:auto;color:#fff}.navigate-left:after,.navigate-right:after,.push-left:after,.push-right:after{content:''}.icon-caret:before{content:'\e800'}.icon-down-nav:before,.icon-down:before{content:'\e801'}.icon-download:before{content:'\e802'}.icon-left-nav:before,.icon-left:before{content:'\e803'}.icon-more-vertical:before{content:'\e804'}.icon-more:before{content:'\e805'}.icon-right-nav:before,.icon-right:before{content:'\e806'}.icon-search:before{content:'\e807'}.icon-share:before{content:'\e808'}.icon-up-nav:before,.icon-up:before{content:'\e809'}
\ No newline at end of file
diff --git a/dist/css/ratchet-theme-ios.css b/dist/css/ratchet-theme-ios.css
new file mode 100644
index 000000000..341a9bd0d
--- /dev/null
+++ b/dist/css/ratchet-theme-ios.css
@@ -0,0 +1,494 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */
+
+a {
+ color: #007aff;
+}
+
+a:active {
+ color: #0062cc;
+}
+
+.content {
+ background-color: #efeff4;
+}
+
+.h5, h5,
+.h6, h6,
+p {
+ color: #8f8f94;
+}
+
+.h5, h5,
+.h6, h6 {
+ font-weight: normal;
+ text-transform: uppercase;
+}
+
+.btn {
+ color: #929292;
+ background-color: rgba(247, 247, 247, .98);
+ border: 1px solid #929292;
+ -webkit-transition: all;
+ transition: all;
+ -webkit-transition-timing-function: linear;
+ transition-timing-function: linear;
+ -webkit-transition-duration: .2s;
+ transition-duration: .2s;
+}
+
+.btn:active, .btn.active {
+ color: #fff;
+ background-color: #929292;
+}
+
+.btn-primary {
+ color: #fff;
+ background-color: #007aff;
+ border: 1px solid #007aff;
+}
+
+.btn-primary:active, .btn-primary.active {
+ background-color: #0062cc;
+ border: 1px solid #0062cc;
+}
+
+.btn-positive {
+ color: #fff;
+ background-color: #4cd964;
+ border: 1px solid #4cd964;
+}
+
+.btn-positive:active, .btn-positive.active {
+ background-color: #2ac845;
+ border: 1px solid #2ac845;
+}
+
+.btn-negative {
+ color: #fff;
+ background-color: #dd524d;
+ border: 1px solid #dd524d;
+}
+
+.btn-negative:active, .btn-negative.active {
+ background-color: #cf2d28;
+ border: 1px solid #cf2d28;
+}
+
+.btn-outlined {
+ background-color: transparent;
+}
+
+.btn-outlined.btn-primary {
+ color: #007aff;
+}
+
+.btn-outlined.btn-positive {
+ color: #4cd964;
+}
+
+.btn-outlined.btn-negative {
+ color: #dd524d;
+}
+
+.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {
+ color: #fff;
+}
+
+.btn-link {
+ color: #007aff;
+ background-color: transparent;
+ border: none;
+}
+
+.btn-link:active, .btn-link.active {
+ color: #0062cc;
+ background-color: transparent;
+}
+
+.btn .badge {
+ background-color: rgba(0, 0, 0, .15);
+}
+
+.btn .badge.badge-inverted {
+ background-color: transparent;
+}
+
+.btn:active .badge {
+ color: #fff;
+}
+
+.bar {
+ background-color: rgba(247, 247, 247, .98);
+ border-bottom: 0;
+ box-shadow: 0 0 1px rgba(0, 0, 0, .85);
+}
+
+.bar.bar-header-secondary {
+ top: 44px;
+}
+
+.bar.bar-footer-secondary {
+ bottom: 44px;
+}
+
+.bar.bar-footer-secondary-tab {
+ bottom: 50px;
+}
+
+.bar.bar-footer, .bar.bar-footer-secondary, .bar.bar-footer-secondary-tab {
+ border-top: 0;
+}
+
+.bar-tab {
+ border-top: 0;
+}
+
+.tab-item {
+ color: #929292;
+}
+
+.tab-item.active, .tab-item:active {
+ color: #007aff;
+}
+
+.bar-nav .btn-link {
+ color: #007aff;
+}
+
+.bar-nav .btn-link:active {
+ color: #007aff;
+ opacity: .6;
+}
+
+.badge.badge-inverted {
+ color: #929292;
+ background-color: transparent;
+}
+
+.badge-primary {
+ color: #fff;
+ background-color: #007aff;
+}
+
+.badge-primary.badge-inverted {
+ color: #007aff;
+ background-color: transparent;
+}
+
+.badge-positive {
+ color: #fff;
+ background-color: #4cd964;
+}
+
+.badge-positive.badge-inverted {
+ color: #4cd964;
+ background-color: transparent;
+}
+
+.badge-negative {
+ color: #fff;
+ background-color: #dd524d;
+}
+
+.badge-negative.badge-inverted {
+ color: #dd524d;
+ background-color: transparent;
+}
+
+.card .table-view {
+ background-image: none;
+}
+
+.card .table-view-cell:last-child {
+ background-image: none;
+}
+
+.table-view {
+ background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,");
+ background-repeat: no-repeat;
+ background-position: 0 100%, 0 0;
+ border-top: 0;
+ border-bottom: 0;
+}
+
+.table-view .table-view-cell {
+ background-image: url("data:image/svg+xml;utf8,");
+ background-repeat: no-repeat;
+ background-position: 15px 100%;
+ border-bottom: 0;
+}
+
+.table-view .table-view-cell:last-child {
+ background-image: none;
+}
+
+.table-view .table-view-cell > a:not(.btn):active {
+ color: inherit;
+}
+
+.table-view .table-view-divider {
+ background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,");
+ background-repeat: no-repeat;
+ background-position: 0 100%, 0 0;
+ border-top: 0;
+ border-bottom: 0;
+}
+
+select,
+textarea,
+input[type="text"],
+input[type="search"],
+input[type="password"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="date"],
+input[type="month"],
+input[type="time"],
+input[type="week"],
+input[type="number"],
+input[type="email"],
+input[type="url"],
+input[type="tel"],
+input[type="color"],
+.input-group {
+ height: 40px;
+ padding: 10px 15px;
+ border: 1px solid rgba(0, 0, 0, .2);
+}
+
+input[type="search"] {
+ height: 34px;
+ text-align: center;
+ background-color: rgba(0, 0, 0, .1);
+ border: 0;
+ border-radius: 6px;
+}
+
+input[type="search"]:focus {
+ text-align: left;
+}
+
+select,
+textarea,
+.input-group {
+ height: auto;
+}
+
+.input-group {
+ padding: 0;
+ background-image: url("data:image/svg+xml;utf8,"), url("data:image/svg+xml;utf8,");
+ background-repeat: no-repeat;
+ background-position: 0 100%, 0 0;
+ border: 0;
+}
+
+.input-group input {
+ background-image: url("data:image/svg+xml;utf8,");
+ background-repeat: no-repeat;
+ background-position: 15px 100%;
+ border: 0;
+}
+
+.input-group input:last-child {
+ background-image: none;
+}
+
+.input-row {
+ background-image: url("data:image/svg+xml;utf8,");
+ background-repeat: no-repeat;
+ background-position: 15px 100%;
+ border-bottom: 0;
+}
+
+.input-row:last-child,
+.input-row label + input {
+ background-image: none;
+}
+
+.segmented-control {
+ background-color: transparent;
+ border: 1px solid #929292;
+}
+
+.segmented-control .control-item {
+ color: #929292;
+ border-color: #929292;
+ -webkit-transition: background-color .1s linear;
+ transition: background-color .1s linear;
+}
+
+.segmented-control .control-item:active {
+ background-color: #ebebeb;
+}
+
+.segmented-control .control-item.active {
+ color: #fff;
+ background-color: #929292;
+}
+
+.segmented-control-primary {
+ border: 1px solid #007aff;
+}
+
+.segmented-control-primary .control-item {
+ color: #007aff;
+ border-color: inherit;
+}
+
+.segmented-control-primary .control-item:active {
+ background-color: #b3d7ff;
+}
+
+.segmented-control-primary .control-item.active {
+ color: #fff;
+ background-color: #007aff;
+}
+
+.segmented-control-positive {
+ border: 1px solid #4cd964;
+}
+
+.segmented-control-positive .control-item {
+ color: #4cd964;
+ border-color: inherit;
+}
+
+.segmented-control-positive .control-item:active {
+ background-color: #dff8e4;
+}
+
+.segmented-control-positive .control-item.active {
+ color: #fff;
+ background-color: #4cd964;
+}
+
+.segmented-control-negative {
+ border: 1px solid #dd524d;
+}
+
+.segmented-control-negative .control-item {
+ color: #dd524d;
+ border-color: inherit;
+}
+
+.segmented-control-negative .control-item:active {
+ background-color: #fae4e3;
+}
+
+.segmented-control-negative .control-item.active {
+ color: #fff;
+ background-color: #dd524d;
+}
+
+.popover {
+ border-radius: 12px;
+ -webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;
+ transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;
+}
+
+.popover:before {
+ border-bottom: 15px solid rgba(247, 247, 247, .98);
+}
+
+.popover .bar {
+ box-shadow: none;
+}
+
+.popover .bar-nav {
+ border-bottom: 1px solid rgba(0, 0, 0, .15);
+}
+
+.popover .table-view {
+ background-image: none;
+ border-radius: 12px;
+}
+
+.modal {
+ -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
+ transition-timing-function: cubic-bezier(.1, .5, .1, 1);
+}
+
+.modal.active {
+ -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
+ transition-timing-function: cubic-bezier(.1, .5, .1, 1);
+}
+
+.toggle {
+ width: 47px;
+ border: 2px solid #e6e6e6;
+ box-shadow: inset 0 0 0 0 #e1e1e1;
+ -webkit-transition-duration: .2s;
+ transition-duration: .2s;
+ -webkit-transition-property: box-shadow, border;
+ transition-property: box-shadow, border;
+}
+
+.toggle .toggle-handle {
+ border: 1px solid rgba(0, 0, 0, .2);
+ box-shadow: 0 3px 3px rgba(0, 0, 0, .08);
+ -webkit-transition-property: -webkit-transform, border, width;
+ transition-property: transform, border, width;
+}
+
+.toggle:before {
+ display: none;
+}
+
+.toggle.active {
+ background-color: transparent;
+ border: 2px solid #4cd964;
+ box-shadow: inset 0 0 0 13px #4cd964;
+}
+
+.toggle.active .toggle-handle {
+ -webkit-transform: translate3d(17px, 0, 0);
+ transform: translate3d(17px, 0, 0);
+}
+
+.toggle.active .toggle-handle {
+ border-color: #4cd964;
+}
+
+.content.fade {
+ -webkit-transition: opacity .2s ease-in-out;
+ transition: opacity .2s ease-in-out;
+}
+
+.content.sliding {
+ -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
+ transition-timing-function: cubic-bezier(.1, .5, .1, 1);
+}
+
+.content.sliding.sliding-in, .content.sliding.right:not([class*="sliding-in"]) {
+ -webkit-animation-name: fadeOverlay;
+ animation-name: fadeOverlay;
+ -webkit-animation-duration: .4s;
+ animation-duration: .4s;
+}
+
+.content.sliding.right:not([class*="sliding-in"]) {
+ -webkit-animation-direction: reverse;
+ animation-direction: reverse;
+}
+
+.content.sliding.left {
+ -webkit-transform: translate3d(-20%, 0, 0);
+ transform: translate3d(-20%, 0, 0);
+}
+
+@-webkit-keyframes fadeOverlay {
+ from {
+ box-shadow: 0 0 10px transparent, -320px 0 0 transparent;
+ }
+ to {
+ box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);
+ }
+}
diff --git a/dist/css/ratchet-theme-ios.min.css b/dist/css/ratchet-theme-ios.min.css
new file mode 100644
index 000000000..135f377aa
--- /dev/null
+++ b/dist/css/ratchet-theme-ios.min.css
@@ -0,0 +1,9 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */a{color:#007aff}a:active{color:#0062cc}.content{background-color:#efeff4}.h5,.h6,h5,h6,p{color:#8f8f94}.h5,.h6,h5,h6{font-weight:400;text-transform:uppercase}.btn{color:#929292;background-color:rgba(247,247,247,.98);border:1px solid #929292;-webkit-transition:all;transition:all;-webkit-transition-timing-function:linear;transition-timing-function:linear;-webkit-transition-duration:.2s;transition-duration:.2s}.btn.active,.btn:active{color:#fff;background-color:#929292}.btn-primary{color:#fff;background-color:#007aff;border:1px solid #007aff}.btn-primary.active,.btn-primary:active{background-color:#0062cc;border:1px solid #0062cc}.btn-positive{color:#fff;background-color:#4cd964;border:1px solid #4cd964}.btn-positive.active,.btn-positive:active{background-color:#2ac845;border:1px solid #2ac845}.btn-negative{color:#fff;background-color:#dd524d;border:1px solid #dd524d}.btn-negative.active,.btn-negative:active{background-color:#cf2d28;border:1px solid #cf2d28}.btn-link,.btn-outlined{background-color:transparent}.btn-outlined.btn-primary{color:#007aff}.btn-outlined.btn-positive{color:#4cd964}.btn-outlined.btn-negative{color:#dd524d}.btn-outlined.btn-negative:active,.btn-outlined.btn-positive:active,.btn-outlined.btn-primary:active{color:#fff}.btn-link{color:#007aff;border:none}.bar-tab,.bar.bar-footer,.bar.bar-footer-secondary,.bar.bar-footer-secondary-tab,.table-view{border-top:0}.btn-link.active,.btn-link:active{color:#0062cc;background-color:transparent}.btn .badge{background-color:rgba(0,0,0,.15)}.btn .badge.badge-inverted{background-color:transparent}.btn:active .badge{color:#fff}.bar{background-color:rgba(247,247,247,.98);border-bottom:0;box-shadow:0 0 1px rgba(0,0,0,.85)}.bar.bar-header-secondary{top:44px}.bar.bar-footer-secondary{bottom:44px}.bar.bar-footer-secondary-tab{bottom:50px}.tab-item{color:#929292}.bar-nav .btn-link,.tab-item.active,.tab-item:active{color:#007aff}.bar-nav .btn-link:active{color:#007aff;opacity:.6}.badge.badge-inverted{color:#929292;background-color:transparent}.badge-primary{color:#fff;background-color:#007aff}.badge-primary.badge-inverted{color:#007aff;background-color:transparent}.badge-positive{color:#fff;background-color:#4cd964}.badge-positive.badge-inverted{color:#4cd964;background-color:transparent}.badge-negative{color:#fff;background-color:#dd524d}.badge-negative.badge-inverted{color:#dd524d;background-color:transparent}.card .table-view,.card .table-view-cell:last-child{background-image:none}.table-view{background-image:url("data:image/svg+xml;utf8,"),url("data:image/svg+xml;utf8,");background-repeat:no-repeat;background-position:0 100%,0 0;border-bottom:0}.table-view .table-view-cell{background-image:url("data:image/svg+xml;utf8,");background-repeat:no-repeat;background-position:15px 100%;border-bottom:0}.table-view .table-view-cell:last-child{background-image:none}.input-group,.table-view .table-view-divider{background-image:url("data:image/svg+xml;utf8,"),url("data:image/svg+xml;utf8,");background-repeat:no-repeat;background-position:0 100%,0 0}.table-view .table-view-cell>a:not(.btn):active{color:inherit}.table-view .table-view-divider{border-top:0;border-bottom:0}.input-group,input[type=text],input[type=email],input[type=url],input[type=tel],input[type=color],input[type=search],input[type=password],input[type=datetime],input[type=datetime-local],input[type=date],input[type=month],input[type=time],input[type=week],input[type=number],select,textarea{height:40px;padding:10px 15px;border:1px solid rgba(0,0,0,.2)}input[type=search]{height:34px;text-align:center;background-color:rgba(0,0,0,.1);border:0;border-radius:6px}input[type=search]:focus{text-align:left}.input-group,select,textarea{height:auto}.input-group{padding:0;border:0}.input-group input,.input-row{background-repeat:no-repeat;background-position:15px 100%}.input-group input{background-image:url("data:image/svg+xml;utf8,");border:0}.input-group input:last-child{background-image:none}.input-row{background-image:url("data:image/svg+xml;utf8,");border-bottom:0}.input-row label+input,.input-row:last-child,.popover .table-view{background-image:none}.segmented-control{background-color:transparent;border:1px solid #929292}.segmented-control .control-item{color:#929292;border-color:#929292;-webkit-transition:background-color .1s linear;transition:background-color .1s linear}.segmented-control .control-item:active{background-color:#ebebeb}.segmented-control .control-item.active{color:#fff;background-color:#929292}.segmented-control-primary{border:1px solid #007aff}.segmented-control-primary .control-item{color:#007aff;border-color:inherit}.segmented-control-primary .control-item:active{background-color:#b3d7ff}.segmented-control-primary .control-item.active{color:#fff;background-color:#007aff}.segmented-control-positive{border:1px solid #4cd964}.segmented-control-positive .control-item{color:#4cd964;border-color:inherit}.segmented-control-positive .control-item:active{background-color:#dff8e4}.segmented-control-positive .control-item.active{color:#fff;background-color:#4cd964}.segmented-control-negative{border:1px solid #dd524d}.segmented-control-negative .control-item{color:#dd524d;border-color:inherit}.segmented-control-negative .control-item:active{background-color:#fae4e3}.segmented-control-negative .control-item.active{color:#fff;background-color:#dd524d}.popover{border-radius:12px;-webkit-transition:-webkit-transform .2s ease-in-out,opacity .2s ease-in-out;transition:-webkit-transform .2s ease-in-out,opacity .2s ease-in-out}.popover:before{border-bottom:15px solid rgba(247,247,247,.98)}.popover .bar{box-shadow:none}.popover .bar-nav{border-bottom:1px solid rgba(0,0,0,.15)}.popover .table-view{border-radius:12px}.modal,.modal.active{-webkit-transition-timing-function:cubic-bezier(.1,.5,.1,1);transition-timing-function:cubic-bezier(.1,.5,.1,1)}.toggle{width:47px;border:2px solid #e6e6e6;box-shadow:inset 0 0 0 0 #e1e1e1;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:box-shadow,border;transition-property:box-shadow,border}.toggle .toggle-handle{border:1px solid rgba(0,0,0,.2);box-shadow:0 3px 3px rgba(0,0,0,.08);-webkit-transition-property:-webkit-transform,border,width;transition-property:transform,border,width}.toggle:before{display:none}.toggle.active{background-color:transparent;border:2px solid #4cd964;box-shadow:inset 0 0 0 13px #4cd964}.toggle.active .toggle-handle{-webkit-transform:translate3d(17px,0,0);transform:translate3d(17px,0,0);border-color:#4cd964}.content.fade{-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.content.sliding{-webkit-transition-timing-function:cubic-bezier(.1,.5,.1,1);transition-timing-function:cubic-bezier(.1,.5,.1,1)}.content.sliding.right:not([class*=sliding-in]),.content.sliding.sliding-in{-webkit-animation-name:fadeOverlay;animation-name:fadeOverlay;-webkit-animation-duration:.4s;animation-duration:.4s}.content.sliding.right:not([class*=sliding-in]){-webkit-animation-direction:reverse;animation-direction:reverse}.content.sliding.left{-webkit-transform:translate3d(-20%,0,0);transform:translate3d(-20%,0,0)}@-webkit-keyframes fadeOverlay{from{box-shadow:0 0 10px transparent,-320px 0 0 transparent}to{box-shadow:0 0 10px rgba(0,0,0,.3),-320px 0 0 rgba(0,0,0,.1)}}
\ No newline at end of file
diff --git a/dist/css/ratchet.css b/dist/css/ratchet.css
new file mode 100644
index 000000000..c8d14e3b2
--- /dev/null
+++ b/dist/css/ratchet.css
@@ -0,0 +1,1524 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */
+
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+ font-family: sans-serif;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+}
+
+body {
+ margin: 0;
+}
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+ display: block;
+}
+
+audio,
+canvas,
+progress,
+video {
+ display: inline-block;
+ vertical-align: baseline;
+}
+
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+
+[hidden],
+template {
+ display: none;
+}
+
+a {
+ background-color: transparent;
+}
+
+a:active,
+a:hover {
+ outline: 0;
+}
+
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+
+b,
+strong {
+ font-weight: bold;
+}
+
+dfn {
+ font-style: italic;
+}
+
+h1 {
+ margin: .67em 0;
+ font-size: 2em;
+}
+
+mark {
+ color: #000;
+ background: #ff0;
+}
+
+small {
+ font-size: 80%;
+}
+
+sub,
+sup {
+ position: relative;
+ font-size: 75%;
+ line-height: 0;
+ vertical-align: baseline;
+}
+
+sup {
+ top: -.5em;
+}
+
+sub {
+ bottom: -.25em;
+}
+
+img {
+ border: 0;
+}
+
+svg:not(:root) {
+ overflow: hidden;
+}
+
+figure {
+ margin: 1em 40px;
+}
+
+hr {
+ height: 0;
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+}
+
+pre {
+ overflow: auto;
+}
+
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em;
+}
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ margin: 0;
+ font: inherit;
+ color: inherit;
+}
+
+button {
+ overflow: visible;
+}
+
+button,
+select {
+ text-transform: none;
+}
+
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button;
+ cursor: pointer;
+}
+
+button[disabled],
+html input[disabled] {
+ cursor: default;
+}
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ padding: 0;
+ border: 0;
+}
+
+input {
+ line-height: normal;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0;
+}
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+ height: auto;
+}
+
+input[type="search"] {
+ -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ -webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+fieldset {
+ padding: .35em .625em .75em;
+ margin: 0 2px;
+ border: 1px solid #c0c0c0;
+}
+
+legend {
+ padding: 0;
+ border: 0;
+}
+
+textarea {
+ overflow: auto;
+}
+
+optgroup {
+ font-weight: bold;
+}
+
+table {
+ border-spacing: 0;
+ border-collapse: collapse;
+}
+
+td,
+th {
+ padding: 0;
+}
+
+* {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+body {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ font-family: "Helvetica Neue", Helvetica, sans-serif;
+ font-size: 17px;
+ line-height: 21px;
+ color: #000;
+ background-color: #fff;
+}
+
+a {
+ color: #428bca;
+ text-decoration: none;
+
+ -webkit-tap-highlight-color: transparent;
+}
+
+a:active {
+ color: #3071a9;
+}
+
+.content {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+ background-color: #fff;
+}
+
+.content > * {
+ -webkit-transform: translateZ(0);
+ -ms-transform: translateZ(0);
+ transform: translateZ(0);
+}
+
+.bar-nav ~ .content {
+ padding-top: 44px;
+}
+
+.bar-header-secondary ~ .content {
+ padding-top: 88px;
+}
+
+.bar-footer ~ .content {
+ padding-bottom: 44px;
+}
+
+.bar-footer-secondary ~ .content {
+ padding-bottom: 88px;
+}
+
+.bar-tab ~ .content {
+ padding-bottom: 50px;
+}
+
+.bar-footer-secondary-tab ~ .content {
+ padding-bottom: 94px;
+}
+
+.content-padded {
+ margin: 10px;
+}
+
+.text-center {
+ text-align: center;
+}
+
+.pull-left {
+ float: left;
+}
+
+.pull-right {
+ float: right;
+}
+
+.clearfix:before, .clearfix:after {
+ display: table;
+ content: " ";
+}
+
+.clearfix:after {
+ clear: both;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ margin-top: 0;
+ margin-bottom: 10px;
+ line-height: 1;
+}
+
+h1, .h1 {
+ font-size: 36px;
+}
+
+h2, .h2 {
+ font-size: 30px;
+}
+
+h3, .h3 {
+ font-size: 24px;
+}
+
+h4, .h4 {
+ font-size: 18px;
+}
+
+h5, .h5 {
+ margin-top: 20px;
+ font-size: 14px;
+}
+
+h6, .h6 {
+ margin-top: 20px;
+ font-size: 12px;
+}
+
+p {
+ margin-top: 0;
+ margin-bottom: 10px;
+ font-size: 14px;
+ color: #777;
+}
+
+.btn {
+ position: relative;
+ display: inline-block;
+ padding: 6px 8px 7px;
+ margin-bottom: 0;
+ font-size: 12px;
+ font-weight: 400;
+ line-height: 1;
+ color: #333;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: top;
+ cursor: pointer;
+ background-color: #fff;
+ border: 1px solid #ccc;
+ border-radius: 3px;
+}
+
+.btn:active, .btn.active {
+ color: inherit;
+ background-color: #ccc;
+}
+
+.btn:disabled, .btn.disabled {
+ opacity: .6;
+}
+
+.btn-primary {
+ color: #fff;
+ background-color: #428bca;
+ border: 1px solid #428bca;
+}
+
+.btn-primary:active, .btn-primary.active {
+ color: #fff;
+ background-color: #3071a9;
+ border: 1px solid #3071a9;
+}
+
+.btn-positive {
+ color: #fff;
+ background-color: #5cb85c;
+ border: 1px solid #5cb85c;
+}
+
+.btn-positive:active, .btn-positive.active {
+ color: #fff;
+ background-color: #449d44;
+ border: 1px solid #449d44;
+}
+
+.btn-negative {
+ color: #fff;
+ background-color: #d9534f;
+ border: 1px solid #d9534f;
+}
+
+.btn-negative:active, .btn-negative.active {
+ color: #fff;
+ background-color: #c9302c;
+ border: 1px solid #c9302c;
+}
+
+.btn-outlined {
+ background-color: transparent;
+}
+
+.btn-outlined.btn-primary {
+ color: #428bca;
+}
+
+.btn-outlined.btn-positive {
+ color: #5cb85c;
+}
+
+.btn-outlined.btn-negative {
+ color: #d9534f;
+}
+
+.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {
+ color: #fff;
+}
+
+.btn-link {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ color: #428bca;
+ background-color: transparent;
+ border: 0;
+}
+
+.btn-link:active, .btn-link.active {
+ color: #3071a9;
+ background-color: transparent;
+}
+
+.btn-block {
+ display: block;
+ width: 100%;
+ padding: 15px 0;
+ margin-bottom: 10px;
+ font-size: 18px;
+}
+
+input[type="submit"],
+input[type="reset"],
+input[type="button"] {
+ width: 100%;
+}
+
+.btn .badge {
+ margin: -2px -4px -2px 4px;
+ font-size: 12px;
+ background-color: rgba(0, 0, 0, .15);
+}
+
+.btn .badge-inverted,
+.btn:active .badge-inverted {
+ background-color: transparent;
+}
+
+.btn-primary:active .badge-inverted,
+.btn-positive:active .badge-inverted,
+.btn-negative:active .badge-inverted {
+ color: #fff;
+}
+
+.btn-block .badge {
+ position: absolute;
+ right: 0;
+ margin-right: 10px;
+}
+
+.btn .icon {
+ font-size: inherit;
+}
+
+.bar {
+ position: fixed;
+ right: 0;
+ left: 0;
+ z-index: 10;
+ height: 44px;
+ padding-right: 10px;
+ padding-left: 10px;
+ background-color: #fff;
+ border-bottom: 1px solid #ddd;
+
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+}
+
+.bar-header-secondary {
+ top: 44px;
+}
+
+.bar-footer {
+ bottom: 0;
+}
+
+.bar-footer-secondary {
+ bottom: 44px;
+}
+
+.bar-footer-secondary-tab {
+ bottom: 50px;
+}
+
+.bar-footer,
+.bar-footer-secondary,
+.bar-footer-secondary-tab {
+ border-top: 1px solid #ddd;
+ border-bottom: 0;
+}
+
+.bar-nav {
+ top: 0;
+}
+
+.title {
+ position: absolute;
+ display: block;
+ width: 100%;
+ padding: 0;
+ margin: 0 -10px;
+ font-size: 17px;
+ font-weight: 500;
+ line-height: 44px;
+ color: #000;
+ text-align: center;
+ white-space: nowrap;
+}
+
+.title a {
+ color: inherit;
+}
+
+.bar-tab {
+ bottom: 0;
+ display: table;
+ width: 100%;
+ height: 50px;
+ padding: 0;
+ table-layout: fixed;
+ border-top: 1px solid #ddd;
+ border-bottom: 0;
+}
+
+.bar-tab .tab-item {
+ position: relative;
+ display: table-cell;
+ width: 1%;
+ height: 50px;
+ color: #929292;
+ text-align: center;
+ vertical-align: middle;
+}
+
+.bar-tab .tab-item.active, .bar-tab .tab-item:active {
+ color: #428bca;
+}
+
+.bar-tab .tab-item .badge {
+ position: absolute;
+ top: 3px;
+ left: 50%;
+ vertical-align: top;
+}
+
+.bar-tab .tab-item .icon {
+ top: 3px;
+ width: 24px;
+ height: 24px;
+ padding-top: 0;
+ padding-bottom: 0;
+}
+
+.bar-tab .tab-item .icon ~ .tab-label {
+ display: block;
+ font-size: 11px;
+}
+
+.bar .btn {
+ position: relative;
+ top: 7px;
+ z-index: 20;
+ padding: 6px 12px 7px;
+ margin-top: 0;
+ font-weight: 400;
+}
+
+.bar .btn.pull-right {
+ margin-left: 10px;
+}
+
+.bar .btn.pull-left {
+ margin-right: 10px;
+}
+
+.bar .btn-link {
+ top: 0;
+ padding: 0;
+ font-size: 16px;
+ line-height: 44px;
+ color: #428bca;
+ border: 0;
+}
+
+.bar .btn-link:active, .bar .btn-link.active {
+ color: #3071a9;
+}
+
+.bar .btn-block {
+ top: 6px;
+ padding: 7px 0;
+ margin-bottom: 0;
+ font-size: 16px;
+}
+
+.bar .btn-nav.pull-left {
+ margin-left: -5px;
+}
+
+.bar .btn-nav.pull-left .icon-left-nav {
+ margin-right: -3px;
+}
+
+.bar .btn-nav.pull-right {
+ margin-right: -5px;
+}
+
+.bar .btn-nav.pull-right .icon-right-nav {
+ margin-left: -3px;
+}
+
+.bar .icon {
+ position: relative;
+ z-index: 20;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ font-size: 24px;
+}
+
+.bar .btn .icon {
+ top: 3px;
+ padding: 0;
+}
+
+.bar .title .icon {
+ padding: 0;
+}
+
+.bar .title .icon.icon-caret {
+ top: 4px;
+ margin-left: -5px;
+}
+
+.bar input[type="search"] {
+ height: 29px;
+ margin: 6px 0;
+}
+
+.bar .segmented-control {
+ top: 7px;
+ margin: 0 auto;
+}
+
+.badge {
+ display: inline-block;
+ padding: 2px 9px 3px;
+ font-size: 12px;
+ line-height: 1;
+ color: #333;
+ background-color: rgba(0, 0, 0, .15);
+ border-radius: 100px;
+}
+
+.badge.badge-inverted {
+ padding: 0 5px 0 0;
+ background-color: transparent;
+}
+
+.badge-primary {
+ color: #fff;
+ background-color: #428bca;
+}
+
+.badge-primary.badge-inverted {
+ color: #428bca;
+}
+
+.badge-positive {
+ color: #fff;
+ background-color: #5cb85c;
+}
+
+.badge-positive.badge-inverted {
+ color: #5cb85c;
+}
+
+.badge-negative {
+ color: #fff;
+ background-color: #d9534f;
+}
+
+.badge-negative.badge-inverted {
+ color: #d9534f;
+}
+
+.card {
+ margin: 10px;
+ overflow: hidden;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 6px;
+}
+
+.card .table-view {
+ margin-bottom: 0;
+ border-top: 0;
+ border-bottom: 0;
+}
+
+.card .table-view .table-view-divider:first-child {
+ top: 0;
+ border-top-left-radius: 6px;
+ border-top-right-radius: 6px;
+}
+
+.card .table-view .table-view-divider:last-child {
+ border-bottom-right-radius: 6px;
+ border-bottom-left-radius: 6px;
+}
+
+.card .table-view-cell:last-child {
+ border-bottom: 0;
+}
+
+.table-view {
+ padding-left: 0;
+ margin-top: 0;
+ margin-bottom: 15px;
+ list-style: none;
+ background-color: #fff;
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+}
+
+.table-view-cell {
+ position: relative;
+ padding: 11px 65px 11px 15px;
+ overflow: hidden;
+ border-bottom: 1px solid #ddd;
+}
+
+.table-view-cell:last-child {
+ border-bottom: 0;
+}
+
+.table-view-cell > a:not(.btn) {
+ position: relative;
+ display: block;
+ padding: inherit;
+ margin: -11px -65px -11px -15px;
+ overflow: hidden;
+ color: inherit;
+}
+
+.table-view-cell > a:not(.btn):active {
+ background-color: #eee;
+}
+
+.table-view-cell p {
+ margin-bottom: 0;
+}
+
+.table-view-divider {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ padding-left: 15px;
+ margin-top: -1px;
+ margin-left: 0;
+ font-weight: 500;
+ color: #999;
+ background-color: #fafafa;
+ border-top: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+}
+
+.table-view .media,
+.table-view .media-body {
+ overflow: hidden;
+}
+
+.table-view .media-object.pull-left {
+ margin-right: 10px;
+}
+
+.table-view .media-object.pull-right {
+ margin-left: 10px;
+}
+
+.table-view-cell > .btn,
+.table-view-cell > .badge,
+.table-view-cell > .toggle,
+.table-view-cell > a > .btn,
+.table-view-cell > a > .badge,
+.table-view-cell > a > .toggle {
+ position: absolute;
+ top: 50%;
+ right: 15px;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ -o-transform: translateY(-50%);
+ transform: translateY(-50%);
+}
+
+.table-view-cell .navigate-left > .btn,
+.table-view-cell .navigate-left > .badge,
+.table-view-cell .navigate-left > .toggle,
+.table-view-cell .navigate-right > .btn,
+.table-view-cell .navigate-right > .badge,
+.table-view-cell .navigate-right > .toggle,
+.table-view-cell .push-left > .btn,
+.table-view-cell .push-left > .badge,
+.table-view-cell .push-left > .toggle,
+.table-view-cell .push-right > .btn,
+.table-view-cell .push-right > .badge,
+.table-view-cell .push-right > .toggle,
+.table-view-cell > a .navigate-left > .btn,
+.table-view-cell > a .navigate-left > .badge,
+.table-view-cell > a .navigate-left > .toggle,
+.table-view-cell > a .navigate-right > .btn,
+.table-view-cell > a .navigate-right > .badge,
+.table-view-cell > a .navigate-right > .toggle,
+.table-view-cell > a .push-left > .btn,
+.table-view-cell > a .push-left > .badge,
+.table-view-cell > a .push-left > .toggle,
+.table-view-cell > a .push-right > .btn,
+.table-view-cell > a .push-right > .badge,
+.table-view-cell > a .push-right > .toggle {
+ right: 35px;
+}
+
+.content > .table-view:first-child {
+ margin-top: 15px;
+}
+
+input,
+textarea,
+button,
+select {
+ font-family: "Helvetica Neue", Helvetica, sans-serif;
+ font-size: 17px;
+}
+
+select,
+textarea,
+input[type="text"],
+input[type="search"],
+input[type="password"],
+input[type="datetime"],
+input[type="datetime-local"],
+input[type="date"],
+input[type="month"],
+input[type="time"],
+input[type="week"],
+input[type="number"],
+input[type="email"],
+input[type="url"],
+input[type="tel"],
+input[type="color"] {
+ width: 100%;
+ height: 35px;
+ -webkit-appearance: none;
+ padding: 0 15px;
+ margin-bottom: 15px;
+ line-height: 21px;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 3px;
+ outline: none;
+}
+
+input[type="search"] {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0 10px;
+ font-size: 16px;
+ border-radius: 20px;
+}
+
+input[type="search"]:focus {
+ text-align: left;
+}
+
+textarea {
+ height: auto;
+}
+
+select {
+ height: auto;
+ font-size: 14px;
+ background-color: #f8f8f8;
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
+}
+
+.input-group {
+ background-color: #fff;
+}
+
+.input-group input,
+.input-group textarea {
+ margin-bottom: 0;
+ background-color: transparent;
+ border-top: 0;
+ border-right: 0;
+ border-left: 0;
+ border-radius: 0;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.input-row {
+ height: 35px;
+ overflow: hidden;
+ border-bottom: 1px solid #ddd;
+}
+
+.input-row label {
+ float: left;
+ width: 35%;
+ padding: 8px 15px;
+ font-family: "Helvetica Neue", Helvetica, sans-serif;
+ line-height: 1.1;
+}
+
+.input-row input {
+ float: right;
+ width: 65%;
+ padding-left: 0;
+ margin-bottom: 0;
+ border: 0;
+}
+
+.segmented-control {
+ position: relative;
+ display: table;
+ overflow: hidden;
+ font-size: 12px;
+ font-weight: 400;
+ background-color: #fff;
+ border: 1px solid #ccc;
+ border-radius: 3px;
+}
+
+.segmented-control .control-item {
+ display: table-cell;
+ width: 1%;
+ padding-top: 6px;
+ padding-bottom: 7px;
+ overflow: hidden;
+ line-height: 1;
+ color: #333;
+ text-align: center;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ border-left: 1px solid #ccc;
+}
+
+.segmented-control .control-item:first-child {
+ border-left-width: 0;
+}
+
+.segmented-control .control-item:active {
+ background-color: #eee;
+}
+
+.segmented-control .control-item.active {
+ background-color: #ccc;
+}
+
+.segmented-control-primary {
+ border-color: #428bca;
+}
+
+.segmented-control-primary .control-item {
+ color: #428bca;
+ border-color: inherit;
+}
+
+.segmented-control-primary .control-item:active {
+ background-color: #cde1f1;
+}
+
+.segmented-control-primary .control-item.active {
+ color: #fff;
+ background-color: #428bca;
+}
+
+.segmented-control-positive {
+ border-color: #5cb85c;
+}
+
+.segmented-control-positive .control-item {
+ color: #5cb85c;
+ border-color: inherit;
+}
+
+.segmented-control-positive .control-item:active {
+ background-color: #d8eed8;
+}
+
+.segmented-control-positive .control-item.active {
+ color: #fff;
+ background-color: #5cb85c;
+}
+
+.segmented-control-negative {
+ border-color: #d9534f;
+}
+
+.segmented-control-negative .control-item {
+ color: #d9534f;
+ border-color: inherit;
+}
+
+.segmented-control-negative .control-item:active {
+ background-color: #f9e2e2;
+}
+
+.segmented-control-negative .control-item.active {
+ color: #fff;
+ background-color: #d9534f;
+}
+
+.control-content {
+ display: none;
+}
+
+.control-content.active {
+ display: block;
+}
+
+.popover {
+ position: fixed;
+ top: 55px;
+ left: 50%;
+ z-index: 20;
+ display: none;
+ width: 280px;
+ margin-left: -140px;
+ background-color: #fff;
+ border-radius: 6px;
+ -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
+ box-shadow: 0 0 15px rgba(0, 0, 0, .1);
+ opacity: 0;
+ -webkit-transition: all .25s linear;
+ -o-transition: all .25s linear;
+ transition: all .25s linear;
+ -webkit-transform: translate3d(0, -15px, 0);
+ -ms-transform: translate3d(0, -15px, 0);
+ transform: translate3d(0, -15px, 0);
+}
+
+.popover:before {
+ position: absolute;
+ top: -15px;
+ left: 50%;
+ width: 0;
+ height: 0;
+ margin-left: -15px;
+ content: '';
+ border-right: 15px solid transparent;
+ border-bottom: 15px solid #fff;
+ border-left: 15px solid transparent;
+}
+
+.popover.visible {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ -ms-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+}
+
+.popover .bar ~ .table-view {
+ padding-top: 44px;
+}
+
+.backdrop {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 15;
+ background-color: rgba(0, 0, 0, .3);
+}
+
+.popover .btn-block {
+ margin-bottom: 5px;
+}
+
+.popover .btn-block:last-child {
+ margin-bottom: 0;
+}
+
+.popover .bar-nav {
+ border-bottom: 1px solid #ddd;
+ border-top-left-radius: 12px;
+ border-top-right-radius: 12px;
+ -webkit-box-shadow: none;
+ box-shadow: none;
+}
+
+.popover .table-view {
+ max-height: 300px;
+ margin-bottom: 0;
+ overflow: auto;
+ -webkit-overflow-scrolling: touch;
+ background-color: #fff;
+ border-top: 0;
+ border-bottom: 0;
+ border-radius: 6px;
+}
+
+.modal {
+ position: fixed;
+ top: 0;
+ z-index: 11;
+ width: 100%;
+ min-height: 100%;
+ overflow: hidden;
+ background-color: #fff;
+ opacity: 0;
+ -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;
+ -o-transition: -o-transform .25s, opacity 1ms .25s;
+ transition: transform .25s, opacity 1ms .25s;
+ -webkit-transform: translate3d(0, 100%, 0);
+ -ms-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+}
+
+.modal.active {
+ height: 100%;
+ opacity: 1;
+ -webkit-transition: -webkit-transform .25s;
+ -o-transition: -o-transform .25s;
+ transition: transform .25s;
+ -webkit-transform: translate3d(0, 0, 0);
+ -ms-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+}
+
+.slider {
+ width: 100%;
+}
+
+.slider {
+ overflow: hidden;
+ background-color: #000;
+}
+
+.slider .slide-group {
+ position: relative;
+ font-size: 0;
+ white-space: nowrap;
+ -webkit-transition: all 0s linear;
+ -o-transition: all 0s linear;
+ transition: all 0s linear;
+}
+
+.slider .slide-group .slide {
+ display: inline-block;
+ width: 100%;
+ height: 100%;
+ font-size: 14px;
+ vertical-align: top;
+}
+
+.toggle {
+ position: relative;
+ display: block;
+ width: 74px;
+ height: 30px;
+ background-color: #fff;
+ border: 2px solid #ddd;
+ border-radius: 20px;
+ -webkit-transition-duration: .2s;
+ -o-transition-duration: .2s;
+ transition-duration: .2s;
+ -webkit-transition-property: background-color, border;
+ -o-transition-property: background-color, border;
+ transition-property: background-color, border;
+}
+
+.toggle .toggle-handle {
+ position: absolute;
+ top: -1px;
+ left: -1px;
+ z-index: 2;
+ width: 28px;
+ height: 28px;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-radius: 100px;
+ -webkit-transition-duration: .2s;
+ -o-transition-duration: .2s;
+ transition-duration: .2s;
+ -webkit-transition-property: -webkit-transform, border, width;
+ -o-transition-property: -o-transform, border, width;
+ transition-property: transform, border, width;
+}
+
+.toggle:before {
+ position: absolute;
+ top: 3px;
+ right: 11px;
+ font-size: 13px;
+ color: #999;
+ text-transform: uppercase;
+ content: "Off";
+}
+
+.toggle.active {
+ background-color: #5cb85c;
+ border: 2px solid #5cb85c;
+}
+
+.toggle.active .toggle-handle {
+ border-color: #5cb85c;
+ -webkit-transform: translate3d(44px, 0, 0);
+ -ms-transform: translate3d(44px, 0, 0);
+ transform: translate3d(44px, 0, 0);
+}
+
+.toggle.active:before {
+ right: auto;
+ left: 15px;
+ color: #fff;
+ content: "On";
+}
+
+.toggle input[type="checkbox"] {
+ display: none;
+}
+
+.content.fade {
+ left: 0;
+ opacity: 0;
+ -webkit-transition: opacity .4s;
+ -o-transition: opacity .4s;
+ transition: opacity .4s;
+}
+
+.content.fade.in {
+ opacity: 1;
+}
+
+.content.sliding {
+ z-index: 2;
+ -webkit-transition: -webkit-transform .4s;
+ -o-transition: -o-transform .4s;
+ transition: transform .4s;
+ -webkit-transform: translate3d(0, 0, 0);
+ -ms-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+}
+
+.content.sliding.left {
+ z-index: 1;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ -ms-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+}
+
+.content.sliding.right {
+ z-index: 3;
+ -webkit-transform: translate3d(100%, 0, 0);
+ -ms-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+}
+
+.navigate-left:after,
+.navigate-right:after,
+.push-left:after,
+.push-right:after {
+ position: absolute;
+ top: 50%;
+ display: inline-block;
+ font-family: Ratchicons;
+ font-size: inherit;
+ line-height: 1;
+ color: #bbb;
+ text-decoration: none;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ -o-transform: translateY(-50%);
+ transform: translateY(-50%);
+
+ -webkit-font-smoothing: antialiased;
+}
+
+.navigate-left:after,
+.push-left:after {
+ left: 15px;
+ content: '\e822';
+}
+
+.navigate-right:after,
+.push-right:after {
+ right: 15px;
+ content: '\e826';
+}
+
+@font-face {
+ font-family: Ratchicons;
+ font-style: normal;
+ font-weight: normal;
+
+ src: url("../fonts/ratchicons.eot");
+ src: url("../fonts/ratchicons.eot?#iefix") format("embedded-opentype"), url("../fonts/ratchicons.woff") format("woff"), url("../fonts/ratchicons.ttf") format("truetype"), url("../fonts/ratchicons.svg#svgFontName") format("svg");
+}
+
+.icon {
+ display: inline-block;
+ font-family: Ratchicons;
+ font-size: 24px;
+ line-height: 1;
+ text-decoration: none;
+
+ -webkit-font-smoothing: antialiased;
+}
+
+.icon-back:before {
+ content: '\e80a';
+}
+
+.icon-bars:before {
+ content: '\e80e';
+}
+
+.icon-caret:before {
+ content: '\e80f';
+}
+
+.icon-check:before {
+ content: '\e810';
+}
+
+.icon-close:before {
+ content: '\e811';
+}
+
+.icon-code:before {
+ content: '\e812';
+}
+
+.icon-compose:before {
+ content: '\e813';
+}
+
+.icon-download:before {
+ content: '\e815';
+}
+
+.icon-edit:before {
+ content: '\e829';
+}
+
+.icon-forward:before {
+ content: '\e82a';
+}
+
+.icon-gear:before {
+ content: '\e821';
+}
+
+.icon-home:before {
+ content: '\e82b';
+}
+
+.icon-info:before {
+ content: '\e82c';
+}
+
+.icon-list:before {
+ content: '\e823';
+}
+
+.icon-more-vertical:before {
+ content: '\e82e';
+}
+
+.icon-more:before {
+ content: '\e82f';
+}
+
+.icon-pages:before {
+ content: '\e824';
+}
+
+.icon-pause:before {
+ content: '\e830';
+}
+
+.icon-person:before {
+ content: '\e832';
+}
+
+.icon-play:before {
+ content: '\e816';
+}
+
+.icon-plus:before {
+ content: '\e817';
+}
+
+.icon-refresh:before {
+ content: '\e825';
+}
+
+.icon-search:before {
+ content: '\e819';
+}
+
+.icon-share:before {
+ content: '\e81a';
+}
+
+.icon-sound:before {
+ content: '\e827';
+}
+
+.icon-sound2:before {
+ content: '\e828';
+}
+
+.icon-sound3:before {
+ content: '\e80b';
+}
+
+.icon-sound4:before {
+ content: '\e80c';
+}
+
+.icon-star-filled:before {
+ content: '\e81b';
+}
+
+.icon-star:before {
+ content: '\e81c';
+}
+
+.icon-stop:before {
+ content: '\e81d';
+}
+
+.icon-trash:before {
+ content: '\e81e';
+}
+
+.icon-up-nav:before {
+ content: '\e81f';
+}
+
+.icon-up:before {
+ content: '\e80d';
+}
+
+.icon-right-nav:before {
+ content: '\e818';
+}
+
+.icon-right:before {
+ content: '\e826';
+}
+
+.icon-down-nav:before {
+ content: '\e814';
+}
+
+.icon-down:before {
+ content: '\e820';
+}
+
+.icon-left-nav:before {
+ content: '\e82d';
+}
+
+.icon-left:before {
+ content: '\e822';
+}
diff --git a/dist/css/ratchet.min.css b/dist/css/ratchet.min.css
new file mode 100644
index 000000000..6178e77f0
--- /dev/null
+++ b/dist/css/ratchet.min.css
@@ -0,0 +1,10 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */img,legend{border:0}legend,td,th{padding:0}body,mark{color:#000}.btn-block,input[type=button],input[type=reset],input[type=submit]{width:100%}.btn,.text-center,.title{text-align:center}.btn,.slider .slide-group,.title{white-space:nowrap}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;color:#428bca;text-decoration:none;-webkit-tap-highlight-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}.content,body{top:0;background-color:#fff;right:0;left:0}sub{bottom:-.25em}.bar-footer,.content,body{bottom:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}.input-row label,body,button,input,select,textarea{font-family:"Helvetica Neue",Helvetica,sans-serif}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}table{border-spacing:0;border-collapse:collapse}.bar-nav~.content,.popover .bar~.table-view{padding-top:44px}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body{margin:0;position:fixed;font-size:17px;line-height:21px}a:active{color:#3071a9}.content{position:absolute;overflow:auto;-webkit-overflow-scrolling:touch}.content>*{-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0)}.bar-header-secondary~.content{padding-top:88px}.bar-footer~.content{padding-bottom:44px}.bar-footer-secondary~.content{padding-bottom:88px}.bar-tab~.content{padding-bottom:50px}.bar-footer-secondary-tab~.content{padding-bottom:94px}.content-padded{margin:10px}.pull-left{float:left}.pull-right{float:right}.clearfix:after,.clearfix:before{display:table;content:" "}.clearfix:after{clear:both}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:10px;line-height:1}.h5,.h6,h5,h6{margin-top:20px}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin-top:0;margin-bottom:10px;font-size:14px;color:#777}.btn{position:relative;display:inline-block;padding:6px 8px 7px;margin-bottom:0;font-size:12px;font-weight:400;line-height:1;color:#333;vertical-align:top;cursor:pointer;background-color:#fff;border:1px solid #ccc;border-radius:3px}.btn.active,.btn:active{color:inherit;background-color:#ccc}.btn.disabled,.btn:disabled{opacity:.6}.btn-primary{color:#fff;background-color:#428bca;border:1px solid #428bca}.btn-primary.active,.btn-primary:active{color:#fff;background-color:#3071a9;border:1px solid #3071a9}.btn-positive{color:#fff;background-color:#5cb85c;border:1px solid #5cb85c}.btn-positive.active,.btn-positive:active{color:#fff;background-color:#449d44;border:1px solid #449d44}.btn-negative{color:#fff;background-color:#d9534f;border:1px solid #d9534f}.btn-negative.active,.btn-negative:active{color:#fff;background-color:#c9302c;border:1px solid #c9302c}.btn-link,.btn-outlined{background-color:transparent}.btn-outlined.btn-primary{color:#428bca}.btn-outlined.btn-positive{color:#5cb85c}.btn-outlined.btn-negative{color:#d9534f}.btn-outlined.btn-negative:active,.btn-outlined.btn-positive:active,.btn-outlined.btn-primary:active{color:#fff}.btn-link{padding-top:6px;padding-bottom:6px;color:#428bca;border:0}.btn-link.active,.btn-link:active{color:#3071a9;background-color:transparent}.btn-block{display:block;padding:15px 0;margin-bottom:10px;font-size:18px}.btn .badge{margin:-2px -4px -2px 4px;font-size:12px;background-color:rgba(0,0,0,.15)}.btn .badge-inverted,.btn:active .badge-inverted{background-color:transparent}.btn-negative:active .badge-inverted,.btn-positive:active .badge-inverted,.btn-primary:active .badge-inverted{color:#fff}.btn-block .badge{position:absolute;right:0;margin-right:10px}.btn .icon{font-size:inherit}.bar{position:fixed;right:0;left:0;z-index:10;height:44px;padding-right:10px;padding-left:10px;background-color:#fff;border-bottom:1px solid #ddd;-webkit-backface-visibility:hidden;backface-visibility:hidden}.bar-tab,.title{width:100%;padding:0}.bar-footer,.bar-footer-secondary,.bar-footer-secondary-tab,.bar-tab{border-top:1px solid #ddd;border-bottom:0}.bar-header-secondary{top:44px}.bar-footer-secondary{bottom:44px}.bar-footer-secondary-tab{bottom:50px}.bar-nav{top:0}.title{position:absolute;display:block;margin:0 -10px;font-size:17px;font-weight:500;line-height:44px;color:#000}.title a{color:inherit}.bar-tab{bottom:0;display:table;height:50px;table-layout:fixed}.bar-tab .tab-item{position:relative;display:table-cell;width:1%;height:50px;color:#929292;text-align:center;vertical-align:middle}.bar-tab .tab-item.active,.bar-tab .tab-item:active{color:#428bca}.bar-tab .tab-item .badge{position:absolute;top:3px;left:50%;vertical-align:top}.bar-tab .tab-item .icon{top:3px;width:24px;height:24px;padding-top:0;padding-bottom:0}.bar-tab .tab-item .icon~.tab-label{display:block;font-size:11px}.bar .btn{position:relative;top:7px;z-index:20;padding:6px 12px 7px;margin-top:0;font-weight:400}.bar .btn.pull-right{margin-left:10px}.bar .btn.pull-left{margin-right:10px}.bar .btn-link{top:0;padding:0;font-size:16px;line-height:44px;color:#428bca;border:0}.bar .btn-link.active,.bar .btn-link:active{color:#3071a9}.bar .btn-block{top:6px;padding:7px 0;margin-bottom:0;font-size:16px}.bar .btn-nav.pull-left{margin-left:-5px}.bar .btn-nav.pull-left .icon-left-nav{margin-right:-3px}.bar .btn-nav.pull-right{margin-right:-5px}.bar .btn-nav.pull-right .icon-right-nav{margin-left:-3px}.bar .icon{position:relative;z-index:20;padding-top:10px;padding-bottom:10px;font-size:24px}.bar .btn .icon{top:3px;padding:0}.bar .title .icon{padding:0}.bar .title .icon.icon-caret{top:4px;margin-left:-5px}.bar input[type=search]{height:29px;margin:6px 0}.bar .segmented-control{top:7px;margin:0 auto}.badge{display:inline-block;padding:2px 9px 3px;font-size:12px;line-height:1;color:#333;background-color:rgba(0,0,0,.15);border-radius:100px}.badge.badge-inverted{padding:0 5px 0 0;background-color:transparent}.badge-primary{color:#fff;background-color:#428bca}.badge-primary.badge-inverted{color:#428bca}.badge-positive{color:#fff;background-color:#5cb85c}.badge-positive.badge-inverted{color:#5cb85c}.badge-negative{color:#fff;background-color:#d9534f}.card,.table-view{background-color:#fff}.badge-negative.badge-inverted{color:#d9534f}.card{margin:10px;overflow:hidden;border:1px solid #ddd;border-radius:6px}.card .table-view{margin-bottom:0;border-top:0;border-bottom:0}.card .table-view .table-view-divider:first-child{top:0;border-top-left-radius:6px;border-top-right-radius:6px}.card .table-view .table-view-divider:last-child{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.card .table-view-cell:last-child{border-bottom:0}.table-view,.table-view-cell{border-bottom:1px solid #ddd}.table-view{padding-left:0;margin-top:0;margin-bottom:15px;list-style:none;border-top:1px solid #ddd}.table-view-cell{position:relative;padding:11px 65px 11px 15px;overflow:hidden}.table-view-cell:last-child{border-bottom:0}.table-view-cell>a:not(.btn){position:relative;display:block;padding:inherit;margin:-11px -65px -11px -15px;overflow:hidden;color:inherit}.table-view-cell>a:not(.btn):active{background-color:#eee}.table-view-cell p{margin-bottom:0}.table-view-divider{padding-top:6px;padding-bottom:6px;padding-left:15px;margin-top:-1px;margin-left:0;font-weight:500;color:#999;background-color:#fafafa;border-top:1px solid #ddd;border-bottom:1px solid #ddd}.table-view .media,.table-view .media-body{overflow:hidden}.table-view .media-object.pull-left{margin-right:10px}.table-view .media-object.pull-right{margin-left:10px}.table-view-cell>.badge,.table-view-cell>.btn,.table-view-cell>.toggle,.table-view-cell>a>.badge,.table-view-cell>a>.btn,.table-view-cell>a>.toggle{position:absolute;top:50%;right:15px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.table-view-cell .navigate-left>.badge,.table-view-cell .navigate-left>.btn,.table-view-cell .navigate-left>.toggle,.table-view-cell .navigate-right>.badge,.table-view-cell .navigate-right>.btn,.table-view-cell .navigate-right>.toggle,.table-view-cell .push-left>.badge,.table-view-cell .push-left>.btn,.table-view-cell .push-left>.toggle,.table-view-cell .push-right>.badge,.table-view-cell .push-right>.btn,.table-view-cell .push-right>.toggle,.table-view-cell>a .navigate-left>.badge,.table-view-cell>a .navigate-left>.btn,.table-view-cell>a .navigate-left>.toggle,.table-view-cell>a .navigate-right>.badge,.table-view-cell>a .navigate-right>.btn,.table-view-cell>a .navigate-right>.toggle,.table-view-cell>a .push-left>.badge,.table-view-cell>a .push-left>.btn,.table-view-cell>a .push-left>.toggle,.table-view-cell>a .push-right>.badge,.table-view-cell>a .push-right>.btn,.table-view-cell>a .push-right>.toggle{right:35px}.content>.table-view:first-child{margin-top:15px}button,input,select,textarea{font-size:17px}input[type=password],input[type=datetime],input[type=datetime-local],input[type=date],input[type=month],input[type=time],input[type=week],input[type=email],input[type=url],input[type=tel],input[type=color],input[type=number],input[type=search],input[type=text],select,textarea{width:100%;height:35px;-webkit-appearance:none;padding:0 15px;margin-bottom:15px;line-height:21px;background-color:#fff;border:1px solid #ddd;border-radius:3px;outline:0}select,textarea{height:auto}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 10px;font-size:16px;border-radius:20px}input[type=search]:focus{text-align:left}select{font-size:14px;background-color:#f8f8f8;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.1);box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}.input-group{background-color:#fff}.input-group input,.input-group textarea{margin-bottom:0;background-color:transparent;border-top:0;border-right:0;border-left:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.input-row{height:35px;overflow:hidden;border-bottom:1px solid #ddd}.input-row label{float:left;width:35%;padding:8px 15px;line-height:1.1}.input-row input{float:right;width:65%;padding-left:0;margin-bottom:0;border:0}.segmented-control{position:relative;display:table;overflow:hidden;font-size:12px;font-weight:400;background-color:#fff;border:1px solid #ccc;border-radius:3px}.segmented-control .control-item{display:table-cell;width:1%;padding-top:6px;padding-bottom:7px;overflow:hidden;line-height:1;color:#333;text-align:center;text-overflow:ellipsis;white-space:nowrap;border-left:1px solid #ccc}.control-content,.popover{display:none}.segmented-control .control-item:first-child{border-left-width:0}.segmented-control .control-item:active{background-color:#eee}.segmented-control .control-item.active{background-color:#ccc}.segmented-control-primary{border-color:#428bca}.segmented-control-primary .control-item{color:#428bca;border-color:inherit}.segmented-control-primary .control-item:active{background-color:#cde1f1}.segmented-control-primary .control-item.active{color:#fff;background-color:#428bca}.segmented-control-positive{border-color:#5cb85c}.segmented-control-positive .control-item{color:#5cb85c;border-color:inherit}.segmented-control-positive .control-item:active{background-color:#d8eed8}.segmented-control-positive .control-item.active{color:#fff;background-color:#5cb85c}.segmented-control-negative{border-color:#d9534f}.segmented-control-negative .control-item{color:#d9534f;border-color:inherit}.segmented-control-negative .control-item:active{background-color:#f9e2e2}.segmented-control-negative .control-item.active{color:#fff;background-color:#d9534f}.control-content.active{display:block}.popover{position:fixed;top:55px;left:50%;z-index:20;width:280px;margin-left:-140px;background-color:#fff;border-radius:6px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.1);box-shadow:0 0 15px rgba(0,0,0,.1);opacity:0;-webkit-transition:all .25s linear;-o-transition:all .25s linear;transition:all .25s linear;-webkit-transform:translate3d(0,-15px,0);-ms-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}.popover:before{position:absolute;top:-15px;left:50%;width:0;height:0;margin-left:-15px;content:'';border-right:15px solid transparent;border-bottom:15px solid #fff;border-left:15px solid transparent}.backdrop,.modal{position:fixed;top:0}.popover.visible{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.backdrop{right:0;bottom:0;left:0;z-index:15;background-color:rgba(0,0,0,.3)}.popover .btn-block{margin-bottom:5px}.popover .btn-block:last-child{margin-bottom:0}.popover .bar-nav{border-bottom:1px solid #ddd;border-top-left-radius:12px;border-top-right-radius:12px;-webkit-box-shadow:none;box-shadow:none}.popover .table-view{max-height:300px;margin-bottom:0;overflow:auto;-webkit-overflow-scrolling:touch;background-color:#fff;border-top:0;border-bottom:0;border-radius:6px}.modal,.slider{overflow:hidden;width:100%}.modal{z-index:11;min-height:100%;background-color:#fff;opacity:0;-webkit-transition:-webkit-transform .25s,opacity 1ms .25s;-o-transition:-o-transform .25s,opacity 1ms .25s;transition:transform .25s,opacity 1ms .25s;-webkit-transform:translate3d(0,100%,0);-ms-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.modal.active{height:100%;opacity:1;-webkit-transition:-webkit-transform .25s;-o-transition:-o-transform .25s;transition:transform .25s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slider{background-color:#000}.slider .slide-group{position:relative;font-size:0;-webkit-transition:all 0s linear;-o-transition:all 0s linear;transition:all 0s linear}.slider .slide-group .slide{display:inline-block;width:100%;height:100%;font-size:14px;vertical-align:top}.toggle{position:relative;display:block;width:74px;height:30px;background-color:#fff;border:2px solid #ddd;border-radius:20px;-webkit-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:background-color,border;-o-transition-property:background-color,border;transition-property:background-color,border}.toggle .toggle-handle{position:absolute;top:-1px;left:-1px;z-index:2;width:28px;height:28px;background-color:#fff;border:1px solid #ddd;border-radius:100px;-webkit-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:-webkit-transform,border,width;-o-transition-property:-o-transform,border,width;transition-property:transform,border,width}.toggle:before{position:absolute;top:3px;right:11px;font-size:13px;color:#999;text-transform:uppercase;content:"Off"}.toggle.active{background-color:#5cb85c;border:2px solid #5cb85c}.toggle.active .toggle-handle{border-color:#5cb85c;-webkit-transform:translate3d(44px,0,0);-ms-transform:translate3d(44px,0,0);transform:translate3d(44px,0,0)}.toggle.active:before{right:auto;left:15px;color:#fff;content:"On"}.toggle input[type=checkbox]{display:none}.icon,.navigate-left:after,.navigate-right:after,.push-left:after,.push-right:after{display:inline-block;font-family:Ratchicons;line-height:1;text-decoration:none;-webkit-font-smoothing:antialiased}.content.fade{left:0;opacity:0;-webkit-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s}.content.fade.in{opacity:1}.content.sliding{z-index:2;-webkit-transition:-webkit-transform .4s;-o-transition:-o-transform .4s;transition:transform .4s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.content.sliding.left{z-index:1;-webkit-transform:translate3d(-100%,0,0);-ms-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.content.sliding.right{z-index:3;-webkit-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.navigate-left:after,.navigate-right:after,.push-left:after,.push-right:after{position:absolute;top:50%;font-size:inherit;color:#bbb;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.navigate-left:after,.push-left:after{left:15px;content:'\e822'}.navigate-right:after,.push-right:after{right:15px;content:'\e826'}@font-face{font-family:Ratchicons;font-style:normal;font-weight:400;src:url(../fonts/ratchicons.eot);src:url(../fonts/ratchicons.eot?#iefix) format("embedded-opentype"),url(../fonts/ratchicons.woff) format("woff"),url(../fonts/ratchicons.ttf) format("truetype"),url(../fonts/ratchicons.svg#svgFontName) format("svg")}.icon{font-size:24px}.icon-back:before{content:'\e80a'}.icon-bars:before{content:'\e80e'}.icon-caret:before{content:'\e80f'}.icon-check:before{content:'\e810'}.icon-close:before{content:'\e811'}.icon-code:before{content:'\e812'}.icon-compose:before{content:'\e813'}.icon-download:before{content:'\e815'}.icon-edit:before{content:'\e829'}.icon-forward:before{content:'\e82a'}.icon-gear:before{content:'\e821'}.icon-home:before{content:'\e82b'}.icon-info:before{content:'\e82c'}.icon-list:before{content:'\e823'}.icon-more-vertical:before{content:'\e82e'}.icon-more:before{content:'\e82f'}.icon-pages:before{content:'\e824'}.icon-pause:before{content:'\e830'}.icon-person:before{content:'\e832'}.icon-play:before{content:'\e816'}.icon-plus:before{content:'\e817'}.icon-refresh:before{content:'\e825'}.icon-search:before{content:'\e819'}.icon-share:before{content:'\e81a'}.icon-sound:before{content:'\e827'}.icon-sound2:before{content:'\e828'}.icon-sound3:before{content:'\e80b'}.icon-sound4:before{content:'\e80c'}.icon-star-filled:before{content:'\e81b'}.icon-star:before{content:'\e81c'}.icon-stop:before{content:'\e81d'}.icon-trash:before{content:'\e81e'}.icon-up-nav:before{content:'\e81f'}.icon-up:before{content:'\e80d'}.icon-right-nav:before{content:'\e818'}.icon-right:before{content:'\e826'}.icon-down-nav:before{content:'\e814'}.icon-down:before{content:'\e820'}.icon-left-nav:before{content:'\e82d'}.icon-left:before{content:'\e822'}
+/*# sourceMappingURL=ratchet.min.css.map */
\ No newline at end of file
diff --git a/dist/css/ratchet.min.css.map b/dist/css/ratchet.min.css.map
new file mode 100644
index 000000000..36fd05e67
--- /dev/null
+++ b/dist/css/ratchet.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["dist/css/ratchet.css"],"names":[],"mappings":";;;;;;;;4EAmGA,IAwGA,OAEE,OAAQ,EAFV,OAkBA,GACA,GACE,QAAS,EASX,KA9JA,KAuKE,MAAO,KAwNT,WAUA,mBADA,kBADA,mBAGE,MAAO,KA3GT,KA5DA,aA+OA,OAmCE,WAAY,OAtNd,KAyzBA,qBAtoBA,OAicE,YAAa,OA19Bf,KACE,YAAa,WACb,yBAA0B,KACtB,qBAAsB,KAO5B,QACA,MACA,QACA,WACA,OACA,OACA,OACA,OACA,KACA,KACA,IACA,QACA,QACE,QAAS,MAGX,MACA,OACA,SACA,MACE,QAAS,aACT,eAAgB,SAGlB,sBACE,QAAS,KACT,OAAQ,EAGV,SACA,SACE,QAAS,KAGX,EACE,iBAAkB,YAsMlB,MAAO,QACP,gBAAiB,KAEjB,4BAA6B,YAtM/B,SACA,QACE,QAAS,EAGX,YACE,cAAe,IAAI,OAGrB,EAwJA,SAvJA,OACE,YAAa,IAGf,IACE,WAAY,OAGd,GACE,OAAQ,MAAM,EAIhB,KAEE,WAAY,KAGd,MACE,UAAW,IAGb,IACA,IACE,SAAU,SACV,UAAW,IACX,YAAa,EACb,eAAgB,SAGlB,IACE,IAAK,MAoKP,SAxBA,KA0BE,IAAK,EAoHL,iBAAkB,KAnHlB,MAAO,EAkPP,KAAM,EAtZR,IACE,OAAQ,OAqaV,YArQA,SAxBA,KA8RE,OAAQ,EA/ZV,eACE,SAAU,OAGZ,OACE,OAAQ,IAAI,KAGd,GACE,OAAQ,EACR,mBAAoB,YACjB,gBAAiB,YACZ,WAAY,YAGtB,IA0FA,SAzFE,SAAU,KAGZ,KACA,IACA,IACA,KACE,YAAa,UAAW,UACxB,UAAW,IAGb,OACA,MACA,SACA,OACA,SACE,OAAQ,EACR,KAAM,QACN,MAAO,QA+yBT,iBAhtBA,KA+nBA,OAFA,MAGA,OAFA,SAsFE,YAAa,iBAAkB,UAAW,WAhzB5C,OACE,SAAU,QAGZ,OACA,OACE,eAAgB,KAGlB,OACA,wBACA,kBACA,mBACE,mBAAoB,OACpB,OAAQ,QAGV,iBACA,qBACE,OAAQ,QAGV,yBACA,wBACE,QAAS,EACT,OAAQ,EAGV,MACE,YAAa,OAGf,qBACA,kBACE,mBAAoB,WACjB,gBAAiB,WACZ,WAAY,WACpB,QAAS,EAGX,8CACA,8CACE,OAAQ,KAUV,iDACA,8CACE,mBAAoB,KAGtB,SACE,QAAS,MAAM,OAAO,MACtB,OAAQ,EAAE,IACV,OAAQ,IAAI,MAAM,OAgBpB,MACE,eAAgB,EAChB,gBAAiB,SAuDnB,kBAm0BA,0BAl0BE,YAAa,KAhDf,EACE,mBAAoB,WACjB,gBAAiB,WACZ,WAAY,WAGtB,KA9NE,OAAQ,EA+NR,SAAU,MAMV,UAAW,KACX,YAAa,KAYf,SACE,MAAO,QAGT,SACE,SAAU,SAKV,SAAU,KACV,2BAA4B,MAI9B,WACE,kBAAmB,cACf,cAAe,cACX,UAAW,cAOrB,+BACE,YAAa,KAGf,qBACE,eAAgB,KAGlB,+BACE,eAAgB,KAGlB,kBACE,eAAgB,KAGlB,mCACE,eAAgB,KAGlB,gBACE,OAAQ,KAOV,WACE,MAAO,KAGT,YACE,MAAO,MAGS,gBAAlB,iBACE,QAAS,MACT,QAAS,IAGX,gBACE,MAAO,KAGT,GAAI,GAAI,GAAI,GAAI,GAAI,GAClB,WAAY,EACZ,cAAe,KACf,YAAa,EAmBX,IAKA,IALJ,GAKA,GACE,WAAY,KAtBV,IAAJ,GACE,UAAW,KAGT,IAAJ,GACE,UAAW,KAGT,IAAJ,GACE,UAAW,KAGT,IAAJ,GACE,UAAW,KAGT,IAAJ,GAEE,UAAW,KAGT,IAAJ,GAEE,UAAW,KAGb,EACE,WAAY,EACZ,cAAe,KACf,UAAW,KACX,MAAO,KAGT,KACE,SAAU,SACV,QAAS,aACT,QAAS,IAAI,IAAI,IACjB,cAAe,EACf,UAAW,KACX,YAAa,IACb,YAAa,EACb,MAAO,KAGP,eAAgB,IAChB,OAAQ,QACR,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IAGJ,YAAb,YACE,MAAO,QACP,iBAAkB,KAGL,cAAf,cACE,QAAS,GAGX,aACE,MAAO,KACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAGC,oBAArB,oBACE,MAAO,KACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAGpB,cACE,MAAO,KACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAGE,qBAAtB,qBACE,MAAO,KACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAGpB,cACE,MAAO,KACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAGE,qBAAtB,qBACE,MAAO,KACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAuBpB,UApBA,cA8BE,iBAAkB,YA1BpB,0BACE,MAAO,QAGT,2BACE,MAAO,QAGT,2BACE,MAAO,QAG4D,kCAAnC,kCAAlC,iCACE,MAAO,KAGT,UACE,YAAa,IACb,eAAgB,IAChB,MAAO,QAEP,OAAQ,EAGQ,iBAAlB,iBACE,MAAO,QACP,iBAAkB,YAGpB,WACE,QAAS,MAET,QAAS,KAAK,EACd,cAAe,KACf,UAAW,KASb,YACE,OAAQ,KAAK,KAAK,KAAK,IACvB,UAAW,KACX,iBAAkB,gBAGpB,qBACA,4BACE,iBAAkB,YAKpB,qCADA,qCADA,oCAGE,MAAO,KAGT,kBACE,SAAU,SACV,MAAO,EACP,aAAc,KAGhB,WACE,UAAW,QAGb,KACE,SAAU,MACV,MAAO,EACP,KAAM,EACN,QAAS,GACT,OAAQ,KACR,cAAe,KACf,aAAc,KACd,iBAAkB,KAClB,cAAe,IAAI,MAAM,KAEzB,4BAA6B,OACrB,oBAAqB,OAgD/B,SAlBA,OAqBE,MAAO,KAEP,QAAS,EAlCX,YACA,sBACA,0BA2BA,SAOE,WAAY,IAAI,MAAM,KACtB,cAAe,EArDjB,sBACE,IAAK,KAOP,sBACE,OAAQ,KAGV,0BACE,OAAQ,KAUV,SACE,IAAK,EAGP,OACE,SAAU,SACV,QAAS,MAGT,OAAQ,EAAE,MACV,UAAW,KACX,YAAa,IACb,YAAa,KACb,MAAO,KAKT,SACE,MAAO,QAGT,SACE,OAAQ,EACR,QAAS,MAET,OAAQ,KAER,aAAc,MAKhB,mBACE,SAAU,SACV,QAAS,WACT,MAAO,GACP,OAAQ,KACR,MAAO,QACP,WAAY,OACZ,eAAgB,OAGlB,0BAA2B,0BACzB,MAAO,QAGT,0BACE,SAAU,SACV,IAAK,IACL,KAAM,IACN,eAAgB,IAGlB,yBACE,IAAK,IACL,MAAO,KACP,OAAQ,KACR,YAAa,EACb,eAAgB,EAGlB,oCACE,QAAS,MACT,UAAW,KAGb,UACE,SAAU,SACV,IAAK,IACL,QAAS,GACT,QAAS,IAAI,KAAK,IAClB,WAAY,EACZ,YAAa,IAGf,qBACE,YAAa,KAGf,oBACE,aAAc,KAGhB,eACE,IAAK,EACL,QAAS,EACT,UAAW,KACX,YAAa,KACb,MAAO,QACP,OAAQ,EAGa,sBAAvB,sBACE,MAAO,QAGT,gBACE,IAAK,IACL,QAAS,IAAI,EACb,cAAe,EACf,UAAW,KAGb,wBACE,YAAa,KAGf,uCACE,aAAc,KAGhB,yBACE,aAAc,KAGhB,yCACE,YAAa,KAGf,WACE,SAAU,SACV,QAAS,GACT,YAAa,KACb,eAAgB,KAChB,UAAW,KAGb,gBACE,IAAK,IACL,QAAS,EAGX,kBACE,QAAS,EAGX,6BACE,IAAK,IACL,YAAa,KAGf,wBACE,OAAQ,KACR,OAAQ,IAAI,EAGd,wBACE,IAAK,IACL,OAAQ,EAAE,KAGZ,OACE,QAAS,aACT,QAAS,IAAI,IAAI,IACjB,UAAW,KACX,YAAa,EACb,MAAO,KACP,iBAAkB,gBAClB,cAAe,MAGjB,sBACE,QAAS,EAAE,IAAI,EAAE,EACjB,iBAAkB,YAGpB,eACE,MAAO,KACP,iBAAkB,QAGpB,8BACE,MAAO,QAGT,gBACE,MAAO,KACP,iBAAkB,QAGpB,+BACE,MAAO,QAGT,gBACE,MAAO,KACP,iBAAkB,QAOpB,MA6BA,YAKE,iBAAkB,KAtCpB,+BACE,MAAO,QAGT,MACE,OAAQ,KACR,SAAU,OAEV,OAAQ,IAAI,MAAM,KAClB,cAAe,IAGjB,kBACE,cAAe,EACf,WAAY,EACZ,cAAe,EAGjB,kDACE,IAAK,EACL,uBAAwB,IACxB,wBAAyB,IAG3B,iDACE,2BAA4B,IAC5B,0BAA2B,IAG7B,kCACE,cAAe,EAGjB,YAUA,iBAIE,cAAe,IAAI,MAAM,KAd3B,YACE,aAAc,EACd,WAAY,EACZ,cAAe,KACf,WAAY,KAEZ,WAAY,IAAI,MAAM,KAIxB,iBACE,SAAU,SACV,QAAS,KAAK,KAAK,KAAK,KACxB,SAAU,OAIZ,4BACE,cAAe,EAGjB,6BACE,SAAU,SACV,QAAS,MACT,QAAS,QACT,OAAQ,MAAM,MAAM,MAAM,MAC1B,SAAU,OACV,MAAO,QAGT,oCACE,iBAAkB,KAGpB,mBACE,cAAe,EAGjB,oBACE,YAAa,IACb,eAAgB,IAChB,aAAc,KACd,WAAY,KACZ,YAAa,EACb,YAAa,IACb,MAAO,KACP,iBAAkB,QAClB,WAAY,IAAI,MAAM,KACtB,cAAe,IAAI,MAAM,KAG3B,mBACA,wBACE,SAAU,OAGZ,oCACE,aAAc,KAGhB,qCACE,YAAa,KAIf,wBADA,sBAEA,yBAEA,0BADA,wBAEA,2BACE,SAAU,SACV,IAAK,IACL,MAAO,KACP,kBAAmB,iBACf,cAAe,iBACd,aAAc,iBACX,UAAW,iBAIrB,uCADA,qCAEA,wCAEA,wCADA,sCAEA,yCAEA,mCADA,iCAEA,oCAEA,oCADA,kCAEA,qCAEA,yCADA,uCAEA,0CAEA,0CADA,wCAEA,2CAEA,qCADA,mCAEA,sCAEA,sCADA,oCAEA,uCACE,MAAO,KAGT,iCACE,WAAY,KAKd,OAFA,MAGA,OAFA,SAIE,UAAW,KAOb,qBACA,qBACA,2BACA,iBACA,kBACA,iBACA,iBAEA,kBACA,gBACA,gBACA,kBAJA,mBARA,mBADA,iBAFA,OACA,SAeE,MAAO,KACP,OAAQ,KACR,mBAAoB,KACpB,QAAS,EAAE,KACX,cAAe,KACf,YAAa,KACb,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,QAAS,EAoBX,OAJA,SAKE,OAAQ,KAlBV,mBACE,mBAAoB,WACjB,gBAAiB,WACZ,WAAY,WACpB,QAAS,EAAE,KACX,UAAW,KACX,cAAe,KAGjB,yBACE,WAAY,KAOd,OAEE,UAAW,KACX,iBAAkB,QAClB,mBAAoB,MAAM,EAAE,IAAI,IAAI,eAC5B,WAAY,MAAM,EAAE,IAAI,IAAI,eAGtC,aACE,iBAAkB,KAGpB,mBACA,sBACE,cAAe,EACf,iBAAkB,YAClB,WAAY,EACZ,aAAc,EACd,YAAa,EACb,cAAe,EACf,mBAAoB,KACZ,WAAY,KAGtB,WACE,OAAQ,KACR,SAAU,OACV,cAAe,IAAI,MAAM,KAG3B,iBACE,MAAO,KACP,MAAO,IACP,QAAS,IAAI,KAEb,YAAa,IAGf,iBACE,MAAO,MACP,MAAO,IACP,aAAc,EACd,cAAe,EACf,OAAQ,EAGV,mBACE,SAAU,SACV,QAAS,MACT,SAAU,OACV,UAAW,KACX,YAAa,IACb,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IAGjB,iCACE,QAAS,WACT,MAAO,GACP,YAAa,IACb,eAAgB,IAChB,SAAU,OACV,YAAa,EACb,MAAO,KACP,WAAY,OACZ,cAAe,SACf,YAAa,OACb,YAAa,IAAI,MAAM,KAqEzB,iBAQA,SAPE,QAAS,KAnEX,6CACE,kBAAmB,EAGrB,wCACE,iBAAkB,KAGpB,wCACE,iBAAkB,KAGpB,2BACE,aAAc,QAGhB,yCACE,MAAO,QACP,aAAc,QAGhB,gDACE,iBAAkB,QAGpB,gDACE,MAAO,KACP,iBAAkB,QAGpB,4BACE,aAAc,QAGhB,0CACE,MAAO,QACP,aAAc,QAGhB,iDACE,iBAAkB,QAGpB,iDACE,MAAO,KACP,iBAAkB,QAGpB,4BACE,aAAc,QAGhB,0CACE,MAAO,QACP,aAAc,QAGhB,iDACE,iBAAkB,QAGpB,iDACE,MAAO,KACP,iBAAkB,QAOpB,wBACE,QAAS,MAGX,SACE,SAAU,MACV,IAAK,KACL,KAAM,IACN,QAAS,GAET,MAAO,MACP,YAAa,OACb,iBAAkB,KAClB,cAAe,IACf,mBAAoB,EAAE,EAAE,KAAK,eACrB,WAAY,EAAE,EAAE,KAAK,eAC7B,QAAS,EACT,mBAAoB,IAAI,KAAK,OACxB,cAAe,IAAI,KAAK,OACrB,WAAY,IAAI,KAAK,OAC7B,kBAAmB,uBACf,cAAe,uBACX,UAAW,uBAGrB,gBACE,SAAU,SACV,IAAK,MACL,KAAM,IACN,MAAO,EACP,OAAQ,EACR,YAAa,MACb,QAAS,GACT,aAAc,KAAK,MAAM,YACzB,cAAe,KAAK,MAAM,KAC1B,YAAa,KAAK,MAAM,YAc1B,UAqCA,OACE,SAAU,MACV,IAAK,EAlDP,iBACE,QAAS,EACT,kBAAmB,mBACf,cAAe,mBACX,UAAW,mBAOrB,UAGE,MAAO,EACP,OAAQ,EACR,KAAM,EACN,QAAS,GACT,iBAAkB,eAGpB,oBACE,cAAe,IAGjB,+BACE,cAAe,EAGjB,kBACE,cAAe,IAAI,MAAM,KACzB,uBAAwB,KACxB,wBAAyB,KACzB,mBAAoB,KACZ,WAAY,KAGtB,qBACE,WAAY,MACZ,cAAe,EACf,SAAU,KACV,2BAA4B,MAC5B,iBAAkB,KAClB,WAAY,EACZ,cAAe,EACf,cAAe,IAGjB,OA4BA,QAKE,SAAU,OAeV,MAAO,KAhDT,OAGE,QAAS,GAET,WAAY,KAEZ,iBAAkB,KAClB,QAAS,EACT,mBAAoB,kBAAkB,KAAM,QAAQ,IAAI,KACnD,cAAc,aAAa,KAAM,QAAQ,IAAI,KAC1C,WAAW,UAAU,KAAM,QAAQ,IAAI,KAC/C,kBAAmB,sBACf,cAAe,sBACX,UAAW,sBAGrB,cACE,OAAQ,KACR,QAAS,EACT,mBAAoB,kBAAkB,KACjC,cAAc,aAAa,KACxB,WAAW,UAAU,KAC7B,kBAAmB,mBACf,cAAe,mBACX,UAAW,mBAGrB,QAME,iBAAkB,KAGpB,qBACE,SAAU,SACV,UAAW,EAEX,mBAAoB,IAAI,GAAG,OACtB,cAAe,IAAI,GAAG,OACnB,WAAY,IAAI,GAAG,OAG7B,4BACE,QAAS,aACT,MAAO,KACP,OAAQ,KACR,UAAW,KACX,eAAgB,IAGlB,QACE,SAAU,SACV,QAAS,MACT,MAAO,KACP,OAAQ,KACR,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,KACf,4BAA6B,IACxB,uBAAwB,IACrB,oBAAqB,IAC7B,4BAA6B,iBAAkB,OAC1C,uBAAwB,iBAAkB,OACvC,oBAAqB,iBAAkB,OAGjD,uBACE,SAAU,SACV,IAAK,KACL,KAAM,KACN,QAAS,EACT,MAAO,KACP,OAAQ,KACR,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,MACf,4BAA6B,IACxB,uBAAwB,IACrB,oBAAqB,IAC7B,4BAA6B,kBAAmB,OAAQ,MACnD,uBAAuB,aAAc,OAAQ,MAC1C,oBAAoB,UAAW,OAAQ,MAGjD,eACE,SAAU,SACV,IAAK,IACL,MAAO,KACP,UAAW,KACX,MAAO,KACP,eAAgB,UAChB,QAAS,MAGX,eACE,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAGpB,8BACE,aAAc,QACd,kBAAmB,sBACf,cAAe,sBACX,UAAW,sBAGrB,sBACE,MAAO,KACP,KAAM,KACN,MAAO,KACP,QAAS,KAGX,6BACE,QAAS,KAgFX,MAzCA,qBACA,sBACA,iBACA,kBAuCE,QAAS,aACT,YAAa,WAEb,YAAa,EACb,gBAAiB,KAEjB,uBAAwB,YApF1B,cACE,KAAM,EACN,QAAS,EACT,mBAAoB,QAAQ,IACvB,cAAe,QAAQ,IACpB,WAAY,QAAQ,IAG9B,iBACE,QAAS,EAGX,iBACE,QAAS,EACT,mBAAoB,kBAAkB,IACjC,cAAc,aAAa,IACxB,WAAW,UAAU,IAC7B,kBAAmB,mBACf,cAAe,mBACX,UAAW,mBAGrB,sBACE,QAAS,EACT,kBAAmB,uBACf,cAAe,uBACX,UAAW,uBAGrB,uBACE,QAAS,EACT,kBAAmB,sBACf,cAAe,sBACX,UAAW,sBAGrB,qBACA,sBACA,iBACA,kBACE,SAAU,SACV,IAAK,IAGL,UAAW,QAEX,MAAO,KAEP,kBAAmB,iBACf,cAAe,iBACd,aAAc,iBACX,UAAW,iBAKrB,qBACA,iBACE,KAAM,KACN,QAAS,QAGX,sBACA,kBACE,MAAO,KACP,QAAS,QAGX,WACE,YAAa,WACb,WAAY,OACZ,YAAa,IAEb,IAAK,6BACL,IAAK,oCAAqC,4BAA6B,8BAA+B,eAAgB,6BAA8B,mBAAoB,yCAA0C,cAGpN,MAGE,UAAW,KAOb,kBACE,QAAS,QAGX,kBACE,QAAS,QAGX,mBACE,QAAS,QAGX,mBACE,QAAS,QAGX,mBACE,QAAS,QAGX,kBACE,QAAS,QAGX,qBACE,QAAS,QAGX,sBACE,QAAS,QAGX,kBACE,QAAS,QAGX,qBACE,QAAS,QAGX,kBACE,QAAS,QAGX,kBACE,QAAS,QAGX,kBACE,QAAS,QAGX,kBACE,QAAS,QAGX,2BACE,QAAS,QAGX,kBACE,QAAS,QAGX,mBACE,QAAS,QAGX,mBACE,QAAS,QAGX,oBACE,QAAS,QAGX,kBACE,QAAS,QAGX,kBACE,QAAS,QAGX,qBACE,QAAS,QAGX,oBACE,QAAS,QAGX,mBACE,QAAS,QAGX,mBACE,QAAS,QAGX,oBACE,QAAS,QAGX,oBACE,QAAS,QAGX,oBACE,QAAS,QAGX,yBACE,QAAS,QAGX,kBACE,QAAS,QAGX,kBACE,QAAS,QAGX,mBACE,QAAS,QAGX,oBACE,QAAS,QAGX,gBACE,QAAS,QAGX,uBACE,QAAS,QAGX,mBACE,QAAS,QAGX,sBACE,QAAS,QAGX,kBACE,QAAS,QAGX,sBACE,QAAS,QAGX,kBACE,QAAS"}
\ No newline at end of file
diff --git a/dist/fonts/ratchicons.eot b/dist/fonts/ratchicons.eot
new file mode 100644
index 000000000..536e57258
Binary files /dev/null and b/dist/fonts/ratchicons.eot differ
diff --git a/dist/fonts/ratchicons.svg b/dist/fonts/ratchicons.svg
new file mode 100644
index 000000000..3abf5dd10
--- /dev/null
+++ b/dist/fonts/ratchicons.svg
@@ -0,0 +1,61 @@
+
+
+
\ No newline at end of file
diff --git a/dist/fonts/ratchicons.ttf b/dist/fonts/ratchicons.ttf
new file mode 100644
index 000000000..927eb58c3
Binary files /dev/null and b/dist/fonts/ratchicons.ttf differ
diff --git a/dist/fonts/ratchicons.woff b/dist/fonts/ratchicons.woff
new file mode 100644
index 000000000..25f1e75af
Binary files /dev/null and b/dist/fonts/ratchicons.woff differ
diff --git a/dist/js/ratchet.js b/dist/js/ratchet.js
new file mode 100644
index 000000000..7defe2ce7
--- /dev/null
+++ b/dist/js/ratchet.js
@@ -0,0 +1,1073 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */
+/* ========================================================================
+ * Ratchet: common.js v2.0.2
+ * http://goratchet.com/
+ * ========================================================================
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+!(function () {
+ 'use strict';
+
+ // Compatible With CustomEvent
+ if (!window.CustomEvent) {
+ window.CustomEvent = function (type, config) {
+ var e = document.createEvent('CustomEvent');
+ e.initCustomEvent(type, config.bubbles, config.cancelable, config.detail);
+ return e;
+ };
+ }
+
+ // Create Ratchet namespace
+ if (typeof window.RATCHET === 'undefined') {
+ window.RATCHET = {};
+ }
+
+ // Original script from http://davidwalsh.name/vendor-prefix
+ window.RATCHET.getBrowserCapabilities = (function () {
+ var styles = window.getComputedStyle(document.documentElement, '');
+ var pre = (Array.prototype.slice
+ .call(styles)
+ .join('')
+ .match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o'])
+ )[1];
+ return {
+ prefix: '-' + pre + '-',
+ transform: pre[0].toUpperCase() + pre.substr(1) + 'Transform'
+ };
+ })();
+
+ window.RATCHET.getTransitionEnd = (function () {
+ var el = document.createElement('ratchet');
+ var transEndEventNames = {
+ WebkitTransition : 'webkitTransitionEnd',
+ MozTransition : 'transitionend',
+ OTransition : 'oTransitionEnd otransitionend',
+ transition : 'transitionend'
+ };
+
+ for (var name in transEndEventNames) {
+ if (el.style[name] !== undefined) {
+ return transEndEventNames[name];
+ }
+ }
+
+ return transEndEventNames.transition;
+ })();
+}());
+
+/* ========================================================================
+ * Ratchet: modals.js v2.0.2
+ * http://goratchet.com/components#modals
+ * ========================================================================
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+!(function () {
+ 'use strict';
+
+ var findModals = function (target) {
+ var i;
+ var modals = document.querySelectorAll('a');
+
+ for (; target && target !== document; target = target.parentNode) {
+ for (i = modals.length; i--;) {
+ if (modals[i] === target) {
+ return target;
+ }
+ }
+ }
+ };
+
+ var getModal = function (event) {
+ var modalToggle = findModals(event.target);
+ if (modalToggle && modalToggle.hash) {
+ return document.querySelector(modalToggle.hash);
+ }
+ };
+
+ window.addEventListener('touchend', function (event) {
+ var modal = getModal(event);
+ if (modal && modal.classList.contains('modal')) {
+ var eventToDispatch = null;
+ if (modal.classList.contains('active')) {
+ eventToDispatch = new CustomEvent('modalClose', {
+ bubbles: true,
+ cancelable: true
+ });
+ }
+ else {
+ eventToDispatch = new CustomEvent('modalOpen', {
+ bubbles: true,
+ cancelable: true
+ });
+ }
+ modal.dispatchEvent(eventToDispatch);
+ modal.classList.toggle('active');
+ event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)
+ }
+ });
+}());
+
+/* ========================================================================
+ * Ratchet: popovers.js v2.0.2
+ * http://goratchet.com/components#popovers
+ * ========================================================================
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+!(function () {
+ 'use strict';
+
+ var popover;
+
+ var findPopovers = function (target) {
+ var i;
+ var popovers = document.querySelectorAll('a');
+
+ for (; target && target !== document; target = target.parentNode) {
+ for (i = popovers.length; i--;) {
+ if (popovers[i] === target) {
+ return target;
+ }
+ }
+ }
+ };
+
+ var onPopoverHidden = function () {
+ popover.style.display = 'none';
+ popover.removeEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);
+ };
+
+ var backdrop = (function () {
+ var element = document.createElement('div');
+
+ element.classList.add('backdrop');
+
+ element.addEventListener('touchend', function () {
+ popover.addEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);
+ popover.classList.remove('visible');
+ popover.parentNode.removeChild(backdrop);
+ });
+
+ return element;
+ }());
+
+ var getPopover = function (e) {
+ var anchor = findPopovers(e.target);
+
+ if (!anchor || !anchor.hash || (anchor.hash.indexOf('/') > 0)) {
+ return;
+ }
+
+ try {
+ popover = document.querySelector(anchor.hash);
+ } catch (error) {
+ popover = null;
+ }
+
+ if (popover === null) {
+ return;
+ }
+
+ if (!popover || !popover.classList.contains('popover')) {
+ return;
+ }
+
+ return popover;
+ };
+
+ var showHidePopover = function (e) {
+ var popover = getPopover(e);
+
+ if (!popover) {
+ return;
+ }
+
+ popover.style.display = 'block';
+ popover.offsetHeight;
+ popover.classList.add('visible');
+
+ popover.parentNode.appendChild(backdrop);
+ };
+
+ window.addEventListener('touchend', showHidePopover);
+
+}());
+
+/* ========================================================================
+ * Ratchet: push.js v2.0.2
+ * http://goratchet.com/components#push
+ * ========================================================================
+ * inspired by @defunkt's jquery.pjax.js
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+/* global _gaq: true */
+
+!(function () {
+ 'use strict';
+
+ var noop = function () {};
+
+
+ // Pushstate caching
+ // ==================
+
+ var isScrolling;
+ var maxCacheLength = 20;
+ var cacheMapping = sessionStorage;
+ var domCache = {};
+ // Change these to unquoted camelcase in the next major version bump
+ var transitionMap = {
+ 'slide-in' : 'slide-out',
+ 'slide-out' : 'slide-in',
+ fade : 'fade'
+ };
+
+ var bars = {
+ bartab : '.bar-tab',
+ barnav : '.bar-nav',
+ barfooter : '.bar-footer',
+ barheadersecondary : '.bar-header-secondary'
+ };
+
+ var cacheReplace = function (data, updates) {
+ PUSH.id = data.id;
+ if (updates) {
+ data = getCached(data.id);
+ }
+ cacheMapping[data.id] = JSON.stringify(data);
+ window.history.replaceState(data.id, data.title, data.url);
+ };
+
+ var cachePush = function () {
+ var id = PUSH.id;
+
+ var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');
+ var cacheBackStack = JSON.parse(cacheMapping.cacheBackStack || '[]');
+
+ cacheBackStack.push(id);
+
+ while (cacheForwardStack.length) {
+ delete cacheMapping[cacheForwardStack.shift()];
+ }
+ while (cacheBackStack.length > maxCacheLength) {
+ delete cacheMapping[cacheBackStack.shift()];
+ }
+
+ if (getCached(PUSH.id).url) {
+ window.history.pushState(null, '', getCached(PUSH.id).url);
+ }
+
+ cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);
+ cacheMapping.cacheBackStack = JSON.stringify(cacheBackStack);
+ };
+
+ var cachePop = function (id, direction) {
+ var forward = direction === 'forward';
+ var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');
+ var cacheBackStack = JSON.parse(cacheMapping.cacheBackStack || '[]');
+ var pushStack = forward ? cacheBackStack : cacheForwardStack;
+ var popStack = forward ? cacheForwardStack : cacheBackStack;
+
+ if (PUSH.id) {
+ pushStack.push(PUSH.id);
+ }
+ popStack.pop();
+
+ cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);
+ cacheMapping.cacheBackStack = JSON.stringify(cacheBackStack);
+ };
+
+ var getCached = function (id) {
+ return JSON.parse(cacheMapping[id] || null) || {};
+ };
+
+ var getTarget = function (e) {
+ var target = findTarget(e.target);
+
+ if (!target ||
+ e.which > 1 ||
+ e.metaKey ||
+ e.ctrlKey ||
+ isScrolling ||
+ location.protocol !== target.protocol ||
+ location.host !== target.host ||
+ !target.hash && /#/.test(target.href) ||
+ target.hash && target.href.replace(target.hash, '') === location.href.replace(location.hash, '') ||
+ target.getAttribute('data-ignore') === 'push') { return; }
+
+ return target;
+ };
+
+
+ // Main event handlers (touchend, popstate)
+ // ==========================================
+
+ var touchend = function (e) {
+ var target = getTarget(e);
+
+ if (!target) {
+ return;
+ }
+
+ e.preventDefault();
+
+ PUSH({
+ url : target.href,
+ hash : target.hash,
+ timeout : target.getAttribute('data-timeout'),
+ transition : target.getAttribute('data-transition')
+ });
+ };
+
+ var popstate = function (e) {
+ var key;
+ var barElement;
+ var activeObj;
+ var activeDom;
+ var direction;
+ var transition;
+ var transitionFrom;
+ var transitionFromObj;
+ var id = e.state;
+
+ if (!id || !cacheMapping[id]) {
+ return;
+ }
+
+ direction = PUSH.id < id ? 'forward' : 'back';
+
+ cachePop(id, direction);
+
+ activeObj = getCached(id);
+ activeDom = domCache[id];
+
+ if (activeObj.title) {
+ document.title = activeObj.title;
+ }
+
+ if (direction === 'back') {
+ transitionFrom = JSON.parse(direction === 'back' ? cacheMapping.cacheForwardStack : cacheMapping.cacheBackStack);
+ transitionFromObj = getCached(transitionFrom[transitionFrom.length - 1]);
+ } else {
+ transitionFromObj = activeObj;
+ }
+
+ if (direction === 'back' && !transitionFromObj.id) {
+ return (PUSH.id = id);
+ }
+
+ transition = direction === 'back' ? transitionMap[transitionFromObj.transition] : transitionFromObj.transition;
+
+ if (!activeDom) {
+ return PUSH({
+ id : activeObj.id,
+ url : activeObj.url,
+ title : activeObj.title,
+ timeout : activeObj.timeout,
+ transition : transition,
+ ignorePush : true
+ });
+ }
+
+ if (transitionFromObj.transition) {
+ activeObj = extendWithDom(activeObj, '.content', activeDom.cloneNode(true));
+ for (key in bars) {
+ if (bars.hasOwnProperty(key)) {
+ barElement = document.querySelector(bars[key]);
+ if (activeObj[key]) {
+ swapContent(activeObj[key], barElement);
+ } else if (barElement) {
+ barElement.parentNode.removeChild(barElement);
+ }
+ }
+ }
+ }
+
+ swapContent(
+ (activeObj.contents || activeDom).cloneNode(true),
+ document.querySelector('.content'),
+ transition, function () {
+ triggerStateChange();
+ }
+ );
+
+ PUSH.id = id;
+
+ document.body.offsetHeight; // force reflow to prevent scroll
+ };
+
+
+ // Core PUSH functionality
+ // =======================
+
+ var PUSH = function (options) {
+ var key;
+ var xhr = PUSH.xhr;
+
+ options.container = options.container || options.transition ? document.querySelector('.content') : document.body;
+
+ var isFileProtocol = /^file:/.test(window.location.protocol);
+
+ for (key in bars) {
+ if (bars.hasOwnProperty(key)) {
+ options[key] = options[key] || document.querySelector(bars[key]);
+ }
+ }
+
+ if (xhr && xhr.readyState < 4) {
+ xhr.onreadystatechange = noop;
+ xhr.abort();
+ }
+
+ xhr = new XMLHttpRequest();
+ if (isFileProtocol) {
+ xhr.open('GET', options.url, false);
+ } else {
+ xhr.open('GET', options.url, true);
+ xhr.setRequestHeader('X-PUSH', 'true');
+
+ xhr.onreadystatechange = function () {
+ if (options._timeout) {
+ clearTimeout(options._timeout);
+ }
+ if (xhr.readyState === 4) {
+ if (xhr.status === 200) {
+ success(xhr, options);
+ } else {
+ failure(options.url);
+ }
+ }
+ };
+ }
+
+ if (!PUSH.id) {
+ cacheReplace({
+ id : +new Date(),
+ url : window.location.href,
+ title : document.title,
+ timeout : options.timeout,
+ transition : options.transition
+ });
+ }
+
+ cacheCurrentContent();
+
+ if (options.timeout) {
+ options._timeout = setTimeout(function () { xhr.abort('timeout'); }, options.timeout);
+ }
+
+ xhr.send();
+
+ if (isFileProtocol) {
+ if (xhr.status === 0 || xhr.status === 200) {
+ success(xhr, options);
+ } else {
+ failure(options.url);
+ }
+ }
+
+ if (xhr.readyState && !options.ignorePush) {
+ cachePush();
+ }
+ };
+
+ function cacheCurrentContent () {
+ domCache[PUSH.id] = document.body.cloneNode(true);
+ }
+
+
+ // Main XHR handlers
+ // =================
+
+ var success = function (xhr, options) {
+ var key;
+ var barElement;
+ var data = parseXHR(xhr, options);
+
+ if (!data.contents) {
+ return locationReplace(options.url);
+ }
+
+ if (data.title) {
+ document.title = data.title;
+ }
+
+ if (options.transition) {
+ for (key in bars) {
+ if (bars.hasOwnProperty(key)) {
+ barElement = document.querySelector(bars[key]);
+ if (data[key]) {
+ swapContent(data[key], barElement);
+ } else if (barElement) {
+ barElement.parentNode.removeChild(barElement);
+ }
+ }
+ }
+ }
+
+ swapContent(data.contents, options.container, options.transition, function () {
+ cacheReplace({
+ id : options.id || +new Date(),
+ url : data.url,
+ title : data.title,
+ timeout : options.timeout,
+ transition : options.transition
+ }, options.id);
+ triggerStateChange();
+ });
+
+ if (!options.ignorePush && window._gaq) {
+ _gaq.push(['_trackPageview']); // google analytics
+ }
+ if (!options.hash) {
+ return;
+ }
+ };
+
+ var failure = function (url) {
+ throw new Error('Could not get: ' + url);
+ };
+
+
+ // PUSH helpers
+ // ============
+
+ var swapContent = function (swap, container, transition, complete) {
+ var enter;
+ var containerDirection;
+ var swapDirection;
+
+ if (!transition) {
+ if (container) {
+ container.innerHTML = swap.innerHTML;
+ } else if (swap.classList.contains('content')) {
+ document.body.appendChild(swap);
+ } else {
+ document.body.insertBefore(swap, document.querySelector('.content'));
+ }
+ } else {
+ enter = /in$/.test(transition);
+
+ if (transition === 'fade') {
+ container.classList.add('in');
+ container.classList.add('fade');
+ swap.classList.add('fade');
+ }
+
+ if (/slide/.test(transition)) {
+ swap.classList.add('sliding-in', enter ? 'right' : 'left');
+ swap.classList.add('sliding');
+ container.classList.add('sliding');
+ }
+
+ container.parentNode.insertBefore(swap, container);
+ }
+
+ if (!transition) {
+ if (complete) {
+ complete();
+ }
+ }
+
+ if (transition === 'fade') {
+ container.offsetWidth; // force reflow
+ container.classList.remove('in');
+ var fadeContainerEnd = function () {
+ container.removeEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);
+ swap.classList.add('in');
+ swap.addEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);
+ };
+ var fadeSwapEnd = function () {
+ swap.removeEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);
+ container.parentNode.removeChild(container);
+ swap.classList.remove('fade');
+ swap.classList.remove('in');
+ if (complete) {
+ complete();
+ }
+ };
+ container.addEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);
+
+ }
+
+ if (/slide/.test(transition)) {
+ var slideEnd = function () {
+ swap.removeEventListener(window.RATCHET.getTransitionEnd, slideEnd);
+ swap.classList.remove('sliding', 'sliding-in');
+ swap.classList.remove(swapDirection);
+ container.parentNode.removeChild(container);
+ if (complete) {
+ complete();
+ }
+ };
+
+ container.offsetWidth; // force reflow
+ swapDirection = enter ? 'right' : 'left';
+ containerDirection = enter ? 'left' : 'right';
+ container.classList.add(containerDirection);
+ swap.classList.remove(swapDirection);
+ swap.addEventListener(window.RATCHET.getTransitionEnd, slideEnd);
+ }
+ };
+
+ var triggerStateChange = function () {
+ var e = new CustomEvent('push', {
+ detail: { state: getCached(PUSH.id) },
+ bubbles: true,
+ cancelable: true
+ });
+
+ window.dispatchEvent(e);
+ };
+
+ var findTarget = function (target) {
+ var i;
+ var toggles = document.querySelectorAll('a');
+
+ for (; target && target !== document; target = target.parentNode) {
+ for (i = toggles.length; i--;) {
+ if (toggles[i] === target) {
+ return target;
+ }
+ }
+ }
+ };
+
+ var locationReplace = function (url) {
+ window.history.replaceState(null, '', '#');
+ window.location.replace(url);
+ };
+
+ var extendWithDom = function (obj, fragment, dom) {
+ var i;
+ var result = {};
+
+ for (i in obj) {
+ if (obj.hasOwnProperty(i)) {
+ result[i] = obj[i];
+ }
+ }
+
+ Object.keys(bars).forEach(function (key) {
+ var el = dom.querySelector(bars[key]);
+ if (el) {
+ el.parentNode.removeChild(el);
+ }
+ result[key] = el;
+ });
+
+ result.contents = dom.querySelector(fragment);
+
+ return result;
+ };
+
+ var parseXHR = function (xhr, options) {
+ var head;
+ var body;
+ var data = {};
+ var responseText = xhr.responseText;
+
+ data.url = options.url;
+
+ if (!responseText) {
+ return data;
+ }
+
+ if (/]*>([\s\S.]*)<\/head>/i)[0];
+ body.innerHTML = responseText.match(/]*>([\s\S.]*)<\/body>/i)[0];
+ } else {
+ head = body = document.createElement('div');
+ head.innerHTML = responseText;
+ }
+
+ data.title = head.querySelector('title') || document.querySelector('title');
+ var text = 'innerText' in data.title ? 'innerText' : 'textContent';
+ data.title = data.title && data.title[text].trim();
+
+ if (options.transition) {
+ data = extendWithDom(data, '.content', body);
+ } else {
+ data.contents = body;
+ }
+
+ return data;
+ };
+
+
+ // Attach PUSH event handlers
+ // ==========================
+
+ window.addEventListener('touchstart', function () { isScrolling = false; });
+ window.addEventListener('touchmove', function () { isScrolling = true; });
+ window.addEventListener('touchend', touchend);
+ window.addEventListener('click', function (e) {
+ if (getTarget(e)) {
+ e.preventDefault();
+ }
+ });
+ window.addEventListener('popstate', popstate);
+
+ // TODO : Remove this line in the next major version
+ window.PUSH = PUSH;
+ window.RATCHET.push = PUSH;
+
+}());
+
+/* ========================================================================
+ * Ratchet: segmented-controllers.js v2.0.2
+ * http://goratchet.com/components#segmentedControls
+ * ========================================================================
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+!(function () {
+ 'use strict';
+
+ var getTarget = function (target) {
+ var i;
+ var segmentedControls = document.querySelectorAll('.segmented-control .control-item');
+
+ for (; target && target !== document; target = target.parentNode) {
+ for (i = segmentedControls.length; i--;) {
+ if (segmentedControls[i] === target) {
+ return target;
+ }
+ }
+ }
+ };
+
+ window.addEventListener('touchend', function (e) {
+ var activeTab;
+ var activeBodies;
+ var targetBody;
+ var targetTab = getTarget(e.target);
+ var className = 'active';
+ var classSelector = '.' + className;
+
+ if (!targetTab) {
+ return;
+ }
+
+ activeTab = targetTab.parentNode.querySelector(classSelector);
+
+ if (activeTab) {
+ activeTab.classList.remove(className);
+ }
+
+ targetTab.classList.add(className);
+
+ if (!targetTab.hash) {
+ return;
+ }
+
+ targetBody = document.querySelector(targetTab.hash);
+
+ if (!targetBody) {
+ return;
+ }
+
+ activeBodies = targetBody.parentNode.querySelectorAll(classSelector);
+
+ for (var i = 0; i < activeBodies.length; i++) {
+ activeBodies[i].classList.remove(className);
+ }
+
+ targetBody.classList.add(className);
+ });
+
+ window.addEventListener('click', function (e) {
+ if (getTarget(e.target)) {
+ e.preventDefault();
+ }
+ });
+
+}());
+
+/* ========================================================================
+ * Ratchet: sliders.js v2.0.2
+ * http://goratchet.com/components#sliders
+ * ========================================================================
+ Adapted from Brad Birdsall's swipe
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+!(function () {
+ 'use strict';
+
+ var pageX;
+ var pageY;
+ var slider;
+ var deltaX;
+ var deltaY;
+ var offsetX;
+ var lastSlide;
+ var startTime;
+ var resistance;
+ var sliderWidth;
+ var slideNumber;
+ var isScrolling;
+ var scrollableArea;
+ var startedMoving;
+
+ var transformPrefix = window.RATCHET.getBrowserCapabilities.prefix;
+ var transformProperty = window.RATCHET.getBrowserCapabilities.transform;
+
+ var getSlider = function (target) {
+ var i;
+ var sliders = document.querySelectorAll('.slider > .slide-group');
+
+ for (; target && target !== document; target = target.parentNode) {
+ for (i = sliders.length; i--;) {
+ if (sliders[i] === target) {
+ return target;
+ }
+ }
+ }
+ };
+
+ var getScroll = function () {
+ var translate3d = slider.style[transformProperty].match(/translate3d\(([^,]*)/);
+ var ret = translate3d ? translate3d[1] : 0;
+ return parseInt(ret, 10);
+ };
+
+ var setSlideNumber = function (offset) {
+ var round = offset ? (deltaX < 0 ? 'ceil' : 'floor') : 'round';
+ slideNumber = Math[round](getScroll() / (scrollableArea / slider.children.length));
+ slideNumber += offset;
+ slideNumber = Math.min(slideNumber, 0);
+ slideNumber = Math.max(-(slider.children.length - 1), slideNumber);
+ };
+
+ var onTouchStart = function (e) {
+ slider = getSlider(e.target);
+
+ if (!slider) {
+ return;
+ }
+
+ var firstItem = slider.querySelector('.slide');
+
+ scrollableArea = firstItem.offsetWidth * slider.children.length;
+ isScrolling = undefined;
+ sliderWidth = slider.offsetWidth;
+ resistance = 1;
+ lastSlide = -(slider.children.length - 1);
+ startTime = +new Date();
+ pageX = e.touches[0].pageX;
+ pageY = e.touches[0].pageY;
+ deltaX = 0;
+ deltaY = 0;
+
+ setSlideNumber(0);
+
+ slider.style[transformPrefix + 'transition-duration'] = 0;
+ };
+
+ var onTouchMove = function (e) {
+ if (e.touches.length > 1 || !slider) {
+ return; // Exit if a pinch || no slider
+ }
+
+ // adjust the starting position if we just started to avoid jumpage
+ if (!startedMoving) {
+ pageX += (e.touches[0].pageX - pageX) - 1;
+ }
+
+ deltaX = e.touches[0].pageX - pageX;
+ deltaY = e.touches[0].pageY - pageY;
+ pageX = e.touches[0].pageX;
+ pageY = e.touches[0].pageY;
+
+ if (typeof isScrolling === 'undefined' && startedMoving) {
+ isScrolling = Math.abs(deltaY) > Math.abs(deltaX);
+ }
+
+ if (isScrolling) {
+ return;
+ }
+
+ offsetX = (deltaX / resistance) + getScroll();
+
+ e.preventDefault();
+
+ resistance = slideNumber === 0 && deltaX > 0 ? (pageX / sliderWidth) + 1.25 :
+ slideNumber === lastSlide && deltaX < 0 ? (Math.abs(pageX) / sliderWidth) + 1.25 : 1;
+
+ slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';
+
+ // started moving
+ startedMoving = true;
+ };
+
+ var onTouchEnd = function (e) {
+ if (!slider || isScrolling) {
+ return;
+ }
+
+ // we're done moving
+ startedMoving = false;
+
+ setSlideNumber((+new Date()) - startTime < 1000 && Math.abs(deltaX) > 15 ? (deltaX < 0 ? -1 : 1) : 0);
+
+ offsetX = slideNumber * sliderWidth;
+
+ slider.style[transformPrefix + 'transition-duration'] = '.2s';
+ slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';
+
+ e = new CustomEvent('slide', {
+ detail: { slideNumber: Math.abs(slideNumber) },
+ bubbles: true,
+ cancelable: true
+ });
+
+ slider.parentNode.dispatchEvent(e);
+ };
+
+ window.addEventListener('touchstart', onTouchStart);
+ window.addEventListener('touchmove', onTouchMove);
+ window.addEventListener('touchend', onTouchEnd);
+
+}());
+
+/* ========================================================================
+ * Ratchet: toggles.js v2.0.2
+ * http://goratchet.com/components#toggles
+ * ========================================================================
+ Adapted from Brad Birdsall's swipe
+ * Copyright 2015 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ * ======================================================================== */
+
+!(function () {
+ 'use strict';
+
+ var start = {};
+ var touchMove = false;
+ var distanceX = false;
+ var toggle = false;
+ var transformProperty = window.RATCHET.getBrowserCapabilities.transform;
+
+ var findToggle = function (target) {
+ var i;
+ var toggles = document.querySelectorAll('.toggle');
+
+ for (; target && target !== document; target = target.parentNode) {
+ for (i = toggles.length; i--;) {
+ if (toggles[i] === target) {
+ return target;
+ }
+ }
+ }
+ };
+
+ window.addEventListener('touchstart', function (e) {
+ e = e.originalEvent || e;
+
+ toggle = findToggle(e.target);
+
+ if (!toggle) {
+ return;
+ }
+
+ var handle = toggle.querySelector('.toggle-handle');
+ var toggleWidth = toggle.clientWidth;
+ var handleWidth = handle.clientWidth;
+ var offset = toggle.classList.contains('active') ? (toggleWidth - handleWidth) : 0;
+
+ start = { pageX : e.touches[0].pageX - offset, pageY : e.touches[0].pageY };
+ touchMove = false;
+ });
+
+ window.addEventListener('touchmove', function (e) {
+ e = e.originalEvent || e;
+
+ if (e.touches.length > 1) {
+ return; // Exit if a pinch
+ }
+
+ if (!toggle) {
+ return;
+ }
+
+ var handle = toggle.querySelector('.toggle-handle');
+ var current = e.touches[0];
+ var toggleWidth = toggle.clientWidth;
+ var handleWidth = handle.clientWidth;
+ var offset = toggleWidth - handleWidth;
+
+ touchMove = true;
+ distanceX = current.pageX - start.pageX;
+
+ if (Math.abs(distanceX) < Math.abs(current.pageY - start.pageY)) {
+ return;
+ }
+
+ e.preventDefault();
+
+ if (distanceX < 0) {
+ return (handle.style[transformProperty] = 'translate3d(0,0,0)');
+ }
+ if (distanceX > offset) {
+ return (handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)');
+ }
+
+ handle.style[transformProperty] = 'translate3d(' + distanceX + 'px,0,0)';
+
+ toggle.classList[(distanceX > (toggleWidth / 2 - handleWidth / 2)) ? 'add' : 'remove']('active');
+ });
+
+ window.addEventListener('touchend', function (e) {
+ if (!toggle) {
+ return;
+ }
+
+ var handle = toggle.querySelector('.toggle-handle');
+ var toggleWidth = toggle.clientWidth;
+ var handleWidth = handle.clientWidth;
+ var offset = (toggleWidth - handleWidth);
+ var slideOn = (!touchMove && !toggle.classList.contains('active')) || (touchMove && (distanceX > (toggleWidth / 2 - handleWidth / 2)));
+
+ if (slideOn) {
+ handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)';
+ } else {
+ handle.style[transformProperty] = 'translate3d(0,0,0)';
+ }
+
+ toggle.classList[slideOn ? 'add' : 'remove']('active');
+
+ e = new CustomEvent('toggle', {
+ detail: {
+ isActive: slideOn
+ },
+ bubbles: true,
+ cancelable: true
+ });
+
+ toggle.dispatchEvent(e);
+
+ touchMove = false;
+ toggle = false;
+ });
+
+}());
diff --git a/dist/js/ratchet.min.js b/dist/js/ratchet.min.js
new file mode 100644
index 000000000..7ce0a9736
--- /dev/null
+++ b/dist/js/ratchet.min.js
@@ -0,0 +1,12 @@
+/*!
+ * =====================================================
+ * Ratchet v2.0.2 (http://goratchet.com)
+ * Copyright 2016 Connor Sears
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
+ *
+ * v2.0.2 designed by @connors.
+ * =====================================================
+ */
+
+!function(){"use strict";window.CustomEvent||(window.CustomEvent=function(a,b){var c=document.createEvent("CustomEvent");return c.initCustomEvent(a,b.bubbles,b.cancelable,b.detail),c}),"undefined"==typeof window.RATCHET&&(window.RATCHET={}),window.RATCHET.getBrowserCapabilities=function(){var a=window.getComputedStyle(document.documentElement,""),b=(Array.prototype.slice.call(a).join("").match(/-(moz|webkit|ms)-/)||""===a.OLink&&["","o"])[1];return{prefix:"-"+b+"-",transform:b[0].toUpperCase()+b.substr(1)+"Transform"}}(),window.RATCHET.getTransitionEnd=function(){var a=document.createElement("ratchet"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return b[c];return b.transition}()}(),!function(){"use strict";var a=function(a){for(var b,c=document.querySelectorAll("a");a&&a!==document;a=a.parentNode)for(b=c.length;b--;)if(c[b]===a)return a},b=function(b){var c=a(b.target);return c&&c.hash?document.querySelector(c.hash):void 0};window.addEventListener("touchend",function(a){var c=b(a);if(c&&c.classList.contains("modal")){var d=null;d=c.classList.contains("active")?new CustomEvent("modalClose",{bubbles:!0,cancelable:!0}):new CustomEvent("modalOpen",{bubbles:!0,cancelable:!0}),c.dispatchEvent(d),c.classList.toggle("active"),a.preventDefault()}})}(),!function(){"use strict";var a,b=function(a){for(var b,c=document.querySelectorAll("a");a&&a!==document;a=a.parentNode)for(b=c.length;b--;)if(c[b]===a)return a},c=function(){a.style.display="none",a.removeEventListener(window.RATCHET.getTransitionEnd,c)},d=function(){var b=document.createElement("div");return b.classList.add("backdrop"),b.addEventListener("touchend",function(){a.addEventListener(window.RATCHET.getTransitionEnd,c),a.classList.remove("visible"),a.parentNode.removeChild(d)}),b}(),e=function(c){var d=b(c.target);if(d&&d.hash&&!(d.hash.indexOf("/")>0)){try{a=document.querySelector(d.hash)}catch(e){a=null}if(null!==a&&a&&a.classList.contains("popover"))return a}},f=function(a){var b=e(a);b&&(b.style.display="block",b.offsetHeight,b.classList.add("visible"),b.parentNode.appendChild(d))};window.addEventListener("touchend",f)}(),!function(){"use strict";function a(){f[p.id]=document.body.cloneNode(!0)}var b,c=function(){},d=20,e=sessionStorage,f={},g={"slide-in":"slide-out","slide-out":"slide-in",fade:"fade"},h={bartab:".bar-tab",barnav:".bar-nav",barfooter:".bar-footer",barheadersecondary:".bar-header-secondary"},i=function(a,b){p.id=a.id,b&&(a=l(a.id)),e[a.id]=JSON.stringify(a),window.history.replaceState(a.id,a.title,a.url)},j=function(){var a=p.id,b=JSON.parse(e.cacheForwardStack||"[]"),c=JSON.parse(e.cacheBackStack||"[]");for(c.push(a);b.length;)delete e[b.shift()];for(;c.length>d;)delete e[c.shift()];l(p.id).url&&window.history.pushState(null,"",l(p.id).url),e.cacheForwardStack=JSON.stringify(b),e.cacheBackStack=JSON.stringify(c)},k=function(a,b){var c="forward"===b,d=JSON.parse(e.cacheForwardStack||"[]"),f=JSON.parse(e.cacheBackStack||"[]"),g=c?f:d,h=c?d:f;p.id&&g.push(p.id),h.pop(),e.cacheForwardStack=JSON.stringify(d),e.cacheBackStack=JSON.stringify(f)},l=function(a){return JSON.parse(e[a]||null)||{}},m=function(a){var c=u(a.target);if(!(!c||a.which>1||a.metaKey||a.ctrlKey||b||location.protocol!==c.protocol||location.host!==c.host||!c.hash&&/#/.test(c.href)||c.hash&&c.href.replace(c.hash,"")===location.href.replace(location.hash,"")||"push"===c.getAttribute("data-ignore")))return c},n=function(a){var b=m(a);b&&(a.preventDefault(),p({url:b.href,hash:b.hash,timeout:b.getAttribute("data-timeout"),transition:b.getAttribute("data-transition")}))},o=function(a){var b,c,d,i,j,m,n,o,q=a.state;if(q&&e[q]){if(j=p.id]*>([\s\S.]*)<\/head>/i)[0],d.innerHTML=f.match(/]*>([\s\S.]*)<\/body>/i)[0]):(c=d=document.createElement("div"),c.innerHTML=f),e.title=c.querySelector("title")||document.querySelector("title");var g="innerText"in e.title?"innerText":"textContent";return e.title=e.title&&e.title[g].trim(),b.transition?e=w(e,".content",d):e.contents=d,e};window.addEventListener("touchstart",function(){b=!1}),window.addEventListener("touchmove",function(){b=!0}),window.addEventListener("touchend",n),window.addEventListener("click",function(a){m(a)&&a.preventDefault()}),window.addEventListener("popstate",o),window.PUSH=p,window.RATCHET.push=p}(),!function(){"use strict";var a=function(a){for(var b,c=document.querySelectorAll(".segmented-control .control-item");a&&a!==document;a=a.parentNode)for(b=c.length;b--;)if(c[b]===a)return a};window.addEventListener("touchend",function(b){var c,d,e,f=a(b.target),g="active",h="."+g;if(f&&(c=f.parentNode.querySelector(h),c&&c.classList.remove(g),f.classList.add(g),f.hash&&(e=document.querySelector(f.hash)))){d=e.parentNode.querySelectorAll(h);for(var i=0;i .slide-group");a&&a!==document;a=a.parentNode)for(b=c.length;b--;)if(c[b]===a)return a},r=function(){var a=c.style[p].match(/translate3d\(([^,]*)/),b=a?a[1]:0;return parseInt(b,10)},s=function(a){var b=a?0>d?"ceil":"floor":"round";k=Math[b](r()/(m/c.children.length)),k+=a,k=Math.min(k,0),k=Math.max(-(c.children.length-1),k)},t=function(f){if(c=q(f.target)){var k=c.querySelector(".slide");m=k.offsetWidth*c.children.length,l=void 0,j=c.offsetWidth,i=1,g=-(c.children.length-1),h=+new Date,a=f.touches[0].pageX,b=f.touches[0].pageY,d=0,e=0,s(0),c.style[o+"transition-duration"]=0}},u=function(h){h.touches.length>1||!c||(n||(a+=h.touches[0].pageX-a-1),d=h.touches[0].pageX-a,e=h.touches[0].pageY-b,a=h.touches[0].pageX,b=h.touches[0].pageY,"undefined"==typeof l&&n&&(l=Math.abs(e)>Math.abs(d)),l||(f=d/i+r(),h.preventDefault(),i=0===k&&d>0?a/j+1.25:k===g&&0>d?Math.abs(a)/j+1.25:1,c.style[p]="translate3d("+f+"px,0,0)",n=!0))},v=function(a){c&&!l&&(n=!1,s(+new Date-h<1e3&&Math.abs(d)>15?0>d?-1:1:0),f=k*j,c.style[o+"transition-duration"]=".2s",c.style[p]="translate3d("+f+"px,0,0)",a=new CustomEvent("slide",{detail:{slideNumber:Math.abs(k)},bubbles:!0,cancelable:!0}),c.parentNode.dispatchEvent(a))};window.addEventListener("touchstart",t),window.addEventListener("touchmove",u),window.addEventListener("touchend",v)}(),!function(){"use strict";var a={},b=!1,c=!1,d=!1,e=window.RATCHET.getBrowserCapabilities.transform,f=function(a){for(var b,c=document.querySelectorAll(".toggle");a&&a!==document;a=a.parentNode)for(b=c.length;b--;)if(c[b]===a)return a};window.addEventListener("touchstart",function(c){if(c=c.originalEvent||c,d=f(c.target)){var e=d.querySelector(".toggle-handle"),g=d.clientWidth,h=e.clientWidth,i=d.classList.contains("active")?g-h:0;a={pageX:c.touches[0].pageX-i,pageY:c.touches[0].pageY},b=!1}}),window.addEventListener("touchmove",function(f){if(f=f.originalEvent||f,!(f.touches.length>1)&&d){var g=d.querySelector(".toggle-handle"),h=f.touches[0],i=d.clientWidth,j=g.clientWidth,k=i-j;if(b=!0,c=h.pageX-a.pageX,!(Math.abs(c)c)return g.style[e]="translate3d(0,0,0)";if(c>k)return g.style[e]="translate3d("+k+"px,0,0)";g.style[e]="translate3d("+c+"px,0,0)",d.classList[c>i/2-j/2?"add":"remove"]("active")}}}),window.addEventListener("touchend",function(a){if(d){var f=d.querySelector(".toggle-handle"),g=d.clientWidth,h=f.clientWidth,i=g-h,j=!b&&!d.classList.contains("active")||b&&c>g/2-h/2;j?f.style[e]="translate3d("+i+"px,0,0)":f.style[e]="translate3d(0,0,0)",d.classList[j?"add":"remove"]("active"),a=new CustomEvent("toggle",{detail:{isActive:j},bubbles:!0,cancelable:!0}),d.dispatchEvent(a),b=!1,d=!1}})}();
+//# sourceMappingURL=ratchet.min.js.map
\ No newline at end of file
diff --git a/dist/js/ratchet.min.js.map b/dist/js/ratchet.min.js.map
new file mode 100644
index 000000000..662bd01df
--- /dev/null
+++ b/dist/js/ratchet.min.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["ratchet.js"],"names":["window","CustomEvent","type","config","e","document","createEvent","initCustomEvent","bubbles","cancelable","detail","RATCHET","getBrowserCapabilities","styles","getComputedStyle","documentElement","pre","Array","prototype","slice","call","join","match","OLink","prefix","transform","toUpperCase","substr","getTransitionEnd","el","createElement","transEndEventNames","WebkitTransition","MozTransition","OTransition","transition","name","undefined","style","findModals","target","i","modals","querySelectorAll","parentNode","length","getModal","event","modalToggle","hash","querySelector","addEventListener","modal","classList","contains","eventToDispatch","dispatchEvent","toggle","preventDefault","popover","findPopovers","popovers","onPopoverHidden","display","removeEventListener","backdrop","element","add","remove","removeChild","getPopover","anchor","indexOf","error","showHidePopover","offsetHeight","appendChild","cacheCurrentContent","domCache","PUSH","id","body","cloneNode","isScrolling","noop","maxCacheLength","cacheMapping","sessionStorage","transitionMap","slide-in","slide-out","fade","bars","bartab","barnav","barfooter","barheadersecondary","cacheReplace","data","updates","getCached","JSON","stringify","history","replaceState","title","url","cachePush","cacheForwardStack","parse","cacheBackStack","push","shift","pushState","cachePop","direction","forward","pushStack","popStack","pop","getTarget","findTarget","which","metaKey","ctrlKey","location","protocol","host","test","href","replace","getAttribute","touchend","timeout","popstate","key","barElement","activeObj","activeDom","transitionFrom","transitionFromObj","state","ignorePush","extendWithDom","hasOwnProperty","swapContent","contents","triggerStateChange","options","xhr","container","isFileProtocol","readyState","onreadystatechange","abort","XMLHttpRequest","open","setRequestHeader","_timeout","clearTimeout","status","success","failure","Date","setTimeout","send","parseXHR","locationReplace","_gaq","Error","swap","complete","enter","containerDirection","swapDirection","insertBefore","innerHTML","offsetWidth","fadeContainerEnd","fadeSwapEnd","slideEnd","toggles","obj","fragment","dom","result","Object","keys","forEach","head","responseText","text","trim","segmentedControls","activeTab","activeBodies","targetBody","targetTab","className","classSelector","pageX","pageY","slider","deltaX","deltaY","offsetX","lastSlide","startTime","resistance","sliderWidth","slideNumber","scrollableArea","startedMoving","transformPrefix","transformProperty","getSlider","sliders","getScroll","translate3d","ret","parseInt","setSlideNumber","offset","round","Math","children","min","max","onTouchStart","firstItem","touches","onTouchMove","abs","onTouchEnd","start","touchMove","distanceX","findToggle","originalEvent","handle","toggleWidth","clientWidth","handleWidth","current","slideOn","isActive"],"mappings":"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","file":"ratchet.min.js"}
\ No newline at end of file
diff --git a/dist/ratchet.css b/dist/ratchet.css
deleted file mode 100644
index 9d025afc4..000000000
--- a/dist/ratchet.css
+++ /dev/null
@@ -1,1286 +0,0 @@
-/**
- * ==================================
- * Ratchet v1.0.1
- * Licensed under The MIT License
- * http://opensource.org/licenses/MIT
- * ==================================
- */
-
-/* Hard reset
--------------------------------------------------- */
-
-html,
-body,
-div,
-span,
-iframe,
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-p,
-blockquote,
-pre,
-a,
-abbr,
-acronym,
-address,
-big,
-cite,
-code,
-del,
-dfn,
-em,
-img,
-ins,
-kbd,
-q,
-s,
-samp,
-small,
-strike,
-strong,
-sub,
-sup,
-tt,
-var,
-b,
-u,
-i,
-center,
-dl,
-dt,
-dd,
-ol,
-ul,
-li,
-fieldset,
-form,
-label,
-legend,
-table,
-caption,
-tbody,
-tfoot,
-thead,
-tr,
-th,
-td,
-article,
-aside,
-canvas,
-details,
-embed,
-figure,
-figcaption,
-footer,
-header,
-hgroup,
-menu,
-nav,
-output,
-section,
-summary,
-time,
-audio,
-video {
- padding: 0;
- margin: 0;
- border: 0;
-}
-
-/* Prevents iOS text size adjust after orientation change, without disabling (Thanks to @necolas) */
-html {
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-
-/* Base styles
--------------------------------------------------- */
-
-body {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- font: 14px/1.25 "Helvetica Neue", sans-serif;
- color: #222;
- background-color: #fff;
-}
-
-/* Universal link styling */
-a {
- color: #0882f0;
- text-decoration: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Removes the dark touch outlines on links */
-}
-
-/* Wrapper to be used around all content not in .bar-title and .bar-tab */
-.content {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- overflow: auto;
- background-color: #fff;
- -webkit-transition-property: top, bottom;
- transition-property: top, bottom;
- -webkit-transition-duration: .2s, .2s;
- transition-duration: .2s, .2s;
- -webkit-transition-timing-function: linear, linear;
- transition-timing-function: linear, linear;
- -webkit-overflow-scrolling: touch;
-}
-
-/* Hack to force all relatively and absolutely positioned elements still render while scrolling
- Note: This is a bug for "-webkit-overflow-scrolling: touch" */
-.content > * {
- -webkit-transform: translateZ(0px);
- transform: translateZ(0px);
-}
-
-/* Utility wrapper to pad in components like forms, block buttons and segmented-controllers so they're not full-bleed */
-.content-padded {
- padding: 10px;
-}
-
-/* Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab.
- Note: For these to work, content must come after both bars in the markup */
-.bar-title ~ .content {
- top: 44px;
-}
-.bar-tab ~ .content {
- bottom: 51px;
-}
-.bar-header-secondary ~ .content {
- top: 88px;
-}/* General bar styles
--------------------------------------------------- */
-
-[class*="bar-"] {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 10;
- height: 44px;
- padding: 5px;
- box-sizing: border-box;
-}
-
-/* Modifier class to dock any bar below .bar-title */
-.bar-header-secondary {
- top: 45px;
-}
-
-/* Modifier class to dock any bar to bottom of viewport */
-.bar-footer {
- bottom: 0;
-}
-
-/* Generic bar for wrapping buttons, segmented controllers, etc. */
-.bar-standard {
- background-color: #f2f2f2;
- background-image: -webkit-linear-gradient(top, #f2f2f2 0, #e5e5e5 100%);
- background-image: linear-gradient(to bottom, #f2f2f2 0, #e5e5e5 100%);
- border-bottom: 1px solid #aaa;
- box-shadow: inset 0 1px 1px -1px #fff;
-}
-
-/* Flip border position to top for footer bars */
-.bar-footer.bar-standard,
-.bar-footer-secondary.bar-standard {
- border-top: 1px solid #aaa;
- border-bottom-width: 0;
-}
-
-/* Title bar
--------------------------------------------------- */
-
-/* Bar docked to top of viewport for showing page title and actions */
-.bar-title {
- top: 0;
- display: -webkit-box;
- display: box;
- background-color: #1eb0e9;
- background-image: -webkit-linear-gradient(top, #1eb0e9 0, #109adc 100%);
- background-image: linear-gradient(to bottom, #1eb0e9 0, #109adc 100%);
- border-bottom: 1px solid #0e5895;
- box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, .8);
- -webkit-box-orient: horizontal;
- box-orient: horizontal;
-}
-
-/* Centered text in the .bar-title */
-.bar-title .title {
- position: absolute;
- top: 0;
- left: 0;
- display: block;
- width: 100%;
- font-size: 20px;
- font-weight: bold;
- line-height: 44px;
- color: #fff;
- text-align: center;
- text-shadow: 0 -1px rgba(0, 0, 0, .5);
- white-space: nowrap;
-}
-
-.bar-title > a:not([class*="button"]) {
- display: block;
- width: 100%;
- height: 100%;
-}
-
-/* Retain specified title color */
-.bar-title .title a {
- color: inherit;
-}
-
-/* Tab bar
--------------------------------------------------- */
-
-/* Bar docked to bottom used for primary app navigation */
-.bar-tab {
- bottom: 0;
- height: 50px;
- padding: 0;
- background-color: #393939;
- background-image: -webkit-linear-gradient(top, #393939 0, #2b2b2b 100%);
- background-image: linear-gradient(to bottom, #393939 0, #2b2b2b 100%);
- border-top: 1px solid #000;
- border-bottom-width: 0;
- box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, .6);
-}
-
-/* Wrapper for individual tab */
-.tab-inner {
- display: -webkit-box;
- display: box;
- height: 100%;
- list-style: none;
- -webkit-box-orient: horizontal;
- box-orient: horizontal;
-}
-
-/* Navigational tab */
-.tab-item {
- height: 100%;
- padding-top: 9px;
- text-align: center;
- box-sizing: border-box;
- -webkit-box-flex: 1;
- box-flex: 1;
-}
-
-/* Active state for tab */
-.tab-item.active {
- box-shadow: inset 0 0 20px rgba(0, 0, 0, .5);
-}
-
-/* Icon for tab */
-.tab-icon {
- display: block;
- height: 18px;
- margin: 0 auto;
-}
-
-/* Label for tab */
-.tab-label {
- margin-top: 1px;
- font-size: 10px;
- font-weight: bold;
- color: #fff;
- text-shadow: 0 1px rgba(0, 0, 0, .3);
-}
-
-/* Buttons in title bars
--------------------------------------------------- */
-
-/* Generic style for all buttons in .bar-title */
-.bar-title [class*="button"] {
- position: relative;
- z-index: 10; /* Places buttons over full width title */
- font-size: 12px;
- line-height: 23px;
- color: #fff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
- background-color: #1eb0e9;
- background-image: -webkit-linear-gradient(top, #1eb0e9 0, #0984c6 100%);
- background-image: linear-gradient(to bottom, #1eb0e9 0, #0984c6 100%);
- border: 1px solid #0e5895;
- box-shadow: 0 1px rgba(255, 255, 255, .25);
- -webkit-box-flex: 0;
- box-flex: 0;
-}
-
-
-/* Hacky way to right align buttons outside of flex-box system
- Note: is only absolutely positioned button, would be better if flex-box had an "align right" option */
-.bar-title .title + [class*="button"]:last-child,
-.bar-title .button + [class*="button"]:last-child,
-.bar-title [class*="button"].pull-right {
- position: absolute;
- top: 5px;
- right: 5px;
-}
-
-/* Override standard button active states */
-.bar-title .button:active {
- color: #fff;
- background-color: #0876b1;
-}
-
-/* Directional buttons in title bars (thanks to @GregorAdams for solution - http://cssnerd.com/2011/11/30/the-best-pure-css3-ios-style-arrow-back-button/)
--------------------------------------------------- */
-
-/* Add relative positioning so :before content is positioned properly */
-.bar-title .button-prev,
-.bar-title .button-next {
- position: relative;
-}
-
-/* Prev/next button base styles */
-.bar-title .button-prev {
- margin-left: 7px; /* Push over to make room for :before content */
- border-left: 0;
- border-bottom-left-radius: 10px 15px;
- border-top-left-radius: 10px 15px;
-}
-.bar-title .button-next {
- margin-right: 7px; /* Push over to make room for :before content */
- border-right: 0;
- border-top-right-radius: 10px 15px;
- border-bottom-right-radius: 10px 15px;
-}
-
-/* Pointed part of directional button */
-.bar-title .button-prev:before,
-.bar-title .button-next:before {
- position: absolute;
- top: 2px;
- width: 27px;
- height: 27px;
- border-radius: 30px 100px 2px 40px / 2px 40px 30px 100px;
- content: '';
- box-shadow: inset 1px 0 #0e5895, inset 0 1px #0e5895;
- -webkit-mask-image: -webkit-gradient(linear, left top, right bottom, from(#000), color-stop(.33, #000), color-stop(.5, transparent), to(transparent));
- mask-image: gradient(linear, left top, right bottom, from(#000), color-stop(.33, #000), color-stop(.5, transparent), to(transparent));
-}
-.bar-title .button-prev:before {
- left: -5px;
- background-image: -webkit-gradient(linear, left bottom, right top, from(#0984c6), to(#1eb0e9));
- background-image: gradient(linear, left bottom, right top, from(#0984c6), to(#1eb0e9));
- border-left: 1.5px solid rgba(255, 255, 255, .25);
- -webkit-transform: rotate(-45deg) skew(-10deg, -10deg);
- transform: rotate(-45deg) skew(-10deg, -10deg);
-}
-.bar-title .button-next:before {
- right: -5px;
- background-image: -webkit-gradient(linear, left bottom, right top, from(#1eb0e9), to(#0984c6));
- background-image: gradient(linear, left bottom, right top, from(#1eb0e9), to(#0984c6));
- border-top: 1.5px solid rgba(255, 255, 255, .25);
- -webkit-transform: rotate(135deg) skew(-10deg, -10deg);
- transform: rotate(135deg) skew(-10deg, -10deg);
-}
-
-/* Active states for the directional buttons */
-.bar-title .button-prev:active,
-.bar-title .button-next:active,
-.bar-title .button-prev:active:before,
-.bar-title .button-next:active:before {
- color: #fff;
- background-color: #0876b1;
- background-image: none;
-}
-.bar-title .button-prev:active:before,
-.bar-title .button-next:active:before {
- content: '';
-}
-.bar-title .button-prev:active:before {
- box-shadow: inset 0 3px 3px rgba(0, 0, 0, .2);
-}
-.bar-title .button-next:active:before {
- box-shadow: inset 0 -3px 3px rgba(0, 0, 0, .2);
-}
-
-/* Block buttons in any bar
--------------------------------------------------- */
-
-/* Add proper padding and replace buttons normal dropshadow with a shine from bar */
-[class*="bar"] .button-block {
- padding: 7px 0;
- margin-bottom: 0;
- box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), 0 1px rgba(255, 255, 255, .8);
-}
-
-/* Override standard padding changes for .button-blocks */
-[class*="bar"] .button-block:active {
- padding: 7px 0;
-}
-
-/* Segmented controller in any bar
--------------------------------------------------- */
-
-/* Remove standard segmented bottom margin */
-[class*="bar-"] .segmented-controller {
- margin-bottom: 0;
-}
-
-/* Add margins between segmented controllers and buttons */
-[class*="bar-"] .segmented-controller + [class*="button"],
-[class*="bar-"] [class*="button"] + .segmented-controller {
- margin-left: 5px;
-}
-
-/* Segmented controller in a title bar
--------------------------------------------------- */
-
-.bar-title .segmented-controller {
- line-height: 18px;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
- background-color: #1eb0e9;
- background-image: -webkit-linear-gradient(top, #1eb0e9 0, #0984c6 100%);
- background-image: linear-gradient(to bottom, #1eb0e9 0, #0984c6 100%);
- border: 1px solid #0e5895;
- border-radius: 3px;
- box-shadow: 0 1px rgba(255, 255, 255, .25);
- -webkit-box-flex: 1;
- box-flex: 1;
-}
-
-/* Set color for tab border and highlight */
-.bar-title .segmented-controller li {
- border-left: 1px solid #0e5895;
- box-shadow: inset 1px 0 rgba(255, 255, 255, .25);
-}
-
-/* Remove inset shadow from first tab or one to the right of the active tab */
-.bar-title .segmented-controller .active + li,
-.bar-title .segmented-controller li:first-child {
- box-shadow: none;
-}
-
-/* Remove left-hand border from first tab */
-.bar-title .segmented-controller li:first-child {
- border-left-width: 0;
-}
-
-/* Depressed state (active) */
-.bar-title .segmented-controller li.active {
- background-color: #0082c4;
- box-shadow: inset 0 1px 6px rgba(0, 0, 0, .3);
-}
-
-/* Set color of links to white */
-.bar-title .segmented-controller li > a {
- color: #fff;
-}
-
-
-/* Search forms in standard bar
--------------------------------------------------- */
-
-/* Position/size search bar within the bar */
-.bar-standard input[type=search] {
- height: 32px;
- margin: 0;
-}/* Lists
--------------------------------------------------- */
-
-/* Remove usual bullet styles from list */
-.list {
- margin-bottom: 10px;
- list-style: none;
- background-color: #fff;
-}
-
-/* Pad each list item and add dividers */
-.list li {
- position: relative;
- padding: 20px 60px 20px 10px; /* Given extra right padding to accomodate counts, chevrons or buttons */
- border-bottom: 1px solid rgba(0, 0, 0, .1);
-}
-
-/* Give top border to first list items */
-.list li:first-child {
- border-top: 1px solid rgba(0, 0, 0, .1);
-}
-
-/* If a list of links, make sure the child takes up full list item tap area (want to avoid selecting child buttons though) */
-.list li > a:not([class*="button"]) {
- position: relative;
- display: block;
- padding: inherit;
- margin: -20px -60px -20px -10px;
- color: inherit;
-}
-
-/* Inset list
--------------------------------------------------- */
-
-.list.inset {
- width: auto;
- margin-right: 10px;
- margin-left: 10px;
- border: 1px solid rgba(0, 0, 0, .1);
- border-radius: 6px;
- box-sizing: border-box;
-}
-
-/* Remove border from first/last standard list items to avoid double border at top/bottom of lists */
-.list.inset li:first-child {
- border-top-width: 0;
-}
-.list.inset li:last-child {
- border-bottom-width: 0;
-}
-
-
-/* List dividers
--------------------------------------------------- */
-
-.list .list-divider {
- position: relative;
- top: -1px;
- padding-top: 6px;
- padding-bottom: 6px;
- font-size: 12px;
- font-weight: bold;
- line-height: 18px;
- text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
- background-color: #f8f8f8;
- background-image: -webkit-linear-gradient(top, #f8f8f8 0, #eee 100%);
- background-image: linear-gradient(to bottom, #f8f8f8 0, #eee 100%);
- border-top: 1px solid rgba(0, 0, 0, .1);
- border-bottom: 1px solid rgba(0, 0, 0, .1);
- box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4);
-}
-
-/* Rounding first divider on inset lists and remove border on the top */
-.list.inset .list-divider:first-child {
- top: 0;
- border-top-width: 0;
- border-radius: 6px 6px 0 0;
-}
-
-/* Rounding last divider on inset lists */
-.list.inset .list-divider:last-child {
- border-radius: 0 0 6px 6px;
-}
-
-/* Right-aligned subcontent in lists (chevrons, buttons, counts and toggles)
--------------------------------------------------- */
-.list .chevron,
-.list [class*="button"],
-.list [class*="count"],
-.list .toggle {
- position: absolute;
- top: 50%;
- right: 10px;
-}
-
- /* Position chevrons/counts vertically centered on the right in list items */
-.list .chevron,
-.list [class*="count"] {
- margin-top: -10px; /* Half height of chevron */
-}
-
-/* Push count over if there's a sibling chevron */
-.list .chevron + [class*="count"] {
- right: 30px;
-}
-
-/* Position buttons vertically centered on the right in list items */
-.list [class*="button"] {
- left: auto;
- margin-top: -14px; /* Half height of button */
-}
-
-.list .toggle {
- margin-top: -15px; /* Half height of toggle */
-}/* Forms
--------------------------------------------------- */
-
-/* Force form elements to inherit font styles */
-input,
-textarea,
-button,
-select {
- font-family: inherit;
- font-size: inherit;
-}
-
-/* Stretch inputs/textareas to full width and add height to maintain a consistent baseline */
-select,
-textarea,
-input[type="text"],
-input[type=search],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="tel"],
-input[type="color"],
-.input-group {
- width: 100%;
- height: 40px;
- padding: 10px;
- margin-bottom: 10px;
- background-color: #fff;
- border: 1px solid rgba(0, 0, 0, .2);
- border-radius: 3px;
- box-shadow: 0 1px 1px rgba(255, 255, 255, .2), inset 0 1px 1px rgba(0, 0, 0, .1);
- -webkit-appearance: none;
- box-sizing: border-box;
-}
-
-/* Fully round search input */
-input[type=search] {
- height: 34px;
- font-size: 14px;
- border-radius: 30px;
-}
-
-/* Allow text area's height to grow larger than a normal input */
-textarea {
- height: auto;
-}
-
-/* Style select button to look like part of the Ratchet's style */
-select {
- height: auto;
- font-size: 14px;
- background-color: #f8f8f8;
- background-image: -webkit-linear-gradient(top, #f8f8f8 0%, #d4d4d4 100%);
- background-image: linear-gradient(to bottom, #f8f8f8 0%, #d4d4d4 100%);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
-}
-
-
-/* Input groups (cluster multiple inputs together into a single group)
--------------------------------------------------- */
-
-/* Reset from initial form setup styles */
-.input-group {
- width: auto;
- height: auto;
- padding: 0;
-}
-
-/* Remove spacing, borders, shadows and rounding since it all belongs on the .input-group not the input */
-.input-group input {
- margin-bottom: 0;
- background-color: transparent;
- border: 0;
- border-bottom: 1px solid rgba(0, 0, 0, .2);
- border-radius: 0;
- box-shadow: none;
-}
-
-/* Remove bottom border on last input to avoid double bottom border */
-.input-group input:last-child {
- border-bottom-width: 0;
-}
-
-/* Input groups with labels
--------------------------------------------------- */
-
-/* To use labels with input groups, wrap a label and an input in an .input-row */
-.input-row {
- overflow: hidden;
- border-bottom: 1px solid rgba(0, 0, 0, .2);
-}
-
-/* Remove bottom border on last input-row to avoid double bottom border */
-.input-row:last-child {
- border-bottom-width: 0;
-}
-
-/* Labels get floated left with a set percentage width */
-.input-row label {
- float: left;
- width: 25%;
- padding: 11px 10px 9px 13px; /* Optimizing the baseline for mobile. */
- font-weight: bold;
-}
-
-/* Actual inputs float to right of labels and also have a set percentage */
-.input-row label + input {
- float: right;
- width: 65%;
- padding-left: 0;
- margin-bottom: 0;
- border-bottom: 0;
-}/* General button styles
--------------------------------------------------- */
-
-[class*="button"] {
- position: relative;
- display: inline-block;
- padding: 4px 12px;
- margin: 0;
- font-weight: bold;
- line-height: 18px;
- color: #333;
- text-align: center;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
- vertical-align: top;
- cursor: pointer;
- background-color: #f8f8f8;
- background-image: -webkit-linear-gradient(top, #f8f8f8 0, #d4d4d4 100%);
- background-image: linear-gradient(to bottom, #f8f8f8 0, #d4d4d4 100%);
- border: 1px solid rgba(0, 0, 0, .3);
- border-radius: 3px;
- box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), 0 1px 2px rgba(0, 0, 0, .05);
-}
-
-/* Active */
-[class*="button"]:active {
- padding-top: 5px;
- padding-bottom: 3px;
- color: #333;
- background-color: #ccc;
- background-image: none;
- box-shadow: inset 0 3px 3px rgba(0, 0, 0, .2);
-}
-
-/* Button modifiers
--------------------------------------------------- */
-
-/* Overriding styles for buttons with modifiers */
-.button-main,
-.button-positive,
-.button-negative {
- color: #fff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
-}
-
-/* Main button */
-.button-main {
- background-color: #1eafe7;
- background-image: -webkit-linear-gradient(top, #1eafe7 0, #1a97c8 100%);
- background-image: linear-gradient(to bottom, #1eafe7 0, #1a97c8 100%);
- border: 1px solid #117aaa;
-}
-
-/* Positive button */
-.button-positive {
- background-color: #34ba15;
- background-image: -webkit-linear-gradient(top, #34ba15 0, #2da012 100%);
- background-image: linear-gradient(to bottom, #34ba15 0, #2da012 100%);
- border: 1px solid #278f0f;
-}
-
-/* Negative button */
-.button-negative {
- background-color: #e71e1e;
- background-image: -webkit-linear-gradient(top, #e71e1e 0,#c71a1a 100%);
- background-image: linear-gradient(to bottom, #e71e1e 0, #c71a1a 100%);
- border: 1px solid #b51a1a;
-}
-
-/* Active state for buttons with modifiers */
-.button-main:active,
-.button-positive:active,
-.button-negative:active {
- color: #fff;
-}
-.button-main:active {
- background-color: #0876b1;
-}
-.button-positive:active {
- background-color: #298f11;
-}
-.button-negative:active {
- background-color: #b21a1a;
-}
-
-/* Block level buttons (full width buttons) */
-.button-block {
- display: block;
- padding: 11px 0 13px;
- margin-bottom: 10px;
- font-size: 16px;
-}
-
-/* Active state for block level buttons */
-.button-block:active {
- padding: 12px 0;
-}
-
-/* Counts in buttons
--------------------------------------------------- */
-
-/* Generic styles for all counts within buttons */
-[class*="button"] [class*="count"] {
- padding-top: 2px;
- padding-bottom: 2px;
- margin-right: -4px;
- margin-left: 4px;
- text-shadow: none;
- background-color: rgba(0, 0, 0, .2);
- box-shadow: inset 0 1px 1px -1px #000000, 0 1px 1px -1px #fff;
-}
-
-/* Position counts within block level buttons
- Note: These are absolutely positioned so that text of button isn't "pushed" by count and always
- stays at true center of button */
-.button-block [class*="count"] {
- position: absolute;
- right: 0;
- padding-top: 4px;
- padding-bottom: 4px;
- margin-right: 10px;
-}/* Chevrons
--------------------------------------------------- */
-
-.chevron {
- display: block;
- height: 20px;
-}
-
-/* Base styles for both 1/2's of the chevron */
-.chevron:before,
-.chevron:after {
- position: relative;
- display: block;
- width: 12px;
- height: 4px;
- background-color: #999;
- content: '';
-}
-
-/* Position and rotate respective 1/2's of the chevron */
-.chevron:before {
- top: 5px;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-.chevron:after {
- top: 7px;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
-}/* General count styles
--------------------------------------------------- */
-
-[class*="count"] {
- display: inline-block;
- padding: 4px 9px;
- font-size: 12px;
- font-weight: bold;
- line-height: 13px;
- color: #fff;
- background-color: rgba(0, 0, 0, .3);
- border-radius: 100px;
-}
-
-/* Count modifiers
--------------------------------------------------- */
-
-/* Overriding styles for counts with modifiers */
-.count-main,
-.count-positive,
-.count-negative {
- color: #fff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
-}
-
-/* Main count */
-.count-main {
- background-color: #1eafe7;
- background-image: -webkit-linear-gradient(top, #1eafe7 0, #1a97c8 100%);
- background-image: linear-gradient(to bottom, #1eafe7 0, #1a97c8 100%);
-}
-
-/* Positive count */
-.count-positive {
- background-color: #34ba15;
- background-image: -webkit-linear-gradient(top, #34ba15 0, #2da012 100%);
- background-image: linear-gradient(to bottom, #34ba15 0, #2da012 100%);
-}
-
-/* Negative count */
-.count-negative {
- background-color: #e71e1e;
- background-image: -webkit-linear-gradient(top, #e71e1e 0,#c71a1a 100%);
- background-image: linear-gradient(to bottom, #e71e1e 0, #c71a1a 100%);
-}/* Segmented controllers
--------------------------------------------------- */
-
-.segmented-controller {
- display: -webkit-box;
- display: box;
- margin-bottom: 10px;
- overflow: hidden;
- font-size: 12px;
- font-weight: bold;
- text-shadow: 0 1px rgba(255, 255, 255, .5);
- list-style: none;
- background-color: #f8f8f8;
- background-image: -webkit-linear-gradient(top, #f8f8f8 0, #d4d4d4 100%);
- background-image: linear-gradient(to bottom, #f8f8f8 0, #d4d4d4 100%);
- border: 1px solid #aaa;
- border-radius: 3px;
- box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(255, 255, 255, .8);
- -webkit-box-orient: horizontal;
- box-orient: horizontal;
-}
-
-/* Section within controller */
-.segmented-controller li {
- overflow: hidden;
- text-align: center;
- white-space: nowrap;
- border-left: 1px solid #aaa;
- box-shadow: inset 1px 0 rgba(255, 255, 255, .5);
- -webkit-box-flex: 1;
- box-flex: 1;
-}
-
-/* Link that fills each section */
-.segmented-controller li > a {
- display: block;
- padding: 8px 16px;
- overflow: hidden;
- line-height: 15px;
- color: #333;
- text-overflow: ellipsis;
-}
-
-/* Remove border-left and shadow from first section */
-.segmented-controller li:first-child {
- border-left-width: 0;
- box-shadow: none;
-}
-
-/* Active segment of controller */
-.segmented-controller li.active {
- background-color: #ccc;
- box-shadow: inset 0 1px 5px rgba(0, 0, 0, .3);
-}
-
-.segmented-controller-item {
- display: none;
-}
-
-.segmented-controller-item.active {
- display: block;
-}/* Popovers (to be used with popovers.js)
--------------------------------------------------- */
-
-.popover {
- position: fixed;
- top: 55px;
- left: 50%;
- z-index: 20;
- display: none;
- width: 280px;
- padding: 5px;
- margin-left: -146px;
- background-color: #555;
- background-image: -webkit-linear-gradient(top, #555 5%, #555 6%, #111 30%);
- background-image: linear-gradient(to bottom, #555 5%, #555 6%,#111 30%);
- border: 1px solid #111;
- border-radius: 6px;
- opacity: 0;
- box-shadow: inset 0 1px 1px -1px #fff, 0 3px 10px rgba(0, 0, 0, .3);
- -webkit-transform: translate3d(0, -15px, 0);
- transform: translate3d(0, -15px, 0);
- -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
- transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
-}
-
-/* Caret on top of popover using CSS triangles (thanks to @chriscoyier for solution) */
-.popover:before,
-.popover:after {
- position: absolute;
- left: 50%;
- width: 0;
- height: 0;
- content: '';
-}
-.popover:before {
- top: -20px;
- margin-left: -21px;
- border-right: 21px solid transparent;
- border-bottom: 21px solid #111;
- border-left: 21px solid transparent;
-}
-.popover:after {
- top: -19px;
- margin-left: -20px;
- border-right: 20px solid transparent;
- border-bottom: 20px solid #555;
- border-left: 20px solid transparent;
-}
-
-/* Wrapper for a title and buttons */
-.popover-header {
- display: -webkit-box;
- display: box;
- height: 34px;
- margin-bottom: 5px;
-}
-
-/* Centered title for popover */
-.popover-header .title {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- margin: 15px 0;
- font-size: 16px;
- font-weight: bold;
- line-height: 12px;
- color: #fff;
- text-align: center;
- text-shadow: 0 -1px rgba(0, 0, 0, .5);
-}
-
-/* Generic style for all buttons in .popover-header */
-.popover-header [class*="button"] {
- z-index: 25;
- font-size: 12px;
- line-height: 22px;
- color: #fff;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
- background-color: #454545;
- background-image: -webkit-linear-gradient(top, #454545 0, #353535 100%);
- background-image: linear-gradient(to bottom, #454545 0, #353535 100%);
- border: 1px solid #111;
- -webkit-box-flex: 0;
- box-flex: 0;
-}
-
-/* Hacky way to right align buttons outside of flex-box system
- Note: is only absolutely positioned button, would be better if flex-box had an "align right" option */
-.popover-header .title + [class*="button"]:last-child,
-.popover-header .button + [class*="button"]:last-child,
-.popover-header [class*="button"].pull-right {
- position: absolute;
- top: 5px;
- right: 5px;
-}
-
-/* Active state for popover header buttons */
-.popover-header .button:active {
- color: #fff;
- background-color: #0876b1;
-}
-
-/* Popover animation
--------------------------------------------------- */
-
-.popover.visible {
- opacity: 1;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}
-
-/* Backdrop (used as invisible touch escape)
--------------------------------------------------- */
-
-.backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 10;
-}
-
-/* Block level buttons in popovers
--------------------------------------------------- */
-
-/* Positioning and giving darker border to look sharp against dark popover */
-.popover .button-block {
- margin-bottom: 5px;
- border: 1px solid #111;
-}
-
-/* Remove extra margin on bottom of last button */
-.popover .button-block:last-child {
- margin-bottom: 0;
-}
-
-/* Lists in popovers
--------------------------------------------------- */
-
-.popover .list {
- width: auto;
- max-height: 250px;
- margin-right: 0;
- margin-bottom: 0;
- margin-left: 0;
- overflow: auto;
- background-color: #fff;
- border: 1px solid #000;
- border-radius: 3px;
- -webkit-overflow-scrolling: touch;
-}/* Modals
--------------------------------------------------- */
-.modal {
- position: fixed;
- top: 0;
- opacity: 0;
- z-index: 11;
- width: 100%;
- min-height: 100%;
- overflow: hidden;
- background-color: #fff;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- -webkit-transition: -webkit-transform .25s ease-in-out, opacity 1ms .25s;
- transition: transform .25s ease-in-out, opacity 1ms .25s;
-}
-
-/* Modal - When active
--------------------------------------------------- */
-.modal.active {
- opacity: 1;
- height: 100%;
- -webkit-transition: -webkit-transform .25s ease-in-out;
- transition: transform .25 ease-in-out;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
-}/* Slider styles (to be used with sliders.js)
--------------------------------------------------- */
-
-/* Width/height of slider */
-.slider,
-.slider > li {
- width: 100%;
- height: 200px;
-}
-
-/* Outer wrapper for slider */
-.slider {
- overflow: hidden;
- background-color: #000;
-}
-
-/* Inner wrapper for slider (width of all slides together) */
-.slider > ul {
- position: relative;
- font-size: 0; /* Remove spaces from inline-block children */
- white-space: nowrap;
- -webkit-transition: all 0 linear;
- transition: all 0 linear;
-}
-
-/* Individual slide */
-.slider > ul > li {
- display: inline-block;
- vertical-align: top; /* Ensure that li always aligns to top */
- width: 100%;
- height: 100%;
-}
-
-/* Required reset of font-size to same as standard body */
-.slider > ul > li > * {
- font-size: 14px;
-}/* Toggle styles (to be used with toggles.js)
--------------------------------------------------- */
-
-.toggle {
- position: relative;
- width: 75px;
- height: 28px;
- background-color: #eee;
- border: 1px solid #bbb;
- border-radius: 20px;
- box-shadow: inset 0 0 4px rgba(0, 0, 0, .1);
-}
-
-/* Text indicating "on" or "off". Default is "off" */
-.toggle:before {
- position: absolute;
- right: 13px;
- font-weight: bold;
- line-height: 28px;
- color: #777;
- text-shadow: 0 1px #fff;
- text-transform: uppercase;
- content: "Off";
-}
-
-/* Sliding handle */
-.toggle-handle {
- position: absolute;
- top: -1px;
- left: -1px;
- z-index: 2;
- width: 28px;
- height: 28px;
- background-color: #fff;
- background-image: -webkit-linear-gradient(top, #fff 0, #f2f2f2 100%);
- background-image: linear-gradient(to bottom, #fff 0, #f2f2f2 100%);
- border: 1px solid rgba(0, 0, 0, .2);
- border-radius: 100px;
- -webkit-transition: -webkit-transform 0.1s ease-in-out, border 0.1s ease-in-out;
- transition: transform 0.1s ease-in-out, border 0.1s ease-in-out;
-}
-
-/* Active state for toggle */
-.toggle.active {
- background-color: #19a8e4;
- background-image: -webkit-linear-gradient(top, #088cd4 0, #19a8e4 100%);
- background-image: linear-gradient(to bottom, #088cd4 0, #19a8e4 100%);
- border: 1px solid #096c9d;
- box-shadow: inset 0 0 15px rgba(255, 255, 255, .25);
-}
-
-/* Active state for toggle handle */
-.toggle.active .toggle-handle {
- border-color: #0a76ad;
- -webkit-transform: translate3d(48px,0,0);
- transform: translate3d(48px,0,0);
-}
-
-/* Change "off" to "on" for active state */
-.toggle.active:before {
- right: auto;
- left: 15px;
- color: #fff;
- text-shadow: 0 -1px rgba(0, 0, 0, 0.25);
- content: "On";
-}/* Push styles (to be used with push.js)
--------------------------------------------------- */
-
-/* Fade animation */
-.content.fade {
- left: 0;
- opacity: 0;
- -webkit-transition: opacity .2s ease-in-out;
- transition: opacity .2s ease-in-out;
-}
-.content.fade.in {
- opacity: 1;
-}
-
-/* Slide animation */
-.content.slide {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- -webkit-transition: -webkit-transform .25s ease-in-out;
- transition: transform .25s ease-in-out;
-}
-.content.slide.left {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
-}
-.content.slide.right {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
-}
\ No newline at end of file
diff --git a/dist/ratchet.js b/dist/ratchet.js
deleted file mode 100644
index 084a559ae..000000000
--- a/dist/ratchet.js
+++ /dev/null
@@ -1,765 +0,0 @@
-/**
- * ==================================
- * Ratchet v1.0.1
- * Licensed under The MIT License
- * http://opensource.org/licenses/MIT
- * ==================================
- */
-
-/* ----------------------------------
- * MODAL v1.0.0
- * Licensed under The MIT License
- * http://opensource.org/licenses/MIT
- * ---------------------------------- */
-
-!function () {
- var findModals = function (target) {
- var i;
- var modals = document.querySelectorAll('a');
- for (; target && target !== document; target = target.parentNode) {
- for (i = modals.length; i--;) { if (modals[i] === target) return target; }
- }
- };
-
- var getModal = function (event) {
- var modalToggle = findModals(event.target);
- if (modalToggle && modalToggle.hash) return document.querySelector(modalToggle.hash);
- };
-
- window.addEventListener('touchend', function (event) {
- var modal = getModal(event);
- if (modal) modal.classList.toggle('active');
- });
-}();/* ----------------------------------
- * POPOVER v1.0.0
- * Licensed under The MIT License
- * http://opensource.org/licenses/MIT
- * ---------------------------------- */
-
-!function () {
-
- var popover;
-
- var findPopovers = function (target) {
- var i, popovers = document.querySelectorAll('a');
- for (; target && target !== document; target = target.parentNode) {
- for (i = popovers.length; i--;) { if (popovers[i] === target) return target; }
- }
- };
-
- var onPopoverHidden = function () {
- document.body.removeChild(backdrop);
- popover.style.display = 'none';
- popover.removeEventListener('webkitTransitionEnd', onPopoverHidden);
- }
-
- var backdrop = function () {
- var element = document.createElement('div');
-
- element.classList.add('backdrop');
-
- element.addEventListener('touchend', function () {
- popover.addEventListener('webkitTransitionEnd', onPopoverHidden);
- popover.classList.remove('visible');
- });
-
- return element;
- }();
-
- var getPopover = function (e) {
- var anchor = findPopovers(e.target);
-
- if (!anchor || !anchor.hash) return;
-
- popover = document.querySelector(anchor.hash);
-
- if (!popover || !popover.classList.contains('popover')) return;
-
- return popover;
- }
-
- window.addEventListener('touchend', function (e) {
- var popover = getPopover(e);
-
- if (!popover) return;
-
- popover.style.display = 'block';
- popover.offsetHeight;
- popover.classList.add('visible');
-
- popover.parentNode.appendChild(backdrop);
- });
-
- window.addEventListener('click', function (e) { if (getPopover(e)) e.preventDefault(); });
-
-}();
-/* ----------------------------------
- * PUSH v1.0.0
- * Licensed under The MIT License
- * inspired by chris's jquery.pjax.js
- * http://opensource.org/licenses/MIT
- * ---------------------------------- */
-
-!function () {
-
- var noop = function () {};
-
-
- // Pushstate cacheing
- // ==================
-
- var isScrolling;
- var maxCacheLength = 20;
- var cacheMapping = sessionStorage;
- var domCache = {};
- var transitionMap = {
- 'slide-in' : 'slide-out',
- 'slide-out' : 'slide-in',
- 'fade' : 'fade'
- };
- var bars = {
- bartab : '.bar-tab',
- bartitle : '.bar-title',
- barfooter : '.bar-footer',
- barheadersecondary : '.bar-header-secondary'
- }
-
- var cacheReplace = function (data, updates) {
- PUSH.id = data.id;
- if (updates) data = getCached(data.id);
- cacheMapping[data.id] = JSON.stringify(data);
- window.history.replaceState(data.id, data.title, data.url);
- domCache[data.id] = document.body.cloneNode(true);
- };
-
- var cachePush = function () {
- var id = PUSH.id;
-
- var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');
- var cacheBackStack = JSON.parse(cacheMapping.cacheBackStack || '[]');
-
- cacheBackStack.push(id);
-
- while (cacheForwardStack.length) delete cacheMapping[cacheForwardStack.shift()];
- while (cacheBackStack.length > maxCacheLength) delete cacheMapping[cacheBackStack.shift()];
-
- window.history.pushState(null, '', cacheMapping[PUSH.id].url);
-
- cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);
- cacheMapping.cacheBackStack = JSON.stringify(cacheBackStack);
- };
-
- var cachePop = function (id, direction) {
- var forward = direction == 'forward';
- var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');
- var cacheBackStack = JSON.parse(cacheMapping.cacheBackStack || '[]');
- var pushStack = forward ? cacheBackStack : cacheForwardStack;
- var popStack = forward ? cacheForwardStack : cacheBackStack;
-
- if (PUSH.id) pushStack.push(PUSH.id);
- popStack.pop();
-
- cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);
- cacheMapping.cacheBackStack = JSON.stringify(cacheBackStack);
- };
-
- var getCached = function (id) {
- return JSON.parse(cacheMapping[id] || null) || {};
- };
-
- var getTarget = function (e) {
- var target = findTarget(e.target);
-
- if (
- ! target
- || e.which > 1
- || e.metaKey
- || e.ctrlKey
- || isScrolling
- || location.protocol !== target.protocol
- || location.host !== target.host
- || !target.hash && /#/.test(target.href)
- || target.hash && target.href.replace(target.hash, '') === location.href.replace(location.hash, '')
- || target.getAttribute('data-ignore') == 'push'
- ) return;
-
- return target;
- };
-
-
- // Main event handlers (touchend, popstate)
- // ==========================================
-
- var touchend = function (e) {
- var target = getTarget(e);
-
- if (!target) return;
-
- e.preventDefault();
-
- PUSH({
- url : target.href,
- hash : target.hash,
- timeout : target.getAttribute('data-timeout'),
- transition : target.getAttribute('data-transition')
- });
- };
-
- var popstate = function (e) {
- var key;
- var barElement;
- var activeObj;
- var activeDom;
- var direction;
- var transition;
- var transitionFrom;
- var transitionFromObj;
- var id = e.state;
-
- if (!id || !cacheMapping[id]) return;
-
- direction = PUSH.id < id ? 'forward' : 'back';
-
- cachePop(id, direction);
-
- activeObj = getCached(id);
- activeDom = domCache[id];
-
- if (activeObj.title) document.title = activeObj.title;
-
- if (direction == 'back') {
- transitionFrom = JSON.parse(direction == 'back' ? cacheMapping.cacheForwardStack : cacheMapping.cacheBackStack);
- transitionFromObj = getCached(transitionFrom[transitionFrom.length - 1]);
- } else {
- transitionFromObj = activeObj;
- }
-
- if (direction == 'back' && !transitionFromObj.id) return PUSH.id = id;
-
- transition = direction == 'back' ? transitionMap[transitionFromObj.transition] : transitionFromObj.transition;
-
- if (!activeDom) {
- return PUSH({
- id : activeObj.id,
- url : activeObj.url,
- title : activeObj.title,
- timeout : activeObj.timeout,
- transition : transition,
- ignorePush : true
- });
- }
-
- if (transitionFromObj.transition) {
- activeObj = extendWithDom(activeObj, '.content', activeDom.cloneNode(true));
- for (key in bars) {
- barElement = document.querySelector(bars[key])
- if (activeObj[key]) swapContent(activeObj[key], barElement);
- else if (barElement) barElement.parentNode.removeChild(barElement);
- }
- }
-
- swapContent(
- (activeObj.contents || activeDom).cloneNode(true),
- document.querySelector('.content'),
- transition
- );
-
- PUSH.id = id;
-
- document.body.offsetHeight; // force reflow to prevent scroll
- };
-
-
- // Core PUSH functionality
- // =======================
-
- var PUSH = function (options) {
- var key;
- var data = {};
- var xhr = PUSH.xhr;
-
- options.container = options.container || options.transition ? document.querySelector('.content') : document.body;
-
- for (key in bars) {
- options[key] = options[key] || document.querySelector(bars[key]);
- }
-
- if (xhr && xhr.readyState < 4) {
- xhr.onreadystatechange = noop;
- xhr.abort()
- }
-
- xhr = new XMLHttpRequest();
- xhr.open('GET', options.url, true);
- xhr.setRequestHeader('X-PUSH', 'true');
-
- xhr.onreadystatechange = function () {
- if (options._timeout) clearTimeout(options._timeout);
- if (xhr.readyState == 4) xhr.status == 200 ? success(xhr, options) : failure(options.url);
- };
-
- if (!PUSH.id) {
- cacheReplace({
- id : +new Date,
- url : window.location.href,
- title : document.title,
- timeout : options.timeout,
- transition : null
- });
- }
-
- if (options.timeout) {
- options._timeout = setTimeout(function () { xhr.abort('timeout'); }, options.timeout);
- }
-
- xhr.send();
-
- if (xhr.readyState && !options.ignorePush) cachePush();
- };
-
-
- // Main XHR handlers
- // =================
-
- var success = function (xhr, options) {
- var key;
- var barElement;
- var data = parseXHR(xhr, options);
-
- if (!data.contents) return locationReplace(options.url);
-
- if (data.title) document.title = data.title;
-
- if (options.transition) {
- for (key in bars) {
- barElement = document.querySelector(bars[key])
- if (data[key]) swapContent(data[key], barElement);
- else if (barElement) barElement.parentNode.removeChild(barElement);
- }
- }
-
- swapContent(data.contents, options.container, options.transition, function () {
- cacheReplace({
- id : options.id || +new Date,
- url : data.url,
- title : data.title,
- timeout : options.timeout,
- transition : options.transition
- }, options.id);
- triggerStateChange();
- });
-
- if (!options.ignorePush && window._gaq) _gaq.push(['_trackPageview']) // google analytics
- if (!options.hash) return;
- };
-
- var failure = function (url) {
- throw new Error('Could not get: ' + url)
- };
-
-
- // PUSH helpers
- // ============
-
- var swapContent = function (swap, container, transition, complete) {
- var enter;
- var containerDirection;
- var swapDirection;
-
- if (!transition) {
- if (container) container.innerHTML = swap.innerHTML;
- else if (swap.classList.contains('content')) document.body.appendChild(swap);
- else document.body.insertBefore(swap, document.querySelector('.content'));
- } else {
- enter = /in$/.test(transition);
-
- if (transition == 'fade') {
- container.classList.add('in');
- container.classList.add('fade');
- swap.classList.add('fade');
- }
-
- if (/slide/.test(transition)) {
- swap.classList.add(enter ? 'right' : 'left');
- swap.classList.add('slide');
- container.classList.add('slide');
- }
-
- container.parentNode.insertBefore(swap, container);
- }
-
- if (!transition) complete && complete();
-
- if (transition == 'fade') {
- container.offsetWidth; // force reflow
- container.classList.remove('in');
- container.addEventListener('webkitTransitionEnd', fadeContainerEnd);
-
- function fadeContainerEnd() {
- container.removeEventListener('webkitTransitionEnd', fadeContainerEnd);
- swap.classList.add('in');
- swap.addEventListener('webkitTransitionEnd', fadeSwapEnd);
- }
- function fadeSwapEnd () {
- swap.removeEventListener('webkitTransitionEnd', fadeSwapEnd);
- container.parentNode.removeChild(container);
- swap.classList.remove('fade');
- swap.classList.remove('in');
- complete && complete();
- }
- }
-
- if (/slide/.test(transition)) {
- container.offsetWidth; // force reflow
- swapDirection = enter ? 'right' : 'left'
- containerDirection = enter ? 'left' : 'right'
- container.classList.add(containerDirection);
- swap.classList.remove(swapDirection);
- swap.addEventListener('webkitTransitionEnd', slideEnd);
-
- function slideEnd() {
- swap.removeEventListener('webkitTransitionEnd', slideEnd);
- swap.classList.remove('slide');
- swap.classList.remove(swapDirection);
- container.parentNode.removeChild(container);
- complete && complete();
- }
- }
- };
-
- var triggerStateChange = function () {
- var e = new CustomEvent('push', {
- detail: { state: getCached(PUSH.id) },
- bubbles: true,
- cancelable: true
- });
-
- window.dispatchEvent(e);
- };
-
- var findTarget = function (target) {
- var i, toggles = document.querySelectorAll('a');
- for (; target && target !== document; target = target.parentNode) {
- for (i = toggles.length; i--;) { if (toggles[i] === target) return target; }
- }
- };
-
- var locationReplace = function (url) {
- window.history.replaceState(null, '', '#');
- window.location.replace(url);
- };
-
- var parseURL = function (url) {
- var a = document.createElement('a'); a.href = url; return a;
- };
-
- var extendWithDom = function (obj, fragment, dom) {
- var i;
- var result = {};
-
- for (i in obj) result[i] = obj[i];
-
- Object.keys(bars).forEach(function (key) {
- var el = dom.querySelector(bars[key]);
- if (el) el.parentNode.removeChild(el);
- result[key] = el;
- });
-
- result.contents = dom.querySelector(fragment);
-
- return result;
- };
-
- var parseXHR = function (xhr, options) {
- var head;
- var body;
- var data = {};
- var responseText = xhr.responseText;
-
- data.url = options.url;
-
- if (!responseText) return data;
-
- if (/]*>([\s\S.]*)<\/head>/i)[0]
- body.innerHTML = responseText.match(/]*>([\s\S.]*)<\/body>/i)[0]
- } else {
- head = body = document.createElement('div');
- head.innerHTML = responseText;
- }
-
- data.title = head.querySelector('title');
- data.title = data.title && data.title.innerText.trim();
-
- if (options.transition) data = extendWithDom(data, '.content', body);
- else data.contents = body;
-
- return data;
- };
-
-
- // Attach PUSH event handlers
- // ==========================
-
- window.addEventListener('touchstart', function () { isScrolling = false; });
- window.addEventListener('touchmove', function () { isScrolling = true; })
- window.addEventListener('touchend', touchend);
- window.addEventListener('click', function (e) { if (getTarget(e)) e.preventDefault(); });
- window.addEventListener('popstate', popstate);
-
-}();/* ----------------------------------
- * TABS v1.0.0
- * Licensed under The MIT License
- * http://opensource.org/licenses/MIT
- * ---------------------------------- */
-
-!function () {
- var getTarget = function (target) {
- var i, popovers = document.querySelectorAll('.segmented-controller li a');
- for (; target && target !== document; target = target.parentNode) {
- for (i = popovers.length; i--;) { if (popovers[i] === target) return target; }
- }
- };
-
- window.addEventListener("touchend", function (e) {
- var activeTab;
- var activeBody;
- var targetBody;
- var targetTab;
- var className = 'active';
- var classSelector = '.' + className;
- var targetAnchor = getTarget(e.target);
-
- if (!targetAnchor) return;
-
- targetTab = targetAnchor.parentNode;
- activeTab = targetTab.parentNode.querySelector(classSelector);
-
- if (activeTab) activeTab.classList.remove(className);
-
- targetTab.classList.add(className);
-
- if (!targetAnchor.hash) return;
-
- targetBody = document.querySelector(targetAnchor.hash);
-
- if (!targetBody) return;
-
- activeBody = targetBody.parentNode.querySelector(classSelector);
-
- if (activeBody) activeBody.classList.remove(className);
-
- targetBody.classList.add(className)
- });
-
- window.addEventListener('click', function (e) { if (getTarget(e.target)) e.preventDefault(); });
-}();/* ----------------------------------
- * SLIDER v1.0.0
- * Licensed under The MIT License
- * Adapted from Brad Birdsall's swipe
- * http://opensource.org/licenses/MIT
- * ---------------------------------- */
-
-!function () {
-
- var pageX;
- var pageY;
- var slider;
- var deltaX;
- var deltaY;
- var offsetX;
- var lastSlide;
- var startTime;
- var resistance;
- var sliderWidth;
- var slideNumber;
- var isScrolling;
- var scrollableArea;
-
- var getSlider = function (target) {
- var i, sliders = document.querySelectorAll('.slider ul');
- for (; target && target !== document; target = target.parentNode) {
- for (i = sliders.length; i--;) { if (sliders[i] === target) return target; }
- }
- }
-
- var getScroll = function () {
- var translate3d = slider.style.webkitTransform.match(/translate3d\(([^,]*)/);
- return parseInt(translate3d ? translate3d[1] : 0)
- };
-
- var setSlideNumber = function (offset) {
- var round = offset ? (deltaX < 0 ? 'ceil' : 'floor') : 'round';
- slideNumber = Math[round](getScroll() / ( scrollableArea / slider.children.length) );
- slideNumber += offset;
- slideNumber = Math.min(slideNumber, 0);
- slideNumber = Math.max(-(slider.children.length - 1), slideNumber);
- }
-
- var onTouchStart = function (e) {
- slider = getSlider(e.target);
-
- if (!slider) return;
-
- var firstItem = slider.querySelector('li');
-
- scrollableArea = firstItem.offsetWidth * slider.children.length;
- isScrolling = undefined;
- sliderWidth = slider.offsetWidth;
- resistance = 1;
- lastSlide = -(slider.children.length - 1);
- startTime = +new Date;
- pageX = e.touches[0].pageX;
- pageY = e.touches[0].pageY;
-
- setSlideNumber(0);
-
- slider.style['-webkit-transition-duration'] = 0;
- };
-
- var onTouchMove = function (e) {
- if (e.touches.length > 1 || !slider) return; // Exit if a pinch || no slider
-
- deltaX = e.touches[0].pageX - pageX;
- deltaY = e.touches[0].pageY - pageY;
- pageX = e.touches[0].pageX;
- pageY = e.touches[0].pageY;
-
- if (typeof isScrolling == 'undefined') {
- isScrolling = Math.abs(deltaY) > Math.abs(deltaX);
- }
-
- if (isScrolling) return;
-
- offsetX = (deltaX / resistance) + getScroll();
-
- e.preventDefault();
-
- resistance = slideNumber == 0 && deltaX > 0 ? (pageX / sliderWidth) + 1.25 :
- slideNumber == lastSlide && deltaX < 0 ? (Math.abs(pageX) / sliderWidth) + 1.25 : 1;
-
- slider.style.webkitTransform = 'translate3d(' + offsetX + 'px,0,0)';
- };
-
- var onTouchEnd = function (e) {
- if (!slider || isScrolling) return;
-
- setSlideNumber(
- (+new Date) - startTime < 1000 && Math.abs(deltaX) > 15 ? (deltaX < 0 ? -1 : 1) : 0
- );
-
- offsetX = slideNumber * sliderWidth;
-
- slider.style['-webkit-transition-duration'] = '.2s';
- slider.style.webkitTransform = 'translate3d(' + offsetX + 'px,0,0)';
-
- e = new CustomEvent('slide', {
- detail: { slideNumber: Math.abs(slideNumber) },
- bubbles: true,
- cancelable: true
- });
-
- slider.parentNode.dispatchEvent(e);
- };
-
- window.addEventListener('touchstart', onTouchStart);
- window.addEventListener('touchmove', onTouchMove);
- window.addEventListener('touchend', onTouchEnd);
-
-}();
-/* ----------------------------------
- * TOGGLE v1.0.0
- * Licensed under The MIT License
- * http://opensource.org/licenses/MIT
- * ---------------------------------- */
-
-!function () {
-
- var start = {};
- var touchMove = false;
- var distanceX = false;
- var toggle = false;
-
- var findToggle = function (target) {
- var i, toggles = document.querySelectorAll('.toggle');
- for (; target && target !== document; target = target.parentNode) {
- for (i = toggles.length; i--;) { if (toggles[i] === target) return target; }
- }
- }
-
- window.addEventListener('touchstart', function (e) {
- e = e.originalEvent || e;
-
- toggle = findToggle(e.target);
-
- if (!toggle) return;
-
- var handle = toggle.querySelector('.toggle-handle');
- var toggleWidth = toggle.offsetWidth;
- var handleWidth = handle.offsetWidth;
- var offset = toggle.classList.contains('active') ? toggleWidth - handleWidth : 0;
-
- start = { pageX : e.touches[0].pageX - offset, pageY : e.touches[0].pageY };
- touchMove = false;
-
- // todo: probably should be moved to the css
- toggle.style['-webkit-transition-duration'] = 0;
- });
-
- window.addEventListener('touchmove', function (e) {
- e = e.originalEvent || e;
-
- if (e.touches.length > 1) return; // Exit if a pinch
-
- if (!toggle) return;
-
- var handle = toggle.querySelector('.toggle-handle');
- var current = e.touches[0];
- var toggleWidth = toggle.offsetWidth;
- var handleWidth = handle.offsetWidth;
- var offset = toggleWidth - handleWidth;
-
- touchMove = true;
- distanceX = current.pageX - start.pageX;
-
- if (Math.abs(distanceX) < Math.abs(current.pageY - start.pageY)) return;
-
- e.preventDefault();
-
- if (distanceX < 0) return handle.style.webkitTransform = 'translate3d(0,0,0)';
- if (distanceX > offset) return handle.style.webkitTransform = 'translate3d(' + offset + 'px,0,0)';
-
- handle.style.webkitTransform = 'translate3d(' + distanceX + 'px,0,0)';
-
- toggle.classList[(distanceX > (toggleWidth/2 - handleWidth/2)) ? 'add' : 'remove']('active');
- });
-
- window.addEventListener('touchend', function (e) {
- if (!toggle) return;
-
- var handle = toggle.querySelector('.toggle-handle');
- var toggleWidth = toggle.offsetWidth;
- var handleWidth = handle.offsetWidth;
- var offset = toggleWidth - handleWidth;
- var slideOn = (!touchMove && !toggle.classList.contains('active')) || (touchMove && (distanceX > (toggleWidth/2 - handleWidth/2)));
-
- if (slideOn) handle.style.webkitTransform = 'translate3d(' + offset + 'px,0,0)';
- else handle.style.webkitTransform = 'translate3d(0,0,0)';
-
- toggle.classList[slideOn ? 'add' : 'remove']('active');
-
- e = new CustomEvent('toggle', {
- detail: { isActive: slideOn },
- bubbles: true,
- cancelable: true
- });
-
- toggle.dispatchEvent(e);
-
- touchMove = false;
- toggle = false;
- });
-
-}();
diff --git a/dist/template.html b/dist/template.html
deleted file mode 100644
index 887c7668e..000000000
--- a/dist/template.html
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
- Ratchet template page
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Ratchet
-
-
-
-
-
-
Thanks for downloading Ratchet. This is an example HTML page that's linked up to compiled Ratchet CSS and JS, has the proper meta tags and the HTML structure. Need some more help before you start filling this with your own content? Check out some Ratchet resources:
-
-
-
\ No newline at end of file
diff --git a/dist/touch-icons/apple-touch-icon-114x114.png b/dist/touch-icons/apple-touch-icon-114x114.png
deleted file mode 100644
index de146614a..000000000
Binary files a/dist/touch-icons/apple-touch-icon-114x114.png and /dev/null differ
diff --git a/dist/touch-icons/apple-touch-icon-57x57.png b/dist/touch-icons/apple-touch-icon-57x57.png
deleted file mode 100644
index 539694283..000000000
Binary files a/dist/touch-icons/apple-touch-icon-57x57.png and /dev/null differ
diff --git a/dist/touch-icons/apple-touch-icon-72x72.png b/dist/touch-icons/apple-touch-icon-72x72.png
deleted file mode 100644
index a214d69f0..000000000
Binary files a/dist/touch-icons/apple-touch-icon-72x72.png and /dev/null differ
diff --git a/docs/LICENSE b/docs/LICENSE
new file mode 100644
index 000000000..0334caf02
--- /dev/null
+++ b/docs/LICENSE
@@ -0,0 +1,319 @@
+Creative Commons Legal Code
+
+Attribution 3.0 Unported
+
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
+ LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
+ REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR
+ DAMAGES RESULTING FROM ITS USE.
+
+License
+
+THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
+COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
+COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
+AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
+
+BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE
+TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY
+BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS
+CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
+CONDITIONS.
+
+1. Definitions
+
+ a. "Adaptation" means a work based upon the Work, or upon the Work and
+ other pre-existing works, such as a translation, adaptation,
+ derivative work, arrangement of music or other alterations of a
+ literary or artistic work, or phonogram or performance and includes
+ cinematographic adaptations or any other form in which the Work may be
+ recast, transformed, or adapted including in any form recognizably
+ derived from the original, except that a work that constitutes a
+ Collection will not be considered an Adaptation for the purpose of
+ this License. For the avoidance of doubt, where the Work is a musical
+ work, performance or phonogram, the synchronization of the Work in
+ timed-relation with a moving image ("synching") will be considered an
+ Adaptation for the purpose of this License.
+ b. "Collection" means a collection of literary or artistic works, such as
+ encyclopedias and anthologies, or performances, phonograms or
+ broadcasts, or other works or subject matter other than works listed
+ in Section 1(f) below, which, by reason of the selection and
+ arrangement of their contents, constitute intellectual creations, in
+ which the Work is included in its entirety in unmodified form along
+ with one or more other contributions, each constituting separate and
+ independent works in themselves, which together are assembled into a
+ collective whole. A work that constitutes a Collection will not be
+ considered an Adaptation (as defined above) for the purposes of this
+ License.
+ c. "Distribute" means to make available to the public the original and
+ copies of the Work or Adaptation, as appropriate, through sale or
+ other transfer of ownership.
+ d. "Licensor" means the individual, individuals, entity or entities that
+ offer(s) the Work under the terms of this License.
+ e. "Original Author" means, in the case of a literary or artistic work,
+ the individual, individuals, entity or entities who created the Work
+ or if no individual or entity can be identified, the publisher; and in
+ addition (i) in the case of a performance the actors, singers,
+ musicians, dancers, and other persons who act, sing, deliver, declaim,
+ play in, interpret or otherwise perform literary or artistic works or
+ expressions of folklore; (ii) in the case of a phonogram the producer
+ being the person or legal entity who first fixes the sounds of a
+ performance or other sounds; and, (iii) in the case of broadcasts, the
+ organization that transmits the broadcast.
+ f. "Work" means the literary and/or artistic work offered under the terms
+ of this License including without limitation any production in the
+ literary, scientific and artistic domain, whatever may be the mode or
+ form of its expression including digital form, such as a book,
+ pamphlet and other writing; a lecture, address, sermon or other work
+ of the same nature; a dramatic or dramatico-musical work; a
+ choreographic work or entertainment in dumb show; a musical
+ composition with or without words; a cinematographic work to which are
+ assimilated works expressed by a process analogous to cinematography;
+ a work of drawing, painting, architecture, sculpture, engraving or
+ lithography; a photographic work to which are assimilated works
+ expressed by a process analogous to photography; a work of applied
+ art; an illustration, map, plan, sketch or three-dimensional work
+ relative to geography, topography, architecture or science; a
+ performance; a broadcast; a phonogram; a compilation of data to the
+ extent it is protected as a copyrightable work; or a work performed by
+ a variety or circus performer to the extent it is not otherwise
+ considered a literary or artistic work.
+ g. "You" means an individual or entity exercising rights under this
+ License who has not previously violated the terms of this License with
+ respect to the Work, or who has received express permission from the
+ Licensor to exercise rights under this License despite a previous
+ violation.
+ h. "Publicly Perform" means to perform public recitations of the Work and
+ to communicate to the public those public recitations, by any means or
+ process, including by wire or wireless means or public digital
+ performances; to make available to the public Works in such a way that
+ members of the public may access these Works from a place and at a
+ place individually chosen by them; to perform the Work to the public
+ by any means or process and the communication to the public of the
+ performances of the Work, including by public digital performance; to
+ broadcast and rebroadcast the Work by any means including signs,
+ sounds or images.
+ i. "Reproduce" means to make copies of the Work by any means including
+ without limitation by sound or visual recordings and the right of
+ fixation and reproducing fixations of the Work, including storage of a
+ protected performance or phonogram in digital form or other electronic
+ medium.
+
+2. Fair Dealing Rights. Nothing in this License is intended to reduce,
+limit, or restrict any uses free from copyright or rights arising from
+limitations or exceptions that are provided for in connection with the
+copyright protection under copyright law or other applicable laws.
+
+3. License Grant. Subject to the terms and conditions of this License,
+Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
+perpetual (for the duration of the applicable copyright) license to
+exercise the rights in the Work as stated below:
+
+ a. to Reproduce the Work, to incorporate the Work into one or more
+ Collections, and to Reproduce the Work as incorporated in the
+ Collections;
+ b. to create and Reproduce Adaptations provided that any such Adaptation,
+ including any translation in any medium, takes reasonable steps to
+ clearly label, demarcate or otherwise identify that changes were made
+ to the original Work. For example, a translation could be marked "The
+ original work was translated from English to Spanish," or a
+ modification could indicate "The original work has been modified.";
+ c. to Distribute and Publicly Perform the Work including as incorporated
+ in Collections; and,
+ d. to Distribute and Publicly Perform Adaptations.
+ e. For the avoidance of doubt:
+
+ i. Non-waivable Compulsory License Schemes. In those jurisdictions in
+ which the right to collect royalties through any statutory or
+ compulsory licensing scheme cannot be waived, the Licensor
+ reserves the exclusive right to collect such royalties for any
+ exercise by You of the rights granted under this License;
+ ii. Waivable Compulsory License Schemes. In those jurisdictions in
+ which the right to collect royalties through any statutory or
+ compulsory licensing scheme can be waived, the Licensor waives the
+ exclusive right to collect such royalties for any exercise by You
+ of the rights granted under this License; and,
+ iii. Voluntary License Schemes. The Licensor waives the right to
+ collect royalties, whether individually or, in the event that the
+ Licensor is a member of a collecting society that administers
+ voluntary licensing schemes, via that society, from any exercise
+ by You of the rights granted under this License.
+
+The above rights may be exercised in all media and formats whether now
+known or hereafter devised. The above rights include the right to make
+such modifications as are technically necessary to exercise the rights in
+other media and formats. Subject to Section 8(f), all rights not expressly
+granted by Licensor are hereby reserved.
+
+4. Restrictions. The license granted in Section 3 above is expressly made
+subject to and limited by the following restrictions:
+
+ a. You may Distribute or Publicly Perform the Work only under the terms
+ of this License. You must include a copy of, or the Uniform Resource
+ Identifier (URI) for, this License with every copy of the Work You
+ Distribute or Publicly Perform. You may not offer or impose any terms
+ on the Work that restrict the terms of this License or the ability of
+ the recipient of the Work to exercise the rights granted to that
+ recipient under the terms of the License. You may not sublicense the
+ Work. You must keep intact all notices that refer to this License and
+ to the disclaimer of warranties with every copy of the Work You
+ Distribute or Publicly Perform. When You Distribute or Publicly
+ Perform the Work, You may not impose any effective technological
+ measures on the Work that restrict the ability of a recipient of the
+ Work from You to exercise the rights granted to that recipient under
+ the terms of the License. This Section 4(a) applies to the Work as
+ incorporated in a Collection, but this does not require the Collection
+ apart from the Work itself to be made subject to the terms of this
+ License. If You create a Collection, upon notice from any Licensor You
+ must, to the extent practicable, remove from the Collection any credit
+ as required by Section 4(b), as requested. If You create an
+ Adaptation, upon notice from any Licensor You must, to the extent
+ practicable, remove from the Adaptation any credit as required by
+ Section 4(b), as requested.
+ b. If You Distribute, or Publicly Perform the Work or any Adaptations or
+ Collections, You must, unless a request has been made pursuant to
+ Section 4(a), keep intact all copyright notices for the Work and
+ provide, reasonable to the medium or means You are utilizing: (i) the
+ name of the Original Author (or pseudonym, if applicable) if supplied,
+ and/or if the Original Author and/or Licensor designate another party
+ or parties (e.g., a sponsor institute, publishing entity, journal) for
+ attribution ("Attribution Parties") in Licensor's copyright notice,
+ terms of service or by other reasonable means, the name of such party
+ or parties; (ii) the title of the Work if supplied; (iii) to the
+ extent reasonably practicable, the URI, if any, that Licensor
+ specifies to be associated with the Work, unless such URI does not
+ refer to the copyright notice or licensing information for the Work;
+ and (iv) , consistent with Section 3(b), in the case of an Adaptation,
+ a credit identifying the use of the Work in the Adaptation (e.g.,
+ "French translation of the Work by Original Author," or "Screenplay
+ based on original Work by Original Author"). The credit required by
+ this Section 4 (b) may be implemented in any reasonable manner;
+ provided, however, that in the case of a Adaptation or Collection, at
+ a minimum such credit will appear, if a credit for all contributing
+ authors of the Adaptation or Collection appears, then as part of these
+ credits and in a manner at least as prominent as the credits for the
+ other contributing authors. For the avoidance of doubt, You may only
+ use the credit required by this Section for the purpose of attribution
+ in the manner set out above and, by exercising Your rights under this
+ License, You may not implicitly or explicitly assert or imply any
+ connection with, sponsorship or endorsement by the Original Author,
+ Licensor and/or Attribution Parties, as appropriate, of You or Your
+ use of the Work, without the separate, express prior written
+ permission of the Original Author, Licensor and/or Attribution
+ Parties.
+ c. Except as otherwise agreed in writing by the Licensor or as may be
+ otherwise permitted by applicable law, if You Reproduce, Distribute or
+ Publicly Perform the Work either by itself or as part of any
+ Adaptations or Collections, You must not distort, mutilate, modify or
+ take other derogatory action in relation to the Work which would be
+ prejudicial to the Original Author's honor or reputation. Licensor
+ agrees that in those jurisdictions (e.g. Japan), in which any exercise
+ of the right granted in Section 3(b) of this License (the right to
+ make Adaptations) would be deemed to be a distortion, mutilation,
+ modification or other derogatory action prejudicial to the Original
+ Author's honor and reputation, the Licensor will waive or not assert,
+ as appropriate, this Section, to the fullest extent permitted by the
+ applicable national law, to enable You to reasonably exercise Your
+ right under Section 3(b) of this License (right to make Adaptations)
+ but not otherwise.
+
+5. Representations, Warranties and Disclaimer
+
+UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
+OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
+KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
+INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
+FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
+LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
+WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION
+OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
+
+6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
+LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
+ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
+ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
+BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+7. Termination
+
+ a. This License and the rights granted hereunder will terminate
+ automatically upon any breach by You of the terms of this License.
+ Individuals or entities who have received Adaptations or Collections
+ from You under this License, however, will not have their licenses
+ terminated provided such individuals or entities remain in full
+ compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
+ survive any termination of this License.
+ b. Subject to the above terms and conditions, the license granted here is
+ perpetual (for the duration of the applicable copyright in the Work).
+ Notwithstanding the above, Licensor reserves the right to release the
+ Work under different license terms or to stop distributing the Work at
+ any time; provided, however that any such election will not serve to
+ withdraw this License (or any other license that has been, or is
+ required to be, granted under the terms of this License), and this
+ License will continue in full force and effect unless terminated as
+ stated above.
+
+8. Miscellaneous
+
+ a. Each time You Distribute or Publicly Perform the Work or a Collection,
+ the Licensor offers to the recipient a license to the Work on the same
+ terms and conditions as the license granted to You under this License.
+ b. Each time You Distribute or Publicly Perform an Adaptation, Licensor
+ offers to the recipient a license to the original Work on the same
+ terms and conditions as the license granted to You under this License.
+ c. If any provision of this License is invalid or unenforceable under
+ applicable law, it shall not affect the validity or enforceability of
+ the remainder of the terms of this License, and without further action
+ by the parties to this agreement, such provision shall be reformed to
+ the minimum extent necessary to make such provision valid and
+ enforceable.
+ d. No term or provision of this License shall be deemed waived and no
+ breach consented to unless such waiver or consent shall be in writing
+ and signed by the party to be charged with such waiver or consent.
+ e. This License constitutes the entire agreement between the parties with
+ respect to the Work licensed here. There are no understandings,
+ agreements or representations with respect to the Work not specified
+ here. Licensor shall not be bound by any additional provisions that
+ may appear in any communication from You. This License may not be
+ modified without the mutual written agreement of the Licensor and You.
+ f. The rights granted under, and the subject matter referenced, in this
+ License were drafted utilizing the terminology of the Berne Convention
+ for the Protection of Literary and Artistic Works (as amended on
+ September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
+ Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996
+ and the Universal Copyright Convention (as revised on July 24, 1971).
+ These rights and subject matter take effect in the relevant
+ jurisdiction in which the License terms are sought to be enforced
+ according to the corresponding provisions of the implementation of
+ those treaty provisions in the applicable national law. If the
+ standard suite of rights granted under applicable copyright law
+ includes additional rights not granted under this License, such
+ additional rights are deemed to be included in the License; this
+ License is not intended to restrict the license of any rights under
+ applicable law.
+
+
+Creative Commons Notice
+
+ Creative Commons is not a party to this License, and makes no warranty
+ whatsoever in connection with the Work. Creative Commons will not be
+ liable to You or any party on any legal theory for any damages
+ whatsoever, including without limitation any general, special,
+ incidental or consequential damages arising in connection to this
+ license. Notwithstanding the foregoing two (2) sentences, if Creative
+ Commons has expressly identified itself as the Licensor hereunder, it
+ shall have all rights and obligations of Licensor.
+
+ Except for the limited purpose of indicating to the public that the
+ Work is licensed under the CCPL, Creative Commons does not authorize
+ the use by either party of the trademark "Creative Commons" or any
+ related trademark or logo of Creative Commons without the prior
+ written consent of Creative Commons. Any permitted use will be in
+ compliance with Creative Commons' then-current trademark usage
+ guidelines, as may be published on its website or otherwise made
+ available upon request from time to time. For the avoidance of doubt,
+ this trademark restriction does not form part of this License.
+
+ Creative Commons may be contacted at http://creativecommons.org/.
\ No newline at end of file
diff --git a/docs/_data/ratchicons.yml b/docs/_data/ratchicons.yml
new file mode 100644
index 000000000..5af932f09
--- /dev/null
+++ b/docs/_data/ratchicons.yml
@@ -0,0 +1,43 @@
+# This file is generated via Grunt task. **Do not edit directly.**
+# See the 'build-ratchicons-data' task in Gruntfile.js.
+
+- icon-back
+- icon-bars
+- icon-caret
+- icon-check
+- icon-close
+- icon-code
+- icon-compose
+- icon-download
+- icon-edit
+- icon-forward
+- icon-gear
+- icon-home
+- icon-info
+- icon-list
+- icon-more-vertical
+- icon-more
+- icon-pages
+- icon-pause
+- icon-person
+- icon-play
+- icon-plus
+- icon-refresh
+- icon-search
+- icon-share
+- icon-sound
+- icon-sound2
+- icon-sound3
+- icon-sound4
+- icon-star-filled
+- icon-star
+- icon-stop
+- icon-trash
+- icon-up-nav
+- icon-up
+- icon-right-nav
+- icon-right
+- icon-down-nav
+- icon-down
+- icon-left-nav
+- icon-left
diff --git a/docs/_includes/ad.html b/docs/_includes/ad.html
new file mode 100644
index 000000000..821a92107
--- /dev/null
+++ b/docs/_includes/ad.html
@@ -0,0 +1 @@
+
diff --git a/docs/_includes/browser-warning.html b/docs/_includes/browser-warning.html
new file mode 100644
index 000000000..829538341
--- /dev/null
+++ b/docs/_includes/browser-warning.html
@@ -0,0 +1,9 @@
+
diff --git a/docs/_includes/download-module.html b/docs/_includes/download-module.html
new file mode 100644
index 000000000..db8ef7277
--- /dev/null
+++ b/docs/_includes/download-module.html
@@ -0,0 +1,12 @@
+
+
Ratchet
+
Compiled and minified CSS, JavaScript, and fonts. No docs or original source files are included.
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
new file mode 100644
index 000000000..1e2dacc39
--- /dev/null
+++ b/docs/_layouts/default.html
@@ -0,0 +1,10 @@
+
+
+
+ {% include header.html %}
+
+
+ {% include browser-warning.html %}
+ {{ content }}
+
+
diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html
new file mode 100644
index 000000000..f72016550
--- /dev/null
+++ b/docs/_layouts/home.html
@@ -0,0 +1,10 @@
+
+
+
+ {% include header.html %}
+
+
+ {% include browser-warning.html %}
+ {{ content }}
+
+
diff --git a/docs/about.html b/docs/about.html
new file mode 100644
index 000000000..d3fdd0e2b
--- /dev/null
+++ b/docs/about.html
@@ -0,0 +1,67 @@
+---
+layout: default
+title: About · Ratchet
+---
+
+
+ {% include masthead.html %}
+
+
+
About
+
Learn about the project's history and meet the maintaining team.
+
+ {% include ad.html %}
+
+
+
+
+
+
+
+
History
+
The idea for Ratchet was developed by @connors, @dhg, and @fat in mid-2012. Before it became a full fledged framework, Ratchet began as a series of HTML/CSS prototypes of the Twitter for iPhone app. These prototypes became invaluable to the process of testing new feature designs that ended up being shipped as part of the native mobile app.
+
As it became clear that this was the quickest and most effective way to design mobile apps, components were abstracted from these prototypes and became the framework you know today.
+
Released in November 2012, Ratchet quickly became one of the most popular prototyping tools on GitHub. Following that initial launch, we released v2 – a complete rewrite. With v2 we've abstracted the platform specific styles into their own theme CSS files, added an icon set called Ratchicons, and offically became part of the Bootstrap family.
+
+
+
+
Team
+
Ratchet is maintained by one of its creators, a couple of core contributors, and its awesome community.
Design patterns that serve as basic building blocks.
+
+ {% include ad.html %}
+
+ {% include toolbar.html %}
+
+
+
+
+
+
+
+
+
+
+
+
Title
+
+
+
+
+
+
+
+
+
+
Title bar
+
Title bars are full width and docked to the top of the viewport.
+
+
+
+
Title
+
+
+
+{% highlight html %}
+
+
Title
+
+{% endhighlight %}
+
+
+
+
+
Title bar with buttons
+
Buttons in a title bar are left or right aligned and should be used for actions. Use the .pull-right or .pull-left utility classes to float the buttons. Also, be sure to place any floated elements before the title.
+
+
+
+
+
+
Title
+
+
+
+{% highlight html %}
+
+
+
+
Title
+
+{% endhighlight %}
+
+
+
+
+
Title bar with icons
+
Icons can also be used for actions in toolbars. Again, be sure to use utility classes to float the icons into position.
+
+
+
+
+
+
Title
+
+
+
+{% highlight html %}
+
+
+
+
Title
+
+{% endhighlight %}
+
+
+
+
+
Title bar with link buttons and icons
+
Link buttons can be used in tool bars to remove the outline. Use these in conjuction with icons to recreate the nav feel from iOS7. Note the use of .btn-nav to bring the buttons a little bit closer to the edge of the viewport.
+
+
+
+
+
+
Title
+
+
+
+{% highlight html %}
+
+
+
+
Title
+
+{% endhighlight %}
+
+
+
+
+
Title bar with segmented control
+
Title bars can also house segmented controls. Feel free to add accompanying buttons too. The control will automatically layout itself out correctly.
Use Ratchicons in the .tab-bar to represent different sections of your app.
+
+
+
+
+
+{% highlight html %}
+
+{% endhighlight %}
+
+
Note: Use push.js to actually change content.
+
+
+
+
Tab bar (labels only)
+
If you don't want to use icons, that's okay too. The text will appear larger to use the additional space.
+
+
+
+
+
+{% highlight html %}
+
+{% endhighlight %}
+
+
Note: Use push.js to actually change content.
+
+
+
+
Standard bars
+
Standard bars are basic fixed elements that can be positioned in four places. These can be used to house buttons, icons, or segmented controls (see following examples).
+
+
+
+
+
+
+
+
+
+
+
+{% highlight html %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+
+
+
+
+
+
Typography
+
Use headings and paragraphs to title and describe sections of your app. Apply or wrap elements with .content-padded to give the content space around the screen.
+
+
+
+
h1. Heading
+
h2. Heading
+
h3. Heading
+
h4. Heading
+
h5. Heading
+
h6. Heading
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+ tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+ quis nostrud exercitation ullamco.
+
+
+
+{% highlight html %}
+
+
h1. Heading
+
h2. Heading
+
h3. Heading
+
h4. Heading
+
h5. Heading
+
h6. Heading
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+ tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+ quis nostrud exercitation ullamco.
+
+{% endhighlight %}
+
+
+
+
+
+
Table views
+
Table views can be used for organizing data, showing collections of links, or a series of controls.
+
+
+
+
Item 1
+
Item 2
+
Divider
+
Item 3
+
+
+
+{% highlight html %}
+
+
Item 1
+
Item 2
+
Divider
+
Item 3
+
+{% endhighlight %}
+
+
+
+
+
Table view with chevrons
+
Chevrons should be used to indicate that the item is linked. Just apply the classes .navigate-right or .navigate-left to use a chevron.
Content sections that are to be swapped in and out by the controller should all be siblings and have the class .control-content. Then, just give each content section an id and point the link in the segmented control to that id.
Badges come in four flavors and should be used to indicate "how many" of something there are. Adding the a class of .badge-inverted will remove the badges background color.
Toggles can be used by sliding or tapping the control.
+
+
+
+
+
+
+
+{% highlight html %}
+
+
+
+
+
+
+{% endhighlight %}
+
+
Toggles.js binds an event to the document that returns a detail object and can be used to fire a callback.
+
+{% highlight js %}
+// Only needed if you want to fire a callback
+document
+.querySelector('#myToggle')
+.addEventListener('toggle', myFunction)
+{% endhighlight %}
+
+
+
+
+
+
Popovers
+
+{% highlight html %}
+
+
+
Popover title
+
+
+
Item1
+
Item2
+
Item3
+
Item4
+
Item5
+
Item6
+
Item7
+
Item8
+
+
+{% endhighlight %}
+
+
Popovers are designed to only fire from title bars. Set the value of the title href to the id of a popover, like so:
The contents of my modal go here. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut.
The contents of my modal go here. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut.
+
+
+{% endhighlight %}
+
+
Modals are designed to only fire from links. Set the value of the toggle links href to the id of a modal.
+
+
+
+
+
+
Sliders
+
Can be used with any number of slides with any type of content.
+
+
+
+
+
+
+
+
+ Slide me
+
+
+
+
+
+
+
+
+
+
+
+
+{% highlight html %}
+
+
+
+
+
+
+ Slide me
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+
+
Sliders.js binds an event to the document that returns a detail object and can be used to fire a callback.
+
+{% highlight js %}
+// Only needed if you want to fire a callback
+document
+.querySelector('#mySlider')
+.addEventListener('slide', myFunction)
+{% endhighlight %}
+
+
+
+
+
+
Push
+
Push.js is the engine that connects Ratchet pages together with AJAX and the history api. Push.js is listening to all clicks on a page, so just make sure it's included and link something in your Ratchet project up.
This will use push to replace everything in the .content div with the .content of two.html. Also, it will either update or remove .bar-nav and .bar-tab according to their presences in two.html.
+
+
Now that pages are being loaded through push, it's easy to specify transitions for animations between pages. There are three different transitions to chose from: fade, slide-in, or slide-out.
Once you've downloaded Ratchet, here's what to do next.
+
+ {% include ad.html %}
+
+
+
+
+
+
+
+
Quick start
+
Quickly get up and running with a Ratchet app.
+
+
1. Create your pages
+
Use the documentation as a reference for all the available components and piece together the pages of your app. Be sure to look at the basic page template and example applications. Make sure to add ratchet-theme-ios.css or ratchet-theme-android.css to your app's <head> if you have a specific platform in mind.
+
+
2. Connect pages with push.js
+
Read about push.js then start connecting your pages. Push.js allows you to create an app that feels like a real app when you save it to your phone. Make sure that you have a server running, and that your browser is emulating touch events. Check out this tutorial on emulating touch events in Chrome (or Firefox) if you're not sure how to do that.
+
+
3. Save the app to your phone
+
There are a few ways to do this, but the simplest is to run a local server on your computer, point Safari on your iPhone to your computer, then click the button and "Add to Home Screen". For Android, check out this guide.
+
+
+
+
What's included
+
Ratchet is downloadable in two forms, within which you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.
+
+
Precompiled Ratchet
+
Once downloaded, unzip the compressed folder to see the structure of (the compiled) Ratchet. You'll see something like this:
This is the most basic form of Ratchet: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (ratchet.*), as well as compiled and minified CSS and JS (ratchet.min.*). The Ratchicon fonts are included, as are the Android and iOS platform themes.
+
+
Ratchet source code
+
The Ratchet source code download includes the precompiled CSS, JavaScript, and font assets, along with source Sass, JavaScript, and documentation. More specifically, it includes the following and more:
The sass/, js/, and fonts/ are the source code for our CSS, JS, and icon fonts (respectively). The dist/ folder includes everything listed in the precompiled download section above. The docs/ folder includes the source code for our documentation, and examples/ of Ratchet usage. Beyond that, any other included file provides support for packages, license information, and development.
+
+
+
+
+
+
Page setup
+
Three simple rules for structuring your Ratchet pages
+
1. Fixed bars come first
+
All fixed bars (.bar) should always be the first thing in the <body> of the page. This is really important!
+
+
2. Everything else goes in .content
+
Anything that's not a .bar should be put in a div with the class .content. Put this div after the bars in the <body> tag. The .content div is what actually scrolls in a Ratchet prototype.
+
+
3. Don't forget your meta tags
+
They're included in the template.html page included in the download, but make sure they stay in the page. They are important for Ratchet to work just right.
Thanks for downloading Ratchet. This is an example HTML page that's linked up to compiled Ratchet CSS and JS, has the proper meta tags and the HTML structure. Need some more help before you start filling this with your own content? Check out some Ratchet resources:
Once you've downloaded Ratchet, here's what to do next.
-
-
-
-
-
1. Create your pages
-
Use these docs as a reference for all the available components and piece together the pages of your app. Customize the style too - make the prototype all your own.
-
-
-
2. Connect pages with push.js
-
Read about push.js then start connecting your pages. Push.js allows you to create a prototype that feels like a real app when you save it to your phone. (Need to have a server running).
-
-
-
3. Save the prototype to your phone
-
There are a few ways to do this, but the simplest is to run a local server on your computer, point Safari on your iPhone to your computer, then click the button and "Add to Home Screen".
-
-
-
-
-
-
-
-
Heads up! Ratchet components are written only for iPhone, so many are broken in non-Webkit browsers.
-
-
-
-
-
-
-
-
-
-
Components
-
Design patterns that serve as basic building blocks.
-
-
-
-
-
-
Title
-
-
-
-
-
-
-
-
Title bar
-
Title bars are full width and docked to the top of the viewport.
Title bars can also house segmented controllers (with or without accompanying buttons). It all uses flex-box to create perfectly even spacing no matter their labels.
Credit: Icons by Marc Haumann and Spencer Cohen from The Noun Project
-
-
-
-
Standard bars
-
Standard bars are basic fixed elements that can be positioned in 3 places. These can be used to house buttons or segmented controllers (see following examples).
Created with flex-box so button sizes and spacing are consistent. Content sections that are to be swapped in and out by the controller should all be siblings and have the class "segmented-controller-item". Then, just give each content section an id and point the link in the segmented controller to that id.
Sliders.js binds an event to the document that returns a detail object and can be used to fire a callback.
-
-
-// Only needed if you want to fire a callback
-document
- .querySelector('#mySlider')
- .addEventListener('slide', myFunction)
-
-
-
-
-
-
-
Push
-
Push.js is the engine that connects Ratchet pages together with AJAX and the history api. Push.js is listening to all clicks on a page, so just make sure it's included and link something in your Ratchet project up.
-
-
-<!-- A one.html link -->
-<a href="two.html">Two<a>
-
-
-
This will use push to replace everything in the .content div with the .content of two.html. It will also update .bar-title and .bar-tab if you have them on both pages.
-
-
Now that pages are being loaded through push, it's easy to specify transitions for animations between pages. There are three different transitions to chose from: fade, slide-in, or slide-out.
-
-
-<!-- An one.html link that animates to two.html -->
-<a href="two.html" data-transition="fade">Two<a>
-
Have a link you don't want to intercepted by push? Try this:
-
-
-<!-- Use data-ignore="push" to prevent the push.js interception -->
-<a href="http://www.google.com" data-ignore="push">Google<a>
-
-
-
Push.js binds an event to the document that returns a detail object and can be used to fire a callback.
-
-
-// Only needed if you want to fire a callback
-window.addEventListener('push', myFunction);
-
-
-
-
-
-
-
-
-
-
-
Page setup
-
3 simple rules for structuring your Ratchet pages
-
-
-
-
-
1. Fixed bars come first
-
All fixed bars (.bar-title, .bar-tab, .bar-header-secondary, .bar-footer) should always be the first thing in the <body> of the page. This is really important!
-
-
-
2. Everything else goes in .content
-
Anything that's not a .bar- should be put in a div with the class "content". Put this div after the bars in the <body> tag. The .content div is what actually scrolls in a Ratchet prototype.
-
-
-
3. Don't forget your meta tags
-
They're included in the template.html page included in the download, but make sure they stay in the page. They are important to Ratchet working just right.
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+---
+layout: home
+title: Ratchet
+---
+
+
+ {% include masthead.html %}
+
+
Build mobile apps with simple HTML‚ CSS‚ and JS components.
Thanks for downloading Ratchet. This is an example HTML page that's linked up to compiled Ratchet CSS and JS, has the proper meta tags and the HTML structure. Need some more help before you start filling this with your own content? Check out some Ratchet resources:
Honey, check it out, you got me mesmerized
- With your black hair and fat-ass thighs
- Street poetry is my everyday
- But yo, I gotta stop when you trot my way
- If I was workin at the club you would not pay
- Aiyyo, my man phife diggy, he got somthin to say
-
-
I like em brown, yellow, puero rican or hatian
- Name is phife dawg from the zulu nation
- Told you in the jam that we can get down
- Now lets knock the boots like the group h-town
- You got bbd all on your bedroom wall
- But Im above the rim and this is how I ball
- A pretty little somethin on the new york street
- This is how I represent over this here beat
-
Talkin bout you
-
-
Yo, I took you out
-
But sex was on my mind for the whole damn route
- My mind was in a frenzy and a horny state
- But I couldnt drop dimes cause *you couldnt relate*