From 4ceef3e52bc024536ceb68e7d0f0dff484de5877 Mon Sep 17 00:00:00 2001 From: Arnold Daniels Date: Sun, 3 Jan 2016 19:29:36 -0400 Subject: [PATCH] Orphan branch starting v3.1 Before this version jasny/bootstrap was a fork of twbs/bootstrap --- .editorconfig | 11 + .gitattributes | 8 + .gitignore | 41 + .travis.yml | 28 + CONTRIBUTING.md | 61 + Gruntfile.js | 390 +++ LICENSE | 176 ++ README.md | 176 ++ _config.yml | 31 + bower.json | 21 + composer.json | 19 + dist/css/jasny-bootstrap.css | 599 +++++ dist/css/jasny-bootstrap.css.map | 1 + dist/css/jasny-bootstrap.min.css | 7 + dist/js/jasny-bootstrap.js | 941 +++++++ dist/js/jasny-bootstrap.min.js | 6 + docs/LICENSE | 319 +++ docs/_includes/ads.html | 10 + docs/_includes/customizer-variables.html | 335 +++ docs/_includes/footer.html | 14 + docs/_includes/header.html | 43 + docs/_includes/nav-components.html | 15 + docs/_includes/nav-css.html | 12 + docs/_includes/nav-customize.html | 19 + docs/_includes/nav-getting-started.html | 26 + docs/_includes/nav-javascript.html | 38 + docs/_includes/nav-main.html | 37 + docs/_includes/social-buttons.html | 16 + docs/_layouts/default.html | 80 + docs/_layouts/home.html | 41 + docs/assets/css/docs.css | 1249 ++++++++++ docs/assets/css/docs.min.css | 6 + docs/assets/css/pygments-manni.css | 66 + .../ico/apple-touch-icon-144-precomposed.png | Bin 0 -> 6706 bytes docs/assets/ico/favicon.png | Bin 0 -> 1663 bytes docs/assets/img/bg-1920x1200.jpg | Bin 0 -> 45300 bytes docs/assets/img/bg-3500x2500.jpg | Bin 0 -> 150982 bytes docs/assets/js/application.js | 76 + docs/assets/js/customize.min.js | 55 + docs/assets/js/customizer.js | 336 +++ docs/assets/js/docs.min.js | 16 + docs/assets/js/ie8-responsive-file-warning.js | 12 + docs/assets/js/raw-files.min.js | 7 + docs/assets/js/vendor/blob.js | 166 ++ docs/assets/js/vendor/filesaver.js | 242 ++ docs/assets/js/vendor/holder.js | 648 +++++ docs/assets/js/vendor/jszip.min.js | 14 + docs/assets/js/vendor/less.min.js | 16 + docs/assets/js/vendor/uglify.min.js | 14 + docs/components.html | 185 ++ docs/css.html | 52 + docs/customize.html | 164 ++ docs/dist/css/jasny-bootstrap.css.map | 1 + docs/dist/css/jasny-bootstrap.min.css | 7 + docs/dist/js/jasny-bootstrap.min.js | 6 + docs/examples/navbar-offcanvas/index.html | 81 + .../navbar-offcanvas/navbar-offcanvas.css | 10 + docs/examples/navmenu-push/index.html | 80 + docs/examples/navmenu-push/navmenu-push.css | 29 + docs/examples/navmenu-reveal/index.html | 85 + .../navmenu-reveal/navmenu-reveal.css | 41 + docs/examples/navmenu/index.html | 81 + docs/examples/navmenu/navmenu.css | 46 + .../examples/screenshots/navbar-offcanvas.jpg | Bin 0 -> 38093 bytes docs/examples/screenshots/navmenu-push.jpg | Bin 0 -> 19726 bytes docs/examples/screenshots/navmenu-reveal.jpg | Bin 0 -> 23984 bytes docs/examples/screenshots/navmenu.jpg | Bin 0 -> 23057 bytes .../examples/screenshots/starter-template.jpg | Bin 0 -> 22620 bytes docs/examples/starter-template/index.html | 69 + .../starter-template/starter-template.css | 9 + docs/getting-started.html | 313 +++ docs/index.html | 15 + docs/jade/customizer-nav.jade | 15 + docs/jade/customizer-variables.jade | 21 + docs/javascript.html | 572 +++++ grunt/.jshintrc | 16 + grunt/bs-lessdoc-parser.js | 236 ++ grunt/bs-raw-files-generator.js | 31 + grunt/shrinkwrap.js | 28 + js/.jscs.json | 15 + js/.jshintrc | 14 + js/fileinput.js | 191 ++ js/inputmask.js | 360 +++ js/offcanvas.js | 296 +++ js/rowlink.js | 84 + js/tests/index.html | 39 + js/tests/unit/fileinput.js | 20 + js/tests/unit/inputmask.js | 20 + js/tests/unit/offcanvas.js | 20 + js/tests/unit/phantom.js | 69 + js/tests/unit/rowlink.js | 20 + js/tests/vendor/jquery.js | 4 + js/tests/vendor/qunit.css | 245 ++ js/tests/vendor/qunit.js | 2210 +++++++++++++++++ less/.csscomb.json | 297 +++ less/.csslintrc | 20 + less/alerts-fixed.less | 39 + less/build/jasny-bootstrap.less | 4 + less/build/variables.less | 216 ++ less/button-labels.less | 25 + less/fileinput.less | 108 + less/grid-container-smooth.less | 9 + less/jasny-bootstrap.less | 19 + less/mixins.less | 47 + less/nav-tab-alignment.less | 97 + less/navmenu.less | 269 ++ less/offcanvas.less | 49 + less/rowlink.less | 23 + less/variables.less | 66 + package.json | 70 + test-infra/README.md | 100 + test-infra/npm-shrinkwrap.canonical.json | 1 + test-infra/requirements.txt | 1 + test-infra/s3_cache.py | 107 + test-infra/sauce_browsers.yml | 83 + test-infra/uncached-npm-install.sh | 4 + 116 files changed, 13898 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 CONTRIBUTING.md create mode 100644 Gruntfile.js create mode 100644 LICENSE create mode 100644 README.md create mode 100644 _config.yml create mode 100644 bower.json create mode 100644 composer.json create mode 100644 dist/css/jasny-bootstrap.css create mode 100644 dist/css/jasny-bootstrap.css.map create mode 100644 dist/css/jasny-bootstrap.min.css create mode 100644 dist/js/jasny-bootstrap.js create mode 100644 dist/js/jasny-bootstrap.min.js create mode 100644 docs/LICENSE create mode 100644 docs/_includes/ads.html create mode 100644 docs/_includes/customizer-variables.html create mode 100644 docs/_includes/footer.html create mode 100644 docs/_includes/header.html create mode 100644 docs/_includes/nav-components.html create mode 100644 docs/_includes/nav-css.html create mode 100644 docs/_includes/nav-customize.html create mode 100644 docs/_includes/nav-getting-started.html create mode 100644 docs/_includes/nav-javascript.html create mode 100644 docs/_includes/nav-main.html create mode 100644 docs/_includes/social-buttons.html create mode 100644 docs/_layouts/default.html create mode 100644 docs/_layouts/home.html create mode 100644 docs/assets/css/docs.css create mode 100644 docs/assets/css/docs.min.css create mode 100644 docs/assets/css/pygments-manni.css create mode 100644 docs/assets/ico/apple-touch-icon-144-precomposed.png create mode 100644 docs/assets/ico/favicon.png create mode 100644 docs/assets/img/bg-1920x1200.jpg create mode 100644 docs/assets/img/bg-3500x2500.jpg create mode 100644 docs/assets/js/application.js create mode 100644 docs/assets/js/customize.min.js create mode 100644 docs/assets/js/customizer.js create mode 100644 docs/assets/js/docs.min.js create mode 100644 docs/assets/js/ie8-responsive-file-warning.js create mode 100644 docs/assets/js/raw-files.min.js create mode 100644 docs/assets/js/vendor/blob.js create mode 100644 docs/assets/js/vendor/filesaver.js create mode 100644 docs/assets/js/vendor/holder.js create mode 100644 docs/assets/js/vendor/jszip.min.js create mode 100644 docs/assets/js/vendor/less.min.js create mode 100644 docs/assets/js/vendor/uglify.min.js create mode 100644 docs/components.html create mode 100644 docs/css.html create mode 100644 docs/customize.html create mode 100644 docs/dist/css/jasny-bootstrap.css.map create mode 100644 docs/dist/css/jasny-bootstrap.min.css create mode 100644 docs/dist/js/jasny-bootstrap.min.js create mode 100644 docs/examples/navbar-offcanvas/index.html create mode 100644 docs/examples/navbar-offcanvas/navbar-offcanvas.css create mode 100644 docs/examples/navmenu-push/index.html create mode 100644 docs/examples/navmenu-push/navmenu-push.css create mode 100644 docs/examples/navmenu-reveal/index.html create mode 100644 docs/examples/navmenu-reveal/navmenu-reveal.css create mode 100644 docs/examples/navmenu/index.html create mode 100644 docs/examples/navmenu/navmenu.css create mode 100644 docs/examples/screenshots/navbar-offcanvas.jpg create mode 100644 docs/examples/screenshots/navmenu-push.jpg create mode 100644 docs/examples/screenshots/navmenu-reveal.jpg create mode 100644 docs/examples/screenshots/navmenu.jpg create mode 100644 docs/examples/screenshots/starter-template.jpg create mode 100644 docs/examples/starter-template/index.html create mode 100644 docs/examples/starter-template/starter-template.css create mode 100644 docs/getting-started.html create mode 100644 docs/index.html create mode 100644 docs/jade/customizer-nav.jade create mode 100644 docs/jade/customizer-variables.jade create mode 100644 docs/javascript.html create mode 100644 grunt/.jshintrc create mode 100644 grunt/bs-lessdoc-parser.js create mode 100644 grunt/bs-raw-files-generator.js create mode 100644 grunt/shrinkwrap.js create mode 100644 js/.jscs.json create mode 100644 js/.jshintrc create mode 100644 js/fileinput.js create mode 100644 js/inputmask.js create mode 100644 js/offcanvas.js create mode 100644 js/rowlink.js create mode 100644 js/tests/index.html create mode 100644 js/tests/unit/fileinput.js create mode 100644 js/tests/unit/inputmask.js create mode 100644 js/tests/unit/offcanvas.js create mode 100644 js/tests/unit/phantom.js create mode 100644 js/tests/unit/rowlink.js create mode 100644 js/tests/vendor/jquery.js create mode 100644 js/tests/vendor/qunit.css create mode 100644 js/tests/vendor/qunit.js create mode 100644 less/.csscomb.json create mode 100644 less/.csslintrc create mode 100644 less/alerts-fixed.less create mode 100644 less/build/jasny-bootstrap.less create mode 100644 less/build/variables.less create mode 100644 less/button-labels.less create mode 100644 less/fileinput.less create mode 100644 less/grid-container-smooth.less create mode 100644 less/jasny-bootstrap.less create mode 100644 less/mixins.less create mode 100644 less/nav-tab-alignment.less create mode 100644 less/navmenu.less create mode 100644 less/offcanvas.less create mode 100644 less/rowlink.less create mode 100644 less/variables.less create mode 100644 package.json create mode 100644 test-infra/README.md create mode 100644 test-infra/npm-shrinkwrap.canonical.json create mode 100644 test-infra/requirements.txt create mode 100755 test-infra/s3_cache.py create mode 100644 test-infra/sauce_browsers.yml create mode 100755 test-infra/uncached-npm-install.sh diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..cf8d7fa6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..0c6b2fea --- /dev/null +++ b/.gitattributes @@ -0,0 +1,8 @@ +# Enforce Unix newlines +*.css text eol=lf +*.html text eol=lf +*.js text eol=lf +*.json text eol=lf +*.less text eol=lf +*.md text eol=lf +*.yml text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..10c58cf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# Ignore docs files +_gh_pages +_site +.ruby-version + +# Numerous always-ignore extensions +*.diff +*.err +*.orig +*.log +*.rej +*.swo +*.swp +*.zip +*.vi +*~ + +# OS or Editor folders +.DS_Store +._* +Thumbs.db +.cache +.project +.settings +.tmproj +*.esproj +nbproject +*.sublime-project +*.sublime-workspace +.idea + +# Komodo +*.komodoproject +.komodotools + +# grunt-html-validation +validation-status.json +validation-report.json + +# Folders to ignore +node_modules diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..03e457a0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +language: node_js +node_js: + - "0.10" +before_install: + - time sudo pip install --use-mirrors -r test-infra/requirements.txt + - rvm use 1.9.3 --fuzzy + - if [ "$TWBS_TEST" = validate-html ]; then echo "ruby=$(basename $(rvm gemdir)) jekyll=$JEKYLL_VERSION" > pseudo_Gemfile.lock; fi +install: + - time npm install -g grunt-cli + - time ./test-infra/s3_cache.py download 'npm packages' test-infra/npm-shrinkwrap.canonical.json ./node_modules || time ./test-infra/uncached-npm-install.sh + - if [ "$TWBS_TEST" = validate-html ]; then time ./test-infra/s3_cache.py download rubygems pseudo_Gemfile.lock $(rvm gemdir) || gem install -N jekyll -v $JEKYLL_VERSION; fi +after_script: + - if [ "$TWBS_TEST" = core ]; then time ./test-infra/s3_cache.py upload 'npm packages' test-infra/npm-shrinkwrap.canonical.json ./node_modules; fi + - if [ "$TWBS_TEST" = validate-html ]; then time ./test-infra/s3_cache.py upload rubygems pseudo_Gemfile.lock $(rvm gemdir); fi +env: + global: + - JEKYLL_VERSION: 1.4.1 + - SAUCE_USERNAME: bootstrap + - secure: "pJkBwnuae9dKU5tEcCqccfS1QQw7/meEcfz63fM7ba7QJNjoA6BaXj08L5Z3Vb5vBmVPwBawxo5Hp0jC0r/Z/O0hGnAmz/Cz09L+cy7dSAZ9x4hvZePSja/UAusaB5ogMoO8l2b773MzgQeSmrLbExr9BWLeqEfjC2hFgdgHLaQ=" + - secure: "gqjqISbxBJK6byFbsmr1AyP1qoWH+rap06A2gI7v72+Tn2PU2nYkIMUkCvhZw6K889jv+LhQ/ybcBxDOXHpNCExCnSgB4dcnmYp+9oeNZb37jSP0rQ+Ib4OTLjzc3/FawE/fUq5kukZTC7porzc/k0qJNLAZRx3YLALmK1GIdUY=" + - secure: "Gghh/e3Gsbj1+4RR9Lh2aR/xJl35HWiHqlPIeSUqE9D7uDCVTAwNce/dGL3Ew7uJPfJ6Pgr70wD3zgu3stw0Zmzayax0hiDtGwcQCxVIER08wqGANK9C2Q7PYJkNTNtiTo6ehKWbdV4Z+/U+TEYyQfpQTDbAFYk/vVpsdjp0Lmc=" + - secure: "RTbRdx4G/2OTLfrZtP1VbRljxEmd6A1F3GqXboeQTldsnAlwpsES65es5CE3ub/rmixLApOY9ot7OPmNixFgC2Y8xOsV7lNCC62QVpmqQEDyGFFQKb3yO6/dmwQxdsCqGfzf9Np6Wh5V22QFvr50ZLKLd7Uhd9oXMDIk/z1MJ3o=" + matrix: + - TWBS_TEST=core + - TWBS_TEST=validate-html + - TWBS_TEST=sauce-js-unit +matrix: + fast_finish: true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..96b7732b --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,61 @@ +# Contributing to Bootstrap + +Looking to contribute something to Bootstrap? **Here's how you can help.** + + + +## Reporting issues + +We only accept issues that are bug reports or feature requests. Bugs must be isolated and reproducible problems that we can fix within the Bootstrap core. Please read the following guidelines before opening any issue. + +1. **Search for existing issues.** We get a lot of duplicate issues, and you'd help us out a lot by first checking if someone else has reported the same issue. Moreover, the issue may have already been resolved with a fix available. +2. **Create an isolated and reproducible test case.** Be sure the problem exists in Bootstrap's code with a [reduced test case](http://css-tricks.com/reduced-test-cases/) that should be included in each bug report. +3. **Include a live example.** Make use of jsFiddle or jsBin to share your isolated test cases. +4. **Share as much information as possible.** Include operating system and version, browser and version, version of Bootstrap, customized or vanilla build, etc. where appropriate. Also include steps to reproduce the bug. + + + +## Pull requests + +- CSS changes must be done in `.less` files first, never just the compiled `.css` files +- If modifying the `.less` files, always recompile and commit the compiled files `bootstrap.css` and `bootstrap.min.css` +- Try not to pollute your pull request with unintended changes--keep them simple and small +- Try to share which browsers your code has been tested in before submitting a pull request +- Pull requests should always be against the `master` branch, never against `gh-pages`. + + + +## Coding standards + +### HTML + +- Two spaces for indentation, never tabs +- Double quotes only, never single quotes +- Always use proper indentation +- Use tags and elements appropriate for an HTML5 doctype (e.g., self-closing tags) +- Use CDNs and HTTPS for third-party JS when possible. We don't use protocol-relative URLs in this case because they break when viewing the page locally via `file://`. + +### CSS + +- Adhere to the [RECESS CSS property order](http://markdotto.com/2011/11/29/css-property-order/) +- Multiple-line approach (one property and value per line) +- Always a space after a property's colon (e.g., `display: block;` and not `display:block;`) +- End all lines with a semi-colon +- For multiple, comma-separated selectors, place each selector on its own line +- Attribute selectors, like `input[type="text"]` should always wrap the attribute's value in double quotes, for consistency and safety (see this [blog post on unquoted attribute values](http://mathiasbynens.be/notes/unquoted-attribute-values) that can lead to XSS attacks). + +### JS + +- No semicolons +- Comma first +- 2 spaces (no tabs) +- strict mode +- "Attractive" + + + +## License + +With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). We're in the process of collecting permissions from all Bootstrap contributors with code still part of the project to make this happen. For details, please see [#2054](https://github.com/twbs/bootstrap/issues/2054). + +By contributing your code, you agree to dual-license your contribution under the [Apache 2](https://github.com/twbs/bootstrap/blob/master/LICENSE) and [MIT](https://github.com/twbs/bootstrap/blob/master/MIT) licenses. diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 00000000..e3d8c5c4 --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,390 @@ +/*! + * Bootstrap's Gruntfile + * http://getbootstrap.com + * Copyright 2013-2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +module.exports = function (grunt) { + 'use strict'; + + // Force use of Unix newlines + grunt.util.linefeed = '\n'; + + RegExp.quote = function (string) { + return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&'); + }; + + var fs = require('fs'); + var path = require('path'); + var BsLessdocParser = require('./grunt/bs-lessdoc-parser.js'); + var generateRawFilesJs = require('./grunt/bs-raw-files-generator.js'); + var updateShrinkwrap = require('./grunt/shrinkwrap.js'); + + // Project configuration. + grunt.initConfig({ + + // Metadata. + pkg: grunt.file.readJSON('package.json'), + banner: '/*!\n' + + ' * Jasny Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' + + ' * Copyright 2012-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + + ' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' + + ' */\n', + jqueryCheck: 'if (typeof jQuery === \'undefined\') { throw new Error(\'Jasny Bootstrap\\\'s JavaScript requires jQuery\') }\n\n', + + // Task configuration. + clean: { + dist: ['dist', 'docs/dist'], + jekyll: ['_gh_pages'], + assets: ['assets/css/*.min.css', 'assets/js/*.min.js'], + jade: ['jade/*.jade'] + }, + + jshint: { + options: { + jshintrc: 'js/.jshintrc' + }, + grunt: { + options: { + jshintrc: 'grunt/.jshintrc' + }, + src: ['Gruntfile.js', 'grunt/*.js'] + }, + src: { + src: 'js/*.js' + }, + test: { + src: 'js/tests/unit/*.js' + }, + assets: { + src: ['docs/assets/js/application.js', 'docs/assets/js/customizer.js'] + } + }, + + jscs: { + options: { + config: 'js/.jscs.json', + }, + grunt: { + src: ['Gruntfile.js', 'grunt/*.js'] + }, + src: { + src: 'js/*.js' + }, + test: { + src: 'js/tests/unit/*.js' + }, + assets: { + src: ['docs/assets/js/application.js', 'docs/assets/js/customizer.js'] + } + }, + + csslint: { + options: { + csslintrc: 'less/.csslintrc' + }, + src: [ + 'dist/css/<%= pkg.name %>.css', + 'docs/assets/css/docs.css', + 'docs/examples/**/*.css' + ] + }, + + concat: { + options: { + banner: '<%= banner %>\n<%= jqueryCheck %>', + stripBanners: false + }, + bootstrap: { + src: [ + 'js/offcanvas.js', + 'js/rowlink.js', + 'js/inputmask.js', + 'js/fileinput.js' + ], + dest: 'dist/js/<%= pkg.name %>.js' + } + }, + + uglify: { + options: { + report: 'min' + }, + bootstrap: { + options: { + banner: '<%= banner %>' + }, + src: '<%= concat.bootstrap.dest %>', + dest: 'dist/js/<%= pkg.name %>.min.js' + }, + customize: { + options: { + preserveComments: 'some' + }, + src: [ + 'docs/assets/js/vendor/less.min.js', + 'docs/assets/js/vendor/jszip.min.js', + 'docs/assets/js/vendor/uglify.min.js', + 'docs/assets/js/vendor/blob.js', + 'docs/assets/js/vendor/filesaver.js', + 'docs/assets/js/raw-files.min.js', + 'docs/assets/js/customizer.js' + ], + dest: 'docs/assets/js/customize.min.js' + }, + docsJs: { + options: { + preserveComments: 'some' + }, + src: [ + 'docs/assets/js/vendor/holder.js', + 'docs/assets/js/application.js' + ], + dest: 'docs/assets/js/docs.min.js' + } + }, + + less: { + compileCore: { + options: { + strictMath: true, + sourceMap: true, + outputSourceFiles: true, + sourceMapURL: '<%= pkg.name %>.css.map', + sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map' + }, + files: { + 'dist/css/<%= pkg.name %>.css': 'less/build/<%= pkg.name %>.less' + } + }, + minify: { + options: { + cleancss: true, + report: 'min' + }, + files: { + 'dist/css/<%= pkg.name %>.min.css': 'dist/css/<%= pkg.name %>.css' + } + } + }, + + cssmin: { + compress: { + options: { + keepSpecialComments: '*', + noAdvanced: true, // turn advanced optimizations off until the issue is fixed in clean-css + report: 'min', + selectorsMergeMode: 'ie8' + }, + src: [ + 'docs/assets/css/docs.css', + 'docs/assets/css/pygments-manni.css' + ], + dest: 'docs/assets/css/docs.min.css' + } + }, + + usebanner: { + dist: { + options: { + position: 'top', + banner: '<%= banner %>' + }, + files: { + src: [ + 'dist/css/<%= pkg.name %>.css', + 'dist/css/<%= pkg.name %>.min.css' + ] + } + } + }, + + csscomb: { + options: { + config: 'less/.csscomb.json' + }, + dist: { + files: { + 'dist/css/<%= pkg.name %>.css': 'dist/css/<%= pkg.name %>.css' + } + }, + examples: { + expand: true, + cwd: 'docs/examples/', + src: ['**/*.css'], + dest: 'docs/examples/' + } + }, + + copy: { + docs: { + expand: true, + cwd: './dist', + src: [ + '{css,js}/*.min.*', + 'css/*.map' + ], + dest: 'docs/dist' + } + }, + + qunit: { + options: { + inject: 'js/tests/unit/phantom.js' + }, + files: 'js/tests/index.html' + }, + + connect: { + server: { + options: { + port: 3000, + base: '.' + } + } + }, + + jekyll: { + docs: {} + }, + + jade: { + compile: { + options: { + pretty: true, + data: function () { + var filePath = path.join(__dirname, 'less/build/variables.less'); + var fileContent = fs.readFileSync(filePath, {encoding: 'utf8'}); + var parser = new BsLessdocParser(fileContent); + return {sections: parser.parseFile()}; + } + }, + files: { + 'docs/_includes/customizer-variables.html': 'docs/jade/customizer-variables.jade', + 'docs/_includes/nav-customize.html': 'docs/jade/customizer-nav.jade' + } + } + }, + + validation: { + options: { + charset: 'utf-8', + doctype: 'HTML5', + failHard: true, + reset: true, + relaxerror: [ + 'Bad value X-UA-Compatible for attribute http-equiv on element meta.', + 'Element img is missing required attribute src.' + ] + }, + files: { + src: '_gh_pages/**/*.html' + } + }, + + watch: { + src: { + files: '<%= jshint.src.src %>', + tasks: ['jshint:src', 'qunit'] + }, + test: { + files: '<%= jshint.test.src %>', + tasks: ['jshint:test', 'qunit'] + }, + less: { + files: 'less/*.less', + tasks: 'less' + } + }, + + sed: { + versionNumber: { + pattern: (function () { + var old = grunt.option('oldver'); + return old ? RegExp.quote(old) : old; + })(), + replacement: grunt.option('newver'), + recursive: true + } + }, + + 'saucelabs-qunit': { + all: { + options: { + build: process.env.TRAVIS_JOB_ID, + concurrency: 10, + urls: ['http://127.0.0.1:3000/js/tests/index.html'], + browsers: grunt.file.readYAML('test-infra/sauce_browsers.yml') + } + } + }, + + exec: { + npmUpdate: { + command: 'npm update --silent' + }, + npmShrinkWrap: { + command: 'npm shrinkwrap --dev' + } + } + }); + + + // These plugins provide necessary tasks. + require('load-grunt-tasks')(grunt, {scope: 'devDependencies'}); + + // Docs HTML validation task + grunt.registerTask('validate-html', ['jekyll', 'validation']); + + // Test task. + var testSubtasks = []; + // Skip core tests if running a different subset of the test suite + if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'core') { + testSubtasks = testSubtasks.concat(['dist-css', 'csslint', 'jshint', 'jscs', 'qunit', 'build-customizer-html']); + } + // Skip HTML validation if running a different subset of the test suite + if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'validate-html') { + testSubtasks.push('validate-html'); + } + // Only run Sauce Labs tests if there's a Sauce access key + if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined' && + // Skip Sauce if running a different subset of the test suite + (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'sauce-js-unit')) { + testSubtasks.push('connect'); + testSubtasks.push('saucelabs-qunit'); + } + grunt.registerTask('test', testSubtasks); + + // JS distribution task. + grunt.registerTask('dist-js', ['concat', 'uglify']); + + // CSS distribution task. + grunt.registerTask('dist-css', ['less', 'cssmin', 'csscomb', 'usebanner']); + + // Docs distribution task. + grunt.registerTask('dist-docs', 'copy:docs'); + + // Full distribution task. + grunt.registerTask('dist', ['clean:dist', 'dist-css', 'dist-js', 'dist-docs']); + + // Default task. + grunt.registerTask('default', ['dist', 'build-customizer']); + + // 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'); + + // task for building customizer + grunt.registerTask('build-customizer', ['build-customizer-html', 'build-raw-files']); + grunt.registerTask('build-customizer-html', 'jade'); + grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () { + var banner = grunt.template.process('<%= banner %>'); + generateRawFilesJs(banner); + }); + + // Task for updating the npm packages used by the Travis build. + grunt.registerTask('update-shrinkwrap', ['exec:npmUpdate', 'exec:npmShrinkWrap', '_update-shrinkwrap']); + grunt.registerTask('_update-shrinkwrap', function () { updateShrinkwrap.call(this, grunt); }); +}; diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..d9a10c0d --- /dev/null +++ b/LICENSE @@ -0,0 +1,176 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/README.md b/README.md new file mode 100644 index 00000000..8c92950f --- /dev/null +++ b/README.md @@ -0,0 +1,176 @@ +# [Jasny Bootstrap](http://jasny.github.io/bootstrap/) [![Build Status](https://secure.travis-ci.org/jasny/bootstrap.png)](http://travis-ci.org/jasny/bootstrap)[![devDependency Status](https://david-dm.org/jasny/bootstrap/dev-status.png)](https://david-dm.org/jasny/bootstrap#info=devDependencies) + +Jasny Bootstrap is a fork of the famous [Twitter Bootstrap](http://getbootstrap.com/) with added components. + +* [Button labels](http://jasny.github.io/bootstrap/css/#buttons-labels) +* [Off canvas navmenu](http://jasny.github.io/bootstrap/components/#navmenu) +* [Fixed alerts](http://jasny.github.io/bootstrap/components/#alerts-fixed) +* [Row link](http://jasny.github.io/bootstrap/javascript/#rowlink) +* [Input mask](http://jasny.github.io/bootstrap/javascript/#inputmask) +* [File input widget](http://jasny.github.io/bootstrap/javascript/#fileinput) + +To get started, check out ! + + +## Quick start + +Three quick start options are available: + +* [Download the latest release](https://github.com/jasny/bootstrap/releases/tag/v3.0.0-p7). +* Clone the repo: `git clone git://github.com/jasny/bootstrap.git`. +* Install with [Bower](http://bower.io): `bower install bootstrap=jasny/bootstrap`. To install Jasny Bootstrap next to Twitter Bootstrap use `bower install jasny-bootstrap=jasny/bootstrap`. + +Read the [Getting Started page](http://jasny.github.io/bootstrap/getting-started/) for information on the framework contents, templates and examples, and more. + +### 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: + +``` +bootstrap/ +├── css/ +│ ├── bootstrap.css +│ ├── bootstrap.min.css +│ ├── bootstrap-theme.css +│ └── bootstrap-theme.min.css +├── js/ +│ ├── bootstrap.js +│ └── bootstrap.min.js +└── fonts/ + ├── glyphicons-halflings-regular.eot + ├── glyphicons-halflings-regular.svg + ├── glyphicons-halflings-regular.ttf + └── glyphicons-halflings-regular.woff +``` + +We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). Fonts from Glyphicons are included, as is the optional Bootstrap theme. + +Alternatively you can extend Twitter Bootstrap by downloading jasny-bootstrap.* files from the extension package, in conjunction with the original Twitter Bootstrap files or a custom build of Bootstrap. The structure of (the compiled) Jasny Bootstrap extension package is: + +``` +extend/ +├── css/ +│ ├── jasny-bootstrap.css +│ ├── jasny-bootstrap.min.css +└── js/ + ├── jasny-bootstrap.js + └── jasny-bootstrap.min.js +``` + +## Bugs and feature requests + +Have a bug or a feature request? [Please open a new issue](https://github.com/jasny/bootstrap/issues). Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/). + +You may use [this JS Bin](http://jsbin.com/iKumuWo/1/edit) as a template for your bug reports. + + + +## Documentation + +Bootstrap's documentation, included in this repo in the root directory, 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 v1.x). +2. From the root `/bootstrap` directory, run `jekyll serve` in the command line. + - **Windows users:** run `chcp 65001` first to change the command prompt's character encoding ([code page](http://en.wikipedia.org/wiki/Windows_code_page)) to UTF-8 so Jekyll runs without errors. +3. Open in your browser, and voilà. + +Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/). + +### Documentation for previous releases + +Documentation for v2.3.2 has been made available for the time being at while folks transition to Bootstrap 3. + +[Previous releases](https://github.com/jasny/bootstrap/releases) and their documentation are also available for download. + + + +## Compiling CSS and JavaScript + +Bootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working with the framework. It's how we compile our code, run tests, and more. To use it, install the required dependencies as directed and then run some Grunt commands. + +### Install Grunt + +From the command line: + +1. Install `grunt-cli` globally with `npm install -g grunt-cli`. +2. Navigate to the root `/bootstrap` directory, then run `npm install`. npm will look at [package.json](package.json) and automatically install the necessary local dependencies listed there. + +When completed, you'll be able to run the various Grunt commands provided from the command line. + +**Unfamiliar with `npm`? Don't have node installed?** That's a-okay. npm stands for [node packaged modules](http://npmjs.org/) and is a way to manage development dependencies through node.js. [Download and install node.js](http://nodejs.org/download/) before proceeding. + +### Available Grunt commands + +#### Build - `grunt` +Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).** + +#### Only compile CSS and JavaScript - `grunt dist` +`grunt dist` creates the `/dist` directory with compiled files. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).** + +#### Tests - `grunt test` +Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI). + +#### Watch - `grunt watch` +This is a convenience method for watching just Less files and automatically building them whenever you save. + +### Troubleshooting dependencies + +Should you encounter problems with installing dependencies or running Grunt commands, uninstall all previous dependency versions (global and local). Then, rerun `npm install`. + + + +## Contributing + +Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. + +More over, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo). + +Editor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at . + +With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). Please see the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md) for more information. + + +## Community + +Keep track of development and community news. + +* Follow [@ArnoldDaniels on Twitter](http://twitter.com/ArnoldDaniels). +* Have a question that's not a feature request or bug report? [Ask on stackoverflow.](http://stackoverflow.com/) + + + + +## Versioning + +Jasny Bootstrap follows the version of Twitter Bootstrap added with a custom patch number. + +`..-p` + +Backwards compatibility is only broken if Twitter Bootstrap also does so, in which case the major is incremented. + + +## Authors + +**Mark Otto** + ++ ++ + +**Jacob Thornton** + ++ ++ + +**Arnold Daniels** + ++ [http://twitter.com/ArnoldDaniels](http://twitter.com/ArnoldDaniels) ++ [http://github.com/jasny](http://github.com/jasny) ++ [http://jasny.net](http://jasny.net) + + +## Copyright and license + +Copyright 2013 Twitter, Inc under [the Apache 2.0 license](LICENSE). +Copyright 2013 Jasny BV under [the Apache 2.0 license](LICENSE). diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..5f6b4a67 --- /dev/null +++ b/_config.yml @@ -0,0 +1,31 @@ +# Dependencies +markdown: rdiscount +pygments: true + +# Permalinks +permalink: pretty + +# Server +source: ./docs +destination: ./_gh_pages +host: 0.0.0.0 +port: 9001 +baseurl: / +url: http://localhost:9001 +encoding: UTF-8 + +exclude: + - "jade" + - "vendor" + +# Custom vars +current_version: 3.1.0 +repo: https://github.com/jasny/bootstrap + +download: + source: https://github.com/jasny/bootstrap/archive/v3.1.0.zip + dist: https://github.com/jasny/bootstrap/releases/download/v3.1.0/bootstrap-3.1.0-dist.zip + +cdn: + css: //cdnjs.cloudflare.com/ajax/libs/jasny-bootstrap/3.1.0/css/jasny-bootstrap.min.css + js: //cdnjs.cloudflare.com/ajax/libs/jasny-bootstrap/3.1.0/js/jasny-bootstrap.min.js diff --git a/bower.json b/bower.json new file mode 100644 index 00000000..3f4d1369 --- /dev/null +++ b/bower.json @@ -0,0 +1,21 @@ +{ + "name": "jasny-bootstrap", + "version": "3.1.0", + "main": [ + "./dist/css/jasny-bootstrap.css", + "./dist/js/jasny-bootstrap.js" + ], + "ignore": [ + "**/.*", + "_config.yml", + "CNAME", + "composer.json", + "CONTRIBUTING.md", + "docs", + "js/tests" + ], + "dependencies": { + "jquery": ">= 1.9.0", + "bootstrap": ">= 3.0.0" + } +} diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..4dcf6ad5 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "jasny/bootstrap" + , "description": "The missing bootstrap components" + , "keywords": ["bootstrap", "css"] + , "homepage": "http://jasny.github.io/bootstrap" + , "authors": [ + { + "name": "Arnold Daniels", + "email": "arnold@jasny.net" + } + ] + , "support": { + "issues": "https://github.com/jasny/bootstrap/issues" + } + , "license": "Apache-2.0" + , "require": { + "twitter/bootstrap" : ">=3.0.0" + } +} diff --git a/dist/css/jasny-bootstrap.css b/dist/css/jasny-bootstrap.css new file mode 100644 index 00000000..f7f3735b --- /dev/null +++ b/dist/css/jasny-bootstrap.css @@ -0,0 +1,599 @@ +/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ + +@media (min-width: 1px) { + .container-smooth { + max-width: 1170px; + } +} +.btn-labeled { + padding-top: 0; + padding-bottom: 0; +} +.btn-label { + position: relative; + left: -12px; + display: inline-block; + padding: 6px 12px; + background: transparent; + background: rgba(0, 0, 0, .15); + border-radius: 3px 0 0 3px; +} +.btn-label.btn-label-right { + right: -12px; + left: auto; + border-radius: 0 3px 3px 0; +} +.btn-lg .btn-label { + left: -16px; + padding: 10px 16px; + border-radius: 5px 0 0 5px; +} +.btn-lg .btn-label.btn-label-right { + right: -16px; + left: auto; + border-radius: 0 5px 5px 0; +} +.btn-sm .btn-label { + left: -10px; + padding: 5px 10px; + border-radius: 2px 0 0 2px; +} +.btn-sm .btn-label.btn-label-right { + right: -10px; + left: auto; + border-radius: 0 2px 2px 0; +} +.btn-xs .btn-label { + left: -5px; + padding: 1px 5px; + border-radius: 2px 0 0 2px; +} +.btn-xs .btn-label.btn-label-right { + right: -5px; + left: auto; + border-radius: 0 2px 2px 0; +} +.nav-tabs-bottom { + border-top: 1px solid #ddd; + border-bottom: 0; +} +.nav-tabs-bottom > li { + margin-top: -1px; + margin-bottom: 0; +} +.nav-tabs-bottom > li > a { + border-radius: 0 0 4px 4px; +} +.nav-tabs-bottom > li > a:hover, +.nav-tabs-bottom > li > a:focus, +.nav-tabs-bottom > li.active > a, +.nav-tabs-bottom > li.active > a:hover, +.nav-tabs-bottom > li.active > a:focus { + border: 1px solid #ddd; + border-top-color: transparent; +} +.nav-tabs-left { + border-right: 1px solid #ddd; + border-bottom: 0; +} +.nav-tabs-left > li { + float: none; + margin-right: -1px; + margin-bottom: 0; +} +.nav-tabs-left > li > a { + margin-right: 0; + margin-bottom: 2px; + border-radius: 4px 0 0 4px; +} +.nav-tabs-left > li > a:hover, +.nav-tabs-left > li > a:focus, +.nav-tabs-left > li.active > a, +.nav-tabs-left > li.active > a:hover, +.nav-tabs-left > li.active > a:focus { + border: 1px solid #ddd; + border-right-color: transparent; +} +.row > .nav-tabs-left { + position: relative; + z-index: 1; + padding-right: 0; + padding-left: 15px; + margin-right: -1px; +} +.row > .nav-tabs-left + .tab-content { + border-left: 1px solid #ddd; +} +.nav-tabs-right { + border-bottom: 0; + border-left: 1px solid #ddd; +} +.nav-tabs-right > li { + float: none; + margin-bottom: 0; + margin-left: -1px; +} +.nav-tabs-right > li > a { + margin-bottom: 2px; + margin-left: 0; + border-radius: 0 4px 4px 0; +} +.nav-tabs-right > li > a:hover, +.nav-tabs-right > li > a:focus, +.nav-tabs-right > li.active > a, +.nav-tabs-right > li.active > a:hover, +.nav-tabs-right > li.active > a:focus { + border: 1px solid #ddd; + border-left-color: transparent; +} +.row > .nav-tabs-right { + padding-right: 15px; + padding-left: 0; +} +.navmenu, +.navbar-offcanvas { + width: 300px; + height: 100%; + border-style: solid; + border-width: 1px; + border-radius: 4px; +} +.navmenu-fixed-left, +.navmenu-fixed-right, +.navbar-offcanvas { + position: fixed; + top: 0; + z-index: 1030; + border-radius: 0; +} +.navmenu-fixed-left, +.navbar-offcanvas { + left: 0; + border-width: 0 1px 0 0; +} +.navmenu-fixed-right { + right: 0; + border-width: 0 0 0 1px; +} +.navmenu-nav { + margin-bottom: 10px; +} +.navmenu-nav.dropdown-menu { + position: static; + float: none; + padding-top: 0; + margin: 0; + border: none; + border-radius: 0; + -webkit-box-shadow: none; + box-shadow: none; +} +.navbar-offcanvas .navbar-nav { + margin: 0; +} +@media (min-width: 768px) { + .navbar-offcanvas { + width: auto; + border-top: 0; + box-shadow: none; + } + .navbar-offcanvas.offcanvas { + position: static; + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-offcanvas .navbar-nav.navbar-left:first-child { + margin-left: -15px; + } + .navbar-offcanvas .navbar-nav.navbar-right:last-child { + margin-right: -15px; + } + .navbar-offcanvas .navmenu-brand { + display: none; + } +} +.navmenu-brand { + display: block; + padding: 10px 15px; + margin: 10px 0; + font-size: 18px; + line-height: 20px; +} +.navmenu-brand:hover, +.navmenu-brand:focus { + text-decoration: none; +} +.navmenu-default, +.navbar-default .navbar-offcanvas { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navmenu-default .navmenu-brand, +.navbar-default .navbar-offcanvas .navmenu-brand { + color: #777; +} +.navmenu-default .navmenu-brand:hover, +.navbar-default .navbar-offcanvas .navmenu-brand:hover, +.navmenu-default .navmenu-brand:focus, +.navbar-default .navbar-offcanvas .navmenu-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navmenu-default .navmenu-text, +.navbar-default .navbar-offcanvas .navmenu-text { + color: #777; +} +.navmenu-default .navmenu-nav > .dropdown > a:hover .caret, +.navbar-default .navbar-offcanvas .navmenu-nav > .dropdown > a:hover .caret, +.navmenu-default .navmenu-nav > .dropdown > a:focus .caret, +.navbar-default .navbar-offcanvas .navmenu-nav > .dropdown > a:focus .caret { + border-top-color: #333; + border-bottom-color: #333; +} +.navmenu-default .navmenu-nav > .open > a, +.navbar-default .navbar-offcanvas .navmenu-nav > .open > a, +.navmenu-default .navmenu-nav > .open > a:hover, +.navbar-default .navbar-offcanvas .navmenu-nav > .open > a:hover, +.navmenu-default .navmenu-nav > .open > a:focus, +.navbar-default .navbar-offcanvas .navmenu-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navmenu-default .navmenu-nav > .open > a .caret, +.navbar-default .navbar-offcanvas .navmenu-nav > .open > a .caret, +.navmenu-default .navmenu-nav > .open > a:hover .caret, +.navbar-default .navbar-offcanvas .navmenu-nav > .open > a:hover .caret, +.navmenu-default .navmenu-nav > .open > a:focus .caret, +.navbar-default .navbar-offcanvas .navmenu-nav > .open > a:focus .caret { + border-top-color: #555; + border-bottom-color: #555; +} +.navmenu-default .navmenu-nav > .dropdown > a .caret, +.navbar-default .navbar-offcanvas .navmenu-nav > .dropdown > a .caret { + border-top-color: #777; + border-bottom-color: #777; +} +.navmenu-default .navmenu-nav.dropdown-menu, +.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu { + background-color: #e7e7e7; +} +.navmenu-default .navmenu-nav.dropdown-menu > .divider, +.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .divider { + background-color: #f8f8f8; +} +.navmenu-default .navmenu-nav.dropdown-menu > .active > a, +.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a, +.navmenu-default .navmenu-nav.dropdown-menu > .active > a:hover, +.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:hover, +.navmenu-default .navmenu-nav.dropdown-menu > .active > a:focus, +.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:focus { + background-color: #d7d7d7; +} +.navmenu-default .navmenu-nav > li > a, +.navbar-default .navbar-offcanvas .navmenu-nav > li > a { + color: #777; +} +.navmenu-default .navmenu-nav > li > a:hover, +.navbar-default .navbar-offcanvas .navmenu-nav > li > a:hover, +.navmenu-default .navmenu-nav > li > a:focus, +.navbar-default .navbar-offcanvas .navmenu-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navmenu-default .navmenu-nav > .active > a, +.navbar-default .navbar-offcanvas .navmenu-nav > .active > a, +.navmenu-default .navmenu-nav > .active > a:hover, +.navbar-default .navbar-offcanvas .navmenu-nav > .active > a:hover, +.navmenu-default .navmenu-nav > .active > a:focus, +.navbar-default .navbar-offcanvas .navmenu-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navmenu-default .navmenu-nav > .disabled > a, +.navbar-default .navbar-offcanvas .navmenu-nav > .disabled > a, +.navmenu-default .navmenu-nav > .disabled > a:hover, +.navbar-default .navbar-offcanvas .navmenu-nav > .disabled > a:hover, +.navmenu-default .navmenu-nav > .disabled > a:focus, +.navbar-default .navbar-offcanvas .navmenu-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navmenu-inverse, +.navbar-inverse .navbar-offcanvas { + background-color: #222; + border-color: #080808; +} +.navmenu-inverse .navmenu-brand, +.navbar-inverse .navbar-offcanvas .navmenu-brand { + color: #999; +} +.navmenu-inverse .navmenu-brand:hover, +.navbar-inverse .navbar-offcanvas .navmenu-brand:hover, +.navmenu-inverse .navmenu-brand:focus, +.navbar-inverse .navbar-offcanvas .navmenu-brand:focus { + color: #fff; + background-color: transparent; +} +.navmenu-inverse .navmenu-text, +.navbar-inverse .navbar-offcanvas .navmenu-text { + color: #999; +} +.navmenu-inverse .navmenu-nav > .dropdown > a:hover .caret, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .dropdown > a:hover .caret, +.navmenu-inverse .navmenu-nav > .dropdown > a:focus .caret, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .dropdown > a:focus .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.navmenu-inverse .navmenu-nav > .open > a, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a, +.navmenu-inverse .navmenu-nav > .open > a:hover, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:hover, +.navmenu-inverse .navmenu-nav > .open > a:focus, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:focus { + color: #fff; + background-color: #080808; +} +.navmenu-inverse .navmenu-nav > .open > a .caret, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a .caret, +.navmenu-inverse .navmenu-nav > .open > a:hover .caret, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:hover .caret, +.navmenu-inverse .navmenu-nav > .open > a:focus .caret, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .open > a:focus .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.navmenu-inverse .navmenu-nav > .dropdown > a .caret, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .dropdown > a .caret { + border-top-color: #999; + border-bottom-color: #999; +} +.navmenu-inverse .navmenu-nav.dropdown-menu, +.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu { + background-color: #080808; +} +.navmenu-inverse .navmenu-nav.dropdown-menu > .divider, +.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .divider { + background-color: #222; +} +.navmenu-inverse .navmenu-nav.dropdown-menu > .active > a, +.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a, +.navmenu-inverse .navmenu-nav.dropdown-menu > .active > a:hover, +.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:hover, +.navmenu-inverse .navmenu-nav.dropdown-menu > .active > a:focus, +.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu > .active > a:focus { + background-color: #000; +} +.navmenu-inverse .navmenu-nav > li > a, +.navbar-inverse .navbar-offcanvas .navmenu-nav > li > a { + color: #999; +} +.navmenu-inverse .navmenu-nav > li > a:hover, +.navbar-inverse .navbar-offcanvas .navmenu-nav > li > a:hover, +.navmenu-inverse .navmenu-nav > li > a:focus, +.navbar-inverse .navbar-offcanvas .navmenu-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navmenu-inverse .navmenu-nav > .active > a, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a, +.navmenu-inverse .navmenu-nav > .active > a:hover, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:hover, +.navmenu-inverse .navmenu-nav > .active > a:focus, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .active > a:focus { + color: #fff; + background-color: #080808; +} +.navmenu-inverse .navmenu-nav > .disabled > a, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .disabled > a, +.navmenu-inverse .navmenu-nav > .disabled > a:hover, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .disabled > a:hover, +.navmenu-inverse .navmenu-nav > .disabled > a:focus, +.navbar-inverse .navbar-offcanvas .navmenu-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.alert-fixed-top, +.alert-fixed-bottom { + position: fixed; + left: 0; + z-index: 1035; + width: 100%; + margin: 0; + border-radius: 0; +} +@media (min-width: 992px) { + .alert-fixed-top, + .alert-fixed-bottom { + left: 50%; + width: 992px; + margin-left: -496px; + } +} +.alert-fixed-top { + top: 0; + border-width: 0 0 1px 0; +} +@media (min-width: 992px) { + .alert-fixed-top { + border-width: 0 1px 1px 1px; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; + } +} +.alert-fixed-bottom { + bottom: 0; + border-width: 1px 0 0 0; +} +@media (min-width: 992px) { + .alert-fixed-bottom { + border-width: 1px 1px 0 1px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + } +} +.offcanvas { + display: none; +} +.offcanvas.in { + display: block; +} +@media (max-width: 767px) { + .offcanvas-xs { + display: none; + } + .offcanvas-xs.in { + display: block; + } +} +@media (max-width: 991px) { + .offcanvas-sm { + display: none; + } + .offcanvas-sm.in { + display: block; + } +} +@media (max-width: 1199px) { + .offcanvas-md { + display: none; + } + .offcanvas-md.in { + display: block; + } +} +.offcanvas-lg { + display: none; +} +.offcanvas-lg.in { + display: block; +} +.canvas-sliding { + -webkit-transition: top .35s, left .35s, bottom .35s, right .35s; + transition: top .35s, left .35s, bottom .35s, right .35s; +} +.offcanvas-clone { + position: absolute !important; + top: auto !important; + right: 0 !important; + bottom: 0 !important; + left: auto !important; + width: 0 !important; + height: 0 !important; + padding: 0 !important; + margin: 0 !important; + overflow: hidden !important; + border: none !important; + opacity: 0 !important; +} +.table.rowlink td:not(.rowlink-skip), +.table .rowlink td:not(.rowlink-skip) { + cursor: pointer; +} +.table.rowlink td:not(.rowlink-skip) a, +.table .rowlink td:not(.rowlink-skip) a { + font: inherit; + color: inherit; + text-decoration: inherit; +} +.table-hover.rowlink tr:hover td, +.table-hover .rowlink tr:hover td { + background-color: #cfcfcf; +} +.btn-file { + position: relative; + overflow: hidden; + vertical-align: middle; +} +.btn-file > input { + position: absolute; + top: 0; + right: 0; + height: 100%; + margin: 0; + font-size: 23px; + cursor: pointer; + filter: alpha(opacity=0); + opacity: 0; + transform: translate(-300px, 0) scale(4); + + direction: ltr; +} +.fileinput { + display: inline-block; + margin-bottom: 9px; +} +.fileinput .form-control { + display: inline-block; + padding-top: 7px; + padding-bottom: 5px; + margin-bottom: 0; + vertical-align: middle; + cursor: text; +} +.fileinput .thumbnail { + display: inline-block; + margin-bottom: 5px; + overflow: hidden; + text-align: center; + vertical-align: middle; +} +.fileinput .thumbnail > img { + max-height: 100%; +} +.fileinput .btn { + vertical-align: middle; +} +.fileinput-exists .fileinput-new, +.fileinput-new .fileinput-exists { + display: none; +} +.fileinput-inline .fileinput-controls { + display: inline; +} +.fileinput-filename { + display: inline-block; + overflow: hidden; + vertical-align: middle; +} +.form-control .fileinput-filename { + vertical-align: bottom; +} +.fileinput-new .input-group .btn-file { + border-radius: 0 4px 4px 0; +} +.fileinput-new .input-group .btn-file.btn-xs, +.fileinput-new .input-group .btn-file.btn-sm { + border-radius: 0 3px 3px 0; +} +.fileinput-new .input-group .btn-file.btn-lg { + border-radius: 0 6px 6px 0; +} +.form-group.has-warning .fileinput .fileinput-preview { + color: #8a6d3b; +} +.form-group.has-warning .fileinput .thumbnail { + border-color: #faebcc; +} +.form-group.has-error .fileinput .fileinput-preview { + color: #a94442; +} +.form-group.has-error .fileinput .thumbnail { + border-color: #ebccd1; +} +.form-group.has-success .fileinput .fileinput-preview { + color: #3c763d; +} +.form-group.has-success .fileinput .thumbnail { + border-color: #d6e9c6; +} +.input-group-addon:not(:first-child) { + border-left: 0; +} +/*# sourceMappingURL=jasny-bootstrap.css.map */ diff --git a/dist/css/jasny-bootstrap.css.map b/dist/css/jasny-bootstrap.css.map new file mode 100644 index 00000000..39d7a65c --- /dev/null +++ b/dist/css/jasny-bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["less/grid-container-smooth.less","less/button-labels.less","less/mixins.less","less/nav-tab-alignment.less","less/navmenu.less","less/alerts-fixed.less","less/offcanvas.less","less/rowlink.less","less/fileinput.less"],"names":[],"mappings":"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","sourcesContent":["// Smooth sizing container\n// -------------------------\n\n@media (min-width: 1px) {\n .container-smooth {\n max-width: @container-lg;\n }\n}\n\n","// Labels for buttons\n// --------------------------------------------------\n\n.btn-labeled {\n padding-top: 0;\n padding-bottom: 0;\n}\n\n.btn-label {\n position: relative;\n background: transparent;\n background: rgba(0, 0, 0, 0.15);\n display: inline-block;\n .button-label-size(@padding-base-vertical; @padding-base-horizontal; @border-radius-base);\n}\n\n.btn-lg .btn-label {\n .button-label-size(@padding-large-vertical; @padding-large-horizontal; @border-radius-large);\n}\n.btn-sm .btn-label {\n .button-label-size(@padding-small-vertical; @padding-small-horizontal; @border-radius-small);\n}\n.btn-xs .btn-label {\n .button-label-size(1px; 5px; @border-radius-small);\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n\n// BUTTONS\n// --------------------------------------------------\n\n.button-label-size(@padding-vertical; @padding-horizontal; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n left: (-1 * @padding-horizontal);\n border-radius: (@border-radius - 1px) 0 0 (@border-radius - 1px);\n\n &.btn-label-right {\n left: auto;\n right: (-1 * @padding-horizontal);\n border-radius: 0 (@border-radius - 1px) (@border-radius - 1px) 0;\n }\n}\n","// Alignment options\n// -------------------------\n\n// bottom\n.nav-tabs-bottom {\n border-bottom: 0;\n border-top: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-top: -1px;\n\n > a {\n border-radius: 0 0 @border-radius-base @border-radius-base;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-top-color: transparent;\n }\n }\n}\n\n// left\n.nav-tabs-left {\n border-bottom: 0;\n border-right: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-right: -1px;\n float: none;\n\n > a {\n border-radius: @border-radius-base 0 0 @border-radius-base;\n margin-right: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-right-color: transparent;\n }\n }\n\n .row > & {\n padding-right: 0;\n padding-left: (@grid-gutter-width / 2);\n margin-right: -1px;\n position: relative;\n z-index: 1;\n\n & + .tab-content {\n border-left: 1px solid @nav-tabs-active-link-hover-border-color;\n }\n }\n}\n\n// right\n.nav-tabs-right {\n border-bottom: 0;\n border-left: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-left: -1px;\n float: none;\n\n > a {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n margin-left: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-left-color: transparent;\n }\n }\n\n .row > & {\n padding-left: 0;\n padding-right: (@grid-gutter-width / 2);\n }\n}\n","//\n// Navmenu and offcanvas navbar\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navmenu from which we expand to create the fixed navmenu\n// variations.\n\n.navmenu,\n.navbar-offcanvas {\n width: @navmenu-width;\n height: 100%;\n border-width: 1px;\n border-style: solid;\n border-radius: @border-radius-base;\n}\n\n.navmenu-fixed-left,\n.navmenu-fixed-right,\n.navbar-offcanvas {\n position: fixed;\n z-index: @zindex-navmenu-fixed;\n top: 0;\n border-radius: 0;\n}\n.navmenu-fixed-left,\n.navbar-offcanvas {\n left: 0;\n border-width: 0 1px 0 0;\n}\n.navmenu-fixed-right {\n right: 0;\n border-width: 0 0 0 1px;\n}\n\n.navmenu-nav {\n margin-bottom: @navmenu-margin-vertical;\n\n &.dropdown-menu {\n position: static;\n margin: 0;\n padding-top: 0;\n float: none;\n border: none;\n .box-shadow(none);\n border-radius: 0;\n }\n}\n\n.navbar-offcanvas {\n .navbar-nav {\n margin: 0;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.offcanvas {\n position: static;\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n // Account for first and last children spacing\n .navbar-nav.navbar-left:first-child {\n margin-left: -@navbar-padding-horizontal;\n }\n .navbar-nav.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n\n .navmenu-brand {\n display: none;\n }\n }\n}\n\n// Brand/project name\n\n.navmenu-brand {\n display: block;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n }\n margin: @navmenu-margin-vertical 0;\n}\n\n// Alternate navmenus\n// --------------------------------------------------\n\n// Default navmenu\n.navmenu-default,\n.navbar-default .navbar-offcanvas {\n background-color: @navmenu-default-bg;\n border-color: @navmenu-default-border;\n\n .navmenu-brand {\n color: @navmenu-default-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-default-brand-hover-color;\n background-color: @navmenu-default-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-default-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-default-link-hover-color;\n border-bottom-color: @navmenu-default-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-default-link-active-bg;\n color: @navmenu-default-link-active-color;\n .caret {\n border-top-color: @navmenu-default-link-active-color;\n border-bottom-color: @navmenu-default-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-default-link-color;\n border-bottom-color: @navmenu-default-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-default-link-active-bg;\n & > .divider {\n background-color: @navmenu-default-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-default-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-default-link-color;\n &:hover,\n &:focus {\n color: @navmenu-default-link-hover-color;\n background-color: @navmenu-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-active-color;\n background-color: @navmenu-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-disabled-color;\n background-color: @navmenu-default-link-disabled-bg;\n }\n }\n }\n}\n\n// Inverse navmenu\n.navmenu-inverse,\n.navbar-inverse .navbar-offcanvas {\n background-color: @navmenu-inverse-bg;\n border-color: @navmenu-inverse-border;\n\n .navmenu-brand {\n color: @navmenu-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-brand-hover-color;\n background-color: @navmenu-inverse-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-inverse-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-inverse-link-hover-color;\n border-bottom-color: @navmenu-inverse-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-inverse-link-active-bg;\n color: @navmenu-inverse-link-active-color;\n .caret {\n border-top-color: @navmenu-inverse-link-active-color;\n border-bottom-color: @navmenu-inverse-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-inverse-link-color;\n border-bottom-color: @navmenu-inverse-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-inverse-link-active-bg;\n & > .divider {\n background-color: @navmenu-inverse-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-inverse-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-inverse-link-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-hover-color;\n background-color: @navmenu-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-active-color;\n background-color: @navmenu-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-disabled-color;\n background-color: @navmenu-inverse-link-disabled-bg;\n }\n }\n }\n}\n","// Fixed alerts\n//\n// Position to the top or bottom.\n\n.alert-fixed-top,\n.alert-fixed-bottom {\n position: fixed;\n width: 100%;\n z-index: @zindex-alert-fixed;\n border-radius: 0;\n margin: 0;\n left: 0;\n\n @media (min-width: @alert-fixed-width) {\n width: @alert-fixed-width;\n left: 50%;\n margin-left: (-1 * (@alert-fixed-width / 2));\n }\n}\n\n.alert-fixed-top {\n top: 0;\n border-width: 0 0 1px 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-bottom-radius(@alert-border-radius);\n border-width: 0 1px 1px 1px;\n }\n}\n\n.alert-fixed-bottom {\n bottom: 0;\n border-width: 1px 0 0 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-top-radius(@alert-border-radius);\n border-width: 1px 1px 0 1px;\n }\n}\n","//\n// Off canvas navigation\n// --------------------------------------------------\n\n.offcanvas {\n display: none;\n &.in {\n display: block;\n }\n}\n\n@media (max-width: @screen-xs-max) {\n .offcanvas-xs {\n .offcanvas;\n }\n}\n@media (max-width: @screen-sm-max) {\n .offcanvas-sm {\n .offcanvas;\n }\n}\n@media (max-width: @screen-md-max) {\n .offcanvas-md {\n .offcanvas;\n }\n}\n.offcanvas-lg {\n .offcanvas;\n}\n\n.canvas-sliding {\n -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n}\n\n.offcanvas-clone {\n height: 0px !important;\n width: 0px !important;\n overflow: hidden !important;\n border: none !important;\n margin: 0px !important;\n padding: 0px !important;\n position: absolute !important;\n top: auto !important;\n left: auto !important;\n bottom: 0px !important;\n right: 0px !important;\n opacity: 0 !important;\n}\n","//\n// Rowlink\n// --------------------------------------------------\n\n.table.rowlink,\n.table .rowlink {\n td:not(.rowlink-skip) {\n cursor: pointer;\n\n a {\n color: inherit;\n font: inherit;\n text-decoration: inherit;\n }\n }\n}\n\n.table-hover.rowlink,\n.table-hover .rowlink {\n tr:hover td {\n background-color: darken(@table-bg-hover, 15%);\n }\n}\n","// Fileinput.less\n// CSS for file upload button and fileinput widget\n// ------------------------------------------------\n\n.btn-file {\n overflow: hidden;\n position: relative;\n vertical-align: middle;\n > input {\n position: absolute;\n top: 0;\n right: 0;\n margin: 0;\n opacity: 0;\n filter: alpha(opacity=0);\n transform: translate(-300px, 0) scale(4);\n font-size: 23px;\n height: 100%;\n direction: ltr;\n cursor: pointer;\n }\n}\n\n.fileinput {\n margin-bottom: 9px;\n display: inline-block;\n .form-control {\n padding-top: 7px;\n padding-bottom: 5px;\n display: inline-block;\n margin-bottom: 0px;\n vertical-align: middle;\n cursor: text;\n }\n .thumbnail {\n overflow: hidden;\n display: inline-block;\n margin-bottom: 5px;\n vertical-align: middle;\n text-align: center;\n > img {\n max-height: 100%;\n }\n }\n .btn {\n vertical-align: middle;\n }\n}\n.fileinput-exists .fileinput-new,\n.fileinput-new .fileinput-exists {\n display: none;\n}\n.fileinput-inline .fileinput-controls {\n display: inline;\n}\n\n.fileinput-filename {\n vertical-align: middle;\n display: inline-block;\n overflow: hidden;\n}\n.form-control .fileinput-filename {\n vertical-align: bottom;\n}\n\n// Not 100% correct, but helps in typical use case\n.fileinput-new .input-group .btn-file {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n}\n.fileinput-new .input-group .btn-file.btn-xs,\n.fileinput-new .input-group .btn-file.btn-sm {\n border-radius: 0 @border-radius-small @border-radius-small 0;\n}\n.fileinput-new .input-group .btn-file.btn-lg {\n border-radius: 0 @border-radius-large @border-radius-large 0;\n}\n\n.form-group.has-warning .fileinput {\n .fileinput-preview {\n color: @state-warning-text;\n }\n .thumbnail {\n border-color: @state-warning-border;\n }\n}\n.form-group.has-error .fileinput {\n .fileinput-preview {\n color: @state-danger-text;\n }\n .thumbnail {\n border-color: @state-danger-border;\n }\n}\n.form-group.has-success .fileinput {\n .fileinput-preview {\n color: @state-success-text;\n }\n .thumbnail {\n border-color: @state-success-border;\n }\n}\n\n\n// Input group fixes\n\n.input-group-addon:not(:first-child) {\n border-left: 0;\n}\n"]} \ No newline at end of file diff --git a/dist/css/jasny-bootstrap.min.css b/dist/css/jasny-bootstrap.min.css new file mode 100644 index 00000000..58d244fa --- /dev/null +++ b/dist/css/jasny-bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ + +@media (min-width:1px){.container-smooth{max-width:1170px}}.btn-labeled{padding-top:0;padding-bottom:0}.btn-label{position:relative;background:0 0;background:rgba(0,0,0,.15);display:inline-block;padding:6px 12px;left:-12px;border-radius:3px 0 0 3px}.btn-label.btn-label-right{left:auto;right:-12px;border-radius:0 3px 3px 0}.btn-lg .btn-label{padding:10px 16px;left:-16px;border-radius:5px 0 0 5px}.btn-lg .btn-label.btn-label-right{left:auto;right:-16px;border-radius:0 5px 5px 0}.btn-sm .btn-label{padding:5px 10px;left:-10px;border-radius:2px 0 0 2px}.btn-sm .btn-label.btn-label-right{left:auto;right:-10px;border-radius:0 2px 2px 0}.btn-xs .btn-label{padding:1px 5px;left:-5px;border-radius:2px 0 0 2px}.btn-xs .btn-label.btn-label-right{left:auto;right:-5px;border-radius:0 2px 2px 0}.nav-tabs-bottom{border-bottom:0;border-top:1px solid #ddd}.nav-tabs-bottom>li{margin-bottom:0;margin-top:-1px}.nav-tabs-bottom>li>a{border-radius:0 0 4px 4px}.nav-tabs-bottom>li>a:hover,.nav-tabs-bottom>li>a:focus,.nav-tabs-bottom>li.active>a,.nav-tabs-bottom>li.active>a:hover,.nav-tabs-bottom>li.active>a:focus{border:1px solid #ddd;border-top-color:transparent}.nav-tabs-left{border-bottom:0;border-right:1px solid #ddd}.nav-tabs-left>li{margin-bottom:0;margin-right:-1px;float:none}.nav-tabs-left>li>a{border-radius:4px 0 0 4px;margin-right:0;margin-bottom:2px}.nav-tabs-left>li>a:hover,.nav-tabs-left>li>a:focus,.nav-tabs-left>li.active>a,.nav-tabs-left>li.active>a:hover,.nav-tabs-left>li.active>a:focus{border:1px solid #ddd;border-right-color:transparent}.row>.nav-tabs-left{padding-right:0;padding-left:15px;margin-right:-1px;position:relative;z-index:1}.row>.nav-tabs-left+.tab-content{border-left:1px solid #ddd}.nav-tabs-right{border-bottom:0;border-left:1px solid #ddd}.nav-tabs-right>li{margin-bottom:0;margin-left:-1px;float:none}.nav-tabs-right>li>a{border-radius:0 4px 4px 0;margin-left:0;margin-bottom:2px}.nav-tabs-right>li>a:hover,.nav-tabs-right>li>a:focus,.nav-tabs-right>li.active>a,.nav-tabs-right>li.active>a:hover,.nav-tabs-right>li.active>a:focus{border:1px solid #ddd;border-left-color:transparent}.row>.nav-tabs-right{padding-left:0;padding-right:15px}.navmenu,.navbar-offcanvas{width:300px;height:100%;border-width:1px;border-style:solid;border-radius:4px}.navmenu-fixed-left,.navmenu-fixed-right,.navbar-offcanvas{position:fixed;z-index:1030;top:0;border-radius:0}.navmenu-fixed-left,.navbar-offcanvas{left:0;border-width:0 1px 0 0}.navmenu-fixed-right{right:0;border-width:0 0 0 1px}.navmenu-nav{margin-bottom:10px}.navmenu-nav.dropdown-menu{position:static;margin:0;padding-top:0;float:none;border:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0}.navbar-offcanvas .navbar-nav{margin:0}@media (min-width:768px){.navbar-offcanvas{width:auto;border-top:0;box-shadow:none}.navbar-offcanvas.offcanvas{position:static;display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-offcanvas .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-offcanvas .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-offcanvas .navmenu-brand{display:none}}.navmenu-brand{display:block;font-size:18px;line-height:20px;padding:10px 15px;margin:10px 0}.navmenu-brand:hover,.navmenu-brand:focus{text-decoration:none}.navmenu-default,.navbar-default .navbar-offcanvas{background-color:#f8f8f8;border-color:#e7e7e7}.navmenu-default .navmenu-brand,.navbar-default .navbar-offcanvas .navmenu-brand{color:#777}.navmenu-default .navmenu-brand:hover,.navbar-default .navbar-offcanvas .navmenu-brand:hover,.navmenu-default .navmenu-brand:focus,.navbar-default .navbar-offcanvas .navmenu-brand:focus{color:#5e5e5e;background-color:transparent}.navmenu-default .navmenu-text,.navbar-default .navbar-offcanvas .navmenu-text{color:#777}.navmenu-default .navmenu-nav>.dropdown>a:hover .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a:hover .caret,.navmenu-default .navmenu-nav>.dropdown>a:focus .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navmenu-default .navmenu-nav>.open>a,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a,.navmenu-default .navmenu-nav>.open>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:hover,.navmenu-default .navmenu-nav>.open>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:focus{background-color:#e7e7e7;color:#555}.navmenu-default .navmenu-nav>.open>a .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a .caret,.navmenu-default .navmenu-nav>.open>a:hover .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:hover .caret,.navmenu-default .navmenu-nav>.open>a:focus .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navmenu-default .navmenu-nav>.dropdown>a .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}.navmenu-default .navmenu-nav.dropdown-menu,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu{background-color:#e7e7e7}.navmenu-default .navmenu-nav.dropdown-menu>.divider,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.divider{background-color:#f8f8f8}.navmenu-default .navmenu-nav.dropdown-menu>.active>a,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a,.navmenu-default .navmenu-nav.dropdown-menu>.active>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:hover,.navmenu-default .navmenu-nav.dropdown-menu>.active>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:focus{background-color:#d7d7d7}.navmenu-default .navmenu-nav>li>a,.navbar-default .navbar-offcanvas .navmenu-nav>li>a{color:#777}.navmenu-default .navmenu-nav>li>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>li>a:hover,.navmenu-default .navmenu-nav>li>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>li>a:focus{color:#333;background-color:transparent}.navmenu-default .navmenu-nav>.active>a,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a,.navmenu-default .navmenu-nav>.active>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a:hover,.navmenu-default .navmenu-nav>.active>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navmenu-default .navmenu-nav>.disabled>a,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a,.navmenu-default .navmenu-nav>.disabled>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a:hover,.navmenu-default .navmenu-nav>.disabled>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navmenu-inverse,.navbar-inverse .navbar-offcanvas{background-color:#222;border-color:#080808}.navmenu-inverse .navmenu-brand,.navbar-inverse .navbar-offcanvas .navmenu-brand{color:#999}.navmenu-inverse .navmenu-brand:hover,.navbar-inverse .navbar-offcanvas .navmenu-brand:hover,.navmenu-inverse .navmenu-brand:focus,.navbar-inverse .navbar-offcanvas .navmenu-brand:focus{color:#fff;background-color:transparent}.navmenu-inverse .navmenu-text,.navbar-inverse .navbar-offcanvas .navmenu-text{color:#999}.navmenu-inverse .navmenu-nav>.dropdown>a:hover .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a:hover .caret,.navmenu-inverse .navmenu-nav>.dropdown>a:focus .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navmenu-inverse .navmenu-nav>.open>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a,.navmenu-inverse .navmenu-nav>.open>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:hover,.navmenu-inverse .navmenu-nav>.open>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:focus{background-color:#080808;color:#fff}.navmenu-inverse .navmenu-nav>.open>a .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a .caret,.navmenu-inverse .navmenu-nav>.open>a:hover .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:hover .caret,.navmenu-inverse .navmenu-nav>.open>a:focus .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navmenu-inverse .navmenu-nav>.dropdown>a .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navmenu-inverse .navmenu-nav.dropdown-menu,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu{background-color:#080808}.navmenu-inverse .navmenu-nav.dropdown-menu>.divider,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.divider{background-color:#222}.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a,.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:hover,.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:focus{background-color:#000}.navmenu-inverse .navmenu-nav>li>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a{color:#999}.navmenu-inverse .navmenu-nav>li>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a:hover,.navmenu-inverse .navmenu-nav>li>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a:focus{color:#fff;background-color:transparent}.navmenu-inverse .navmenu-nav>.active>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a,.navmenu-inverse .navmenu-nav>.active>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a:hover,.navmenu-inverse .navmenu-nav>.active>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a:focus{color:#fff;background-color:#080808}.navmenu-inverse .navmenu-nav>.disabled>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a,.navmenu-inverse .navmenu-nav>.disabled>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a:hover,.navmenu-inverse .navmenu-nav>.disabled>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a:focus{color:#444;background-color:transparent}.alert-fixed-top,.alert-fixed-bottom{position:fixed;width:100%;z-index:1035;border-radius:0;margin:0;left:0}@media (min-width:992px){.alert-fixed-top,.alert-fixed-bottom{width:992px;left:50%;margin-left:-496px}}.alert-fixed-top{top:0;border-width:0 0 1px}@media (min-width:992px){.alert-fixed-top{border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-width:0 1px 1px}}.alert-fixed-bottom{bottom:0;border-width:1px 0 0}@media (min-width:992px){.alert-fixed-bottom{border-top-right-radius:4px;border-top-left-radius:4px;border-width:1px 1px 0}}.offcanvas{display:none}.offcanvas.in{display:block}@media (max-width:767px){.offcanvas-xs{display:none}.offcanvas-xs.in{display:block}}@media (max-width:991px){.offcanvas-sm{display:none}.offcanvas-sm.in{display:block}}@media (max-width:1199px){.offcanvas-md{display:none}.offcanvas-md.in{display:block}}.offcanvas-lg{display:none}.offcanvas-lg.in{display:block}.canvas-sliding{-webkit-transition:top .35s,left .35s,bottom .35s,right .35s;transition:top .35s,left .35s,bottom .35s,right .35s}.offcanvas-clone{height:0!important;width:0!important;overflow:hidden!important;border:0!important;margin:0!important;padding:0!important;position:absolute!important;top:auto!important;left:auto!important;bottom:0!important;right:0!important;opacity:0!important}.table.rowlink td:not(.rowlink-skip),.table .rowlink td:not(.rowlink-skip){cursor:pointer}.table.rowlink td:not(.rowlink-skip) a,.table .rowlink td:not(.rowlink-skip) a{color:inherit;font:inherit;text-decoration:inherit}.table-hover.rowlink tr:hover td,.table-hover .rowlink tr:hover td{background-color:#cfcfcf}.btn-file{overflow:hidden;position:relative;vertical-align:middle}.btn-file>input{position:absolute;top:0;right:0;margin:0;opacity:0;filter:alpha(opacity=0);transform:translate(-300px,0) scale(4);font-size:23px;height:100%;direction:ltr;cursor:pointer}.fileinput{margin-bottom:9px;display:inline-block}.fileinput .form-control{padding-top:7px;padding-bottom:5px;display:inline-block;margin-bottom:0;vertical-align:middle;cursor:text}.fileinput .thumbnail{overflow:hidden;display:inline-block;margin-bottom:5px;vertical-align:middle;text-align:center}.fileinput .thumbnail>img{max-height:100%}.fileinput .btn{vertical-align:middle}.fileinput-exists .fileinput-new,.fileinput-new .fileinput-exists{display:none}.fileinput-inline .fileinput-controls{display:inline}.fileinput-filename{vertical-align:middle;display:inline-block;overflow:hidden}.form-control .fileinput-filename{vertical-align:bottom}.fileinput-new .input-group .btn-file{border-radius:0 4px 4px 0}.fileinput-new .input-group .btn-file.btn-xs,.fileinput-new .input-group .btn-file.btn-sm{border-radius:0 3px 3px 0}.fileinput-new .input-group .btn-file.btn-lg{border-radius:0 6px 6px 0}.form-group.has-warning .fileinput .fileinput-preview{color:#8a6d3b}.form-group.has-warning .fileinput .thumbnail{border-color:#faebcc}.form-group.has-error .fileinput .fileinput-preview{color:#a94442}.form-group.has-error .fileinput .thumbnail{border-color:#ebccd1}.form-group.has-success .fileinput .fileinput-preview{color:#3c763d}.form-group.has-success .fileinput .thumbnail{border-color:#d6e9c6}.input-group-addon:not(:first-child){border-left:0} \ No newline at end of file diff --git a/dist/js/jasny-bootstrap.js b/dist/js/jasny-bootstrap.js new file mode 100644 index 00000000..8fee37cc --- /dev/null +++ b/dist/js/jasny-bootstrap.js @@ -0,0 +1,941 @@ +/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ + +if (typeof jQuery === 'undefined') { throw new Error('Jasny Bootstrap\'s JavaScript requires jQuery') } + +/* ======================================================================== + * Bootstrap: offcanvas.js v3.0.3-p7 + * http://jasny.github.io/bootstrap/javascript.html#offcanvas + * + * Based on Boostrap collapse.js by Twitter, Inc. + * ======================================================================== + * Copyright 2013 Jasny, BV. + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + ++function ($) { "use strict"; + + // OFFCANVAS PUBLIC CLASS DEFINITION + // ================================= + + var OffCanvas = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, OffCanvas.DEFAULTS, options) + this.state = null + + if (this.options.recalc) { + this.calcClone() + $(window).on('resize', $.proxy(this.recalc, this)) + } + + if (this.options.autohide) + $(document).on('click', $.proxy(this.autohide, this)) + + if (this.options.toggle) this.toggle() + } + + OffCanvas.DEFAULTS = { + toggle: true, + placement: 'left', + autohide: true, + recalc: true + } + + OffCanvas.prototype.offset = function () { + switch (this.options.placement) { + case 'left': + case 'right': return this.$element.outerWidth() + case 'top': + case 'bottom': return this.$element.outerHeight() + } + } + + OffCanvas.prototype.calcPlacement = function () { + var horizontal = $(window).width() / this.$element.width(), + vertical = $(window).height() / this.$element.height() + + if (!this.$element.hasClass('in')) { + this.$element.css('visiblity', 'hidden !important').addClass('in') + } + + var element = this.$element + function ab(a, b) { + if (element.css(b) === 'auto') return a + if (element.css(a) === 'auto') return b + + var size_a = parseInt(element.css(a), 10), + size_b = parseInt(element.css(b), 10) + + return size_a > size_b ? b : a + } + + this.options.placement = horizontal > vertical ? ab('left', 'right') : ab('top', 'bottom') + + if (this.$element.css('visibility') === 'hidden !important') { + this.$element.removeClass('in').css('visiblity', '') + } + } + + OffCanvas.prototype.opposite = function (placement) { + switch (placement) { + case 'top': return 'bottom' + case 'left': return 'right' + case 'bottom': return 'top' + case 'right': return 'left' + } + } + + OffCanvas.prototype.getCanvasElements = function() { + // Return a set containing the canvas plus all fixed elements + var canvas = this.options.canvas ? $(this.options.canvas) : this.$element + + var fixed_elements = canvas.find('*').filter(function() { + return $(this).css('position') === 'fixed' + }).not(this.options.exclude) + + return canvas.add(fixed_elements) + } + + OffCanvas.prototype.slide = function (elements, offset, callback) { + // Use jQuery animation if CSS transitions aren't supported + if (!$.support.transition) { + var anim = {} + anim[this.options.placement] = "+=" + offset + return elements.animate(anim, 350, callback) + } + + var placement = this.options.placement, + opposite = this.opposite(placement) + + elements.each(function() { + if ($(this).css(placement) !== 'auto') + $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset) + + if ($(this).css(opposite) !== 'auto') + $(this).css(opposite, (parseInt($(this).css(opposite), 10) || 0) - offset) + }) + + this.$element + .one($.support.transition.end, callback) + .emulateTransitionEnd(350) + } + + OffCanvas.prototype.disableScrolling = function() { + var bodyWidth = $('body').width() + var prop = 'padding-' + this.opposite(this.options.placement) + + if ($('body').data('offcanvas-style') === undefined) $('body').data('offcanvas-style', $('body').attr('style')) + + $('body').css('overflow', 'hidden') + + if ($('body').width() > bodyWidth) { + var padding = parseInt($('body').css(prop), 10) + $('body').width() - bodyWidth + + setTimeout(function() { + $('body').css(prop, padding) + }, 1) + } + } + + OffCanvas.prototype.show = function () { + if (this.state) return + + var startEvent = $.Event('show.bs.offcanvas') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + if (this.options.placement === 'auto') this.calcPlacement() + + this.state = 'sliding' + + var elements = this.getCanvasElements() + var offset = this.offset(), + placement = this.options.placement, + opposite = this.opposite(placement) + + elements.addClass('canvas-sliding').each(function() { + $(this).data('offcanvas-style', $(this).attr('style') || '') + if ($(this).css('position') === 'static') $(this).css('position', 'relative') + if (($(this).css(placement) === 'auto' || $(this).css(placement) === '0px') && + ($(this).css(opposite) === 'auto' || $(this).css(opposite) === '0px')) { + $(this).css(placement, 0) + } + }) + + if (elements.index(this.$element) !== -1) this.$element.css(placement, -1 * offset) + + this.disableScrolling() + + var complete = function () { + this.state = 'slid' + + elements.removeClass('canvas-sliding').addClass('canvas-slid') + this.$element.trigger('shown.bs.offcanvas') + } + + setTimeout($.proxy(function() { + this.$element.addClass('in') + this.slide(elements, offset, $.proxy(complete, this)) + }, this), 1) + } + + OffCanvas.prototype.hide = function (fast) { + if (this.state !== 'slid') return + + var startEvent = $.Event('hide.bs.offcanvas') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + this.state = 'sliding' + + var elements = $('.canvas-slid') + var offset = -1 * this.offset() + + var complete = function () { + this.state = null + + this.$element.removeClass('in') + + elements.removeClass('canvas-sliding') + elements.add('body').each(function() { + $(this).attr('style', $(this).data('offcanvas-style')).removeData('offcanvas-style') + }) + + this.$element.trigger('hidden.bs.offcanvas') + } + + elements.removeClass('canvas-slid').addClass('canvas-sliding') + + setTimeout($.proxy(function() { + this.slide(elements, offset, $.proxy(complete, this)) + }, this), 1) + } + + OffCanvas.prototype.toggle = function () { + if (this.state === 'sliding') return + this[this.state === 'slid' ? 'hide' : 'show']() + } + + OffCanvas.prototype.calcClone = function() { + this.$calcClone = this.$element.clone() + .html('') + .addClass('offcanvas-clone').removeClass('in') + .appendTo($('body')) + } + + OffCanvas.prototype.recalc = function () { + if (this.state() !== 'slid' || this.$calcClone.css('display') === 'none') return + + var offset = -1 * this.offset() + + var placement = this.options.placement + this.getCanvasElements().each(function() { + $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset) + }).removeClass('canvas-slid') + + $('body').css('overflow', '') + this.$element.css(placement, '').removeClass('in canvas-slid') + } + + OffCanvas.prototype.autohide = function (e) { + if ($(e.target).closest(this.$element).length === 0) this.hide() + } + + // OFFCANVAS PLUGIN DEFINITION + // ========================== + + var old = $.fn.offcanvas + + $.fn.offcanvas = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.offcanvas') + var options = $.extend({}, OffCanvas.DEFAULTS, $this.data(), typeof option == 'object' && option) + + if (!data) $this.data('bs.offcanvas', (data = new OffCanvas(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.offcanvas.Constructor = OffCanvas + + + // OFFCANVAS NO CONFLICT + // ==================== + + $.fn.offcanvas.noConflict = function () { + $.fn.offcanvas = old + return this + } + + + // OFFCANVAS DATA-API + // ================= + + $(document).on('click.bs.offcanvas.data-api', '[data-toggle=offcanvas]', function (e) { + var $this = $(this), href + var target = $this.attr('data-target') + || e.preventDefault() + || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 + var $canvas = $(target) + var data = $canvas.data('bs.offcanvas') + var option = data ? 'toggle' : $this.data() + + e.stopPropagation() + + if (data) data.toggle() + else $canvas.offcanvas(option) + }) + +}(window.jQuery); + +/* ============================================================ + * Bootstrap: rowlink.js v3.0.0-p7 + * http://jasny.github.io/bootstrap/javascript.html#rowlink + * ============================================================ + * Copyright 2012 Jasny BV, Netherlands. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + ++function ($) { "use strict"; + + var Rowlink = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Rowlink.DEFAULTS, options) + + this.$element.on('click.bs.rowlink', 'td:not(.rowlink-skip)', $.proxy(this.click, this)) + } + + Rowlink.DEFAULTS = { + target: "a" + } + + Rowlink.prototype.click = function(e) { + var target = $(e.currentTarget).closest('tr').find(this.options.target)[0] + if ($(e.target)[0] === target) return + + e.preventDefault(); + + if (target.click) { + target.click() + } else if (document.createEvent) { + var evt = document.createEvent("MouseEvents"); + evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); + target.dispatchEvent(evt); + } + } + + + // ROWLINK PLUGIN DEFINITION + // =========================== + + var old = $.fn.rowlink + + $.fn.rowlink = function (options) { + return this.each(function () { + var $this = $(this) + var data = $this.data('rowlink') + if (!data) $this.data('rowlink', (data = new Rowlink(this, options))) + }) + } + + $.fn.rowlink.Constructor = Rowlink + + + // ROWLINK NO CONFLICT + // ==================== + + $.fn.rowlink.noConflict = function () { + $.fn.rowlink = old + return this + } + + + // ROWLINK DATA-API + // ================== + + $(document).on('click.bs.rowlink.data-api', '[data-link="row"]', function (e) { + var $this = $(this) + if ($this.data('rowlink')) return + $this.rowlink($this.data()) + $(e.target).trigger('click.bs.rowlink') + }) + +}(window.jQuery); + +/* =========================================================== + * Bootstrap: inputmask.js v3.0.0-p7 + * http://jasny.github.io/bootstrap/javascript.html#inputmask + * Based on Masked Input plugin by Josh Bush (digitalbush.com) + * =========================================================== + * Copyright 2012 Jasny BV, Netherlands. + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + ++function ($) { "use strict"; + + var isIphone = (window.orientation !== undefined) + var isAndroid = navigator.userAgent.toLowerCase().indexOf("android") > -1 + var isIE = window.navigator.appName == 'Microsoft Internet Explorer' + + // INPUTMASK PUBLIC CLASS DEFINITION + // ================================= + + var Inputmask = function (element, options) { + if (isAndroid) return // No support because caret positioning doesn't work on Android + + this.$element = $(element) + this.options = $.extend({}, Inputmask.DEFAULS, options) + this.mask = String(this.options.mask) + + this.init() + this.listen() + + this.checkVal() //Perform initial check for existing values + } + + Inputmask.DEFAULS = { + mask: "", + placeholder: "_", + definitions: { + '9': "[0-9]", + 'a': "[A-Za-z]", + '?': "[A-Za-z0-9]", + '*': "." + } + } + + Inputmask.prototype.init = function() { + var defs = this.options.definitions + var len = this.mask.length + + this.tests = [] + this.partialPosition = this.mask.length + this.firstNonMaskPos = null + + $.each(this.mask.split(""), $.proxy(function(i, c) { + if (c == '?') { + len-- + this.partialPosition = i + } else if (defs[c]) { + this.tests.push(new RegExp(defs[c])) + if (this.firstNonMaskPos === null) + this.firstNonMaskPos = this.tests.length - 1 + } else { + this.tests.push(null) + } + }, this)) + + this.buffer = $.map(this.mask.split(""), $.proxy(function(c, i) { + if (c != '?') return defs[c] ? this.options.placeholder : c + }, this)) + + this.focusText = this.$element.val() + + this.$element.data("rawMaskFn", $.proxy(function() { + return $.map(this.buffer, function(c, i) { + return this.tests[i] && c != this.options.placeholder ? c : null + }).join('') + }, this)) + } + + Inputmask.prototype.listen = function() { + if (this.$element.attr("readonly")) return + + var pasteEventName = (isIE ? 'paste' : 'input') + ".mask" + + this.$element + .on("unmask.bs.inputmask", $.proxy(this.unmask, this)) + + .on("focus.bs.inputmask", $.proxy(this.focusEvent, this)) + .on("blur.bs.inputmask", $.proxy(this.blurEvent, this)) + + .on("keydown.bs.inputmask", $.proxy(this.keydownEvent, this)) + .on("keypress.bs.inputmask", $.proxy(this.keypressEvent, this)) + + .on(pasteEventName, $.proxy(this.pasteEvent, this)) + } + + //Helper Function for Caret positioning + Inputmask.prototype.caret = function(begin, end) { + if (this.$element.length === 0) return + if (typeof begin == 'number') { + end = (typeof end == 'number') ? end : begin + return this.$element.each(function() { + if (this.setSelectionRange) { + this.setSelectionRange(begin, end) + } else if (this.createTextRange) { + var range = this.createTextRange() + range.collapse(true) + range.moveEnd('character', end) + range.moveStart('character', begin) + range.select() + } + }) + } else { + if (this.$element[0].setSelectionRange) { + begin = this.$element[0].selectionStart + end = this.$element[0].selectionEnd + } else if (document.selection && document.selection.createRange) { + var range = document.selection.createRange() + begin = 0 - range.duplicate().moveStart('character', -100000) + end = begin + range.text.length + } + return { + begin: begin, + end: end + } + } + } + + Inputmask.prototype.seekNext = function(pos) { + var len = this.mask.length + while (++pos <= len && !this.tests[pos]); + + return pos + } + + Inputmask.prototype.seekPrev = function(pos) { + while (--pos >= 0 && !this.tests[pos]); + + return pos + } + + Inputmask.prototype.shiftL = function(begin,end) { + var len = this.mask.length + + if (begin < 0) return + + for (var i = begin, j = this.seekNext(end); i < len; i++) { + if (this.tests[i]) { + if (j < len && this.tests[i].test(this.buffer[j])) { + this.buffer[i] = this.buffer[j] + this.buffer[j] = this.options.placeholder + } else + break + j = this.seekNext(j) + } + } + this.writeBuffer() + this.caret(Math.max(this.firstNonMaskPos, begin)) + } + + Inputmask.prototype.shiftR = function(pos) { + var len = this.mask.length + + for (var i = pos, c = this.options.placeholder; i < len; i++) { + if (this.tests[i]) { + var j = this.seekNext(i) + var t = this.buffer[i] + this.buffer[i] = c + if (j < len && this.tests[j].test(t)) + c = t + else + break + } + } + }, + + Inputmask.prototype.unmask = function() { + this.$element + .unbind(".mask") + .removeData("inputmask") + } + + Inputmask.prototype.focusEvent = function() { + this.focusText = this.$element.val() + var len = this.mask.length + var pos = this.checkVal() + this.writeBuffer() + + var that = this + var moveCaret = function() { + if (pos == len) + that.caret(0, pos) + else + that.caret(pos) + } + + moveCaret() + setTimeout(moveCaret, 50) + } + + Inputmask.prototype.blurEvent = function() { + this.checkVal() + if (this.$element.val() !== this.focusText) + this.$element.trigger('change') + } + + Inputmask.prototype.keydownEvent = function(e) { + var k = e.which + + //backspace, delete, and escape get special treatment + if (k == 8 || k == 46 || (isIphone && k == 127)) { + var pos = this.caret(), + begin = pos.begin, + end = pos.end + + if (end - begin === 0) { + begin = k != 46 ? this.seekPrev(begin) : (end = this.seekNext(begin - 1)) + end = k == 46 ? this.seekNext(end) : end + } + this.clearBuffer(begin, end) + this.shiftL(begin, end - 1) + + return false + } else if (k == 27) {//escape + this.$element.val(this.focusText) + this.caret(0, this.checkVal()) + return false + } + } + + Inputmask.prototype.keypressEvent = function(e) { + var len = this.mask.length + + var k = e.which, + pos = this.caret() + + if (e.ctrlKey || e.altKey || e.metaKey || k < 32) {//Ignore + return true + } else if (k) { + if (pos.end - pos.begin !== 0) { + this.clearBuffer(pos.begin, pos.end) + this.shiftL(pos.begin, pos.end - 1) + } + + var p = this.seekNext(pos.begin - 1) + if (p < len) { + var c = String.fromCharCode(k) + if (this.tests[p].test(c)) { + this.shiftR(p) + this.buffer[p] = c + this.writeBuffer() + var next = this.seekNext(p) + this.caret(next) + } + } + return false + } + } + + Inputmask.prototype.pasteEvent = function() { + var that = this + + setTimeout(function() { + that.caret(that.checkVal(true)) + }, 0) + } + + Inputmask.prototype.clearBuffer = function(start, end) { + var len = this.mask.length + + for (var i = start; i < end && i < len; i++) { + if (this.tests[i]) + this.buffer[i] = this.options.placeholder + } + } + + Inputmask.prototype.writeBuffer = function() { + return this.$element.val(this.buffer.join('')).val() + } + + Inputmask.prototype.checkVal = function(allow) { + var len = this.mask.length + //try to place characters where they belong + var test = this.$element.val() + var lastMatch = -1 + + for (var i = 0, pos = 0; i < len; i++) { + if (this.tests[i]) { + this.buffer[i] = this.options.placeholder + while (pos++ < test.length) { + var c = test.charAt(pos - 1) + if (this.tests[i].test(c)) { + this.buffer[i] = c + lastMatch = i + break + } + } + if (pos > test.length) + break + } else if (this.buffer[i] == test.charAt(pos) && i != this.partialPosition) { + pos++ + lastMatch = i + } + } + if (!allow && lastMatch + 1 < this.partialPosition) { + this.$element.val("") + this.clearBuffer(0, len) + } else if (allow || lastMatch + 1 >= this.partialPosition) { + this.writeBuffer() + if (!allow) this.$element.val(this.$element.val().substring(0, lastMatch + 1)) + } + return (this.partialPosition ? i : this.firstNonMaskPos) + } + + + // INPUTMASK PLUGIN DEFINITION + // =========================== + + var old = $.fn.inputmask + + $.fn.inputmask = function (options) { + return this.each(function () { + var $this = $(this) + var data = $this.data('inputmask') + + if (!data) $this.data('inputmask', (data = new Inputmask(this, options))) + }) + } + + $.fn.inputmask.Constructor = Inputmask + + + // INPUTMASK NO CONFLICT + // ==================== + + $.fn.inputmask.noConflict = function () { + $.fn.inputmask = old + return this + } + + + // INPUTMASK DATA-API + // ================== + + $(document).on('focus.bs.inputmask.data-api', '[data-mask]', function (e) { + var $this = $(this) + if ($this.data('inputmask')) return + $this.inputmask($this.data()) + }) + +}(window.jQuery); + +/* =========================================================== + * Bootstrap: fileinput.js v3.1.0 + * http://jasny.github.com/bootstrap/javascript/#fileinput + * =========================================================== + * Copyright 2012-2014 Jasny BV, Netherlands. + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + ++function ($) { "use strict"; + + var isIE = window.navigator.appName == 'Microsoft Internet Explorer' + + // FILEUPLOAD PUBLIC CLASS DEFINITION + // ================================= + + var Fileinput = function (element, options) { + this.$element = $(element) + + this.$input = this.$element.find(':file') + if (this.$input.length === 0) return + + this.name = this.$input.attr('name') || options.name + + this.$hidden = this.$element.find('input[type=hidden][name="' + this.name + '"]') + if (this.$hidden.length === 0) { + this.$hidden = $('') + this.$element.prepend(this.$hidden) + } + + this.$preview = this.$element.find('.fileinput-preview') + var height = this.$preview.css('height') + if (this.$preview.css('display') != 'inline' && height != '0px' && height != 'none') this.$preview.css('line-height', height) + + this.original = { + exists: this.$element.hasClass('fileinput-exists'), + preview: this.$preview.html(), + hiddenVal: this.$hidden.val() + } + + this.listen() + } + + Fileinput.prototype.listen = function() { + this.$input.on('change.bs.fileinput', $.proxy(this.change, this)) + $(this.$input[0].form).on('reset.bs.fileinput', $.proxy(this.reset, this)) + + this.$element.find('[data-trigger="fileinput"]').on('click.bs.fileinput', $.proxy(this.trigger, this)) + this.$element.find('[data-dismiss="fileinput"]').on('click.bs.fileinput', $.proxy(this.clear, this)) + }, + + Fileinput.prototype.change = function(e) { + if (e.target.files === undefined) e.target.files = e.target && e.target.value ? [ {name: e.target.value.replace(/^.+\\/, '')} ] : [] + if (e.target.files.length === 0) return + + this.$hidden.val('') + this.$hidden.attr('name', '') + this.$input.attr('name', this.name) + + var file = e.target.files[0] + + if (this.$preview.length > 0 && (typeof file.type !== "undefined" ? file.type.match('image.*') : file.name.match(/\.(gif|png|jpe?g)$/i)) && typeof FileReader !== "undefined") { + var reader = new FileReader() + var preview = this.$preview + var element = this.$element + + reader.onload = function(re) { + var $img = $('') // .attr('src', re.target.result) + $img[0].src = re.target.result + e.target.files[0].result = re.target.result + + element.find('.fileinput-filename').text(file.name) + + // if parent has max-height, using `(max-)height: 100%` on child doesn't take padding and border into account + if (preview.css('max-height') != 'none') $img.css('max-height', parseInt(preview.css('max-height'), 10) - parseInt(preview.css('padding-top'), 10) - parseInt(preview.css('padding-bottom'), 10) - parseInt(preview.css('border-top'), 10) - parseInt(preview.css('border-bottom'), 10)) + + preview.html($img) + element.addClass('fileinput-exists').removeClass('fileinput-new') + + element.trigger('change.bs.fileinput', e.target.files) + } + + reader.readAsDataURL(file) + } else { + this.$element.find('.fileinput-filename').text(file.name) + this.$preview.text(file.name) + + this.$element.addClass('fileinput-exists').removeClass('fileinput-new') + + this.$element.trigger('change.bs.fileinput') + } + }, + + Fileinput.prototype.clear = function(e) { + if (e) e.preventDefault() + + this.$hidden.val('') + this.$hidden.attr('name', this.name) + this.$input.attr('name', '') + + //ie8+ doesn't support changing the value of input with type=file so clone instead + if (isIE) { + var inputClone = this.$input.clone(true); + this.$input.after(inputClone); + this.$input.remove(); + this.$input = inputClone; + } else { + this.$input.val('') + } + + this.$preview.html('') + this.$element.find('.fileinput-filename').text('') + this.$element.addClass('fileinput-new').removeClass('fileinput-exists') + + if (e !== false) { + this.$input.trigger('change') + this.$element.trigger('clear.bs.fileinput') + } + }, + + Fileinput.prototype.reset = function() { + this.clear(false) + + this.$hidden.val(this.original.hiddenVal) + this.$preview.html(this.original.preview) + this.$element.find('.fileinput-filename').text('') + + if (this.original.exists) this.$element.addClass('fileinput-exists').removeClass('fileinput-new') + else this.$element.addClass('fileinput-new').removeClass('fileinput-exists') + + this.$element.trigger('reset.bs.fileinput') + }, + + Fileinput.prototype.trigger = function(e) { + this.$input.trigger('click') + e.preventDefault() + } + + + // FILEUPLOAD PLUGIN DEFINITION + // =========================== + + var old = $.fn.fileinput + + $.fn.fileinput = function (options) { + return this.each(function () { + var $this = $(this), + data = $this.data('fileinput') + if (!data) $this.data('fileinput', (data = new Fileinput(this, options))) + if (typeof options == 'string') data[options]() + }) + } + + $.fn.fileinput.Constructor = Fileinput + + + // FILEINPUT NO CONFLICT + // ==================== + + $.fn.fileinput.noConflict = function () { + $.fn.fileinput = old + return this + } + + + // FILEUPLOAD DATA-API + // ================== + + $(document).on('click.fileinput.data-api', '[data-provides="fileinput"]', function (e) { + var $this = $(this) + if ($this.data('fileinput')) return + $this.fileinput($this.data()) + + var $target = $(e.target).closest('[data-dismiss="fileinput"],[data-trigger="fileinput"]'); + if ($target.length > 0) { + e.preventDefault() + $target.trigger('click.bs.fileinput') + } + }) + +}(window.jQuery); diff --git a/dist/js/jasny-bootstrap.min.js b/dist/js/jasny-bootstrap.min.js new file mode 100644 index 00000000..05b3b053 --- /dev/null +++ b/dist/js/jasny-bootstrap.min.js @@ -0,0 +1,6 @@ +/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Jasny Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.state=null,this.options.recalc&&(this.calcClone(),a(window).on("resize",a.proxy(this.recalc,this))),this.options.autohide&&a(document).on("click",a.proxy(this.autohide,this)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0,placement:"left",autohide:!0,recalc:!0},b.prototype.offset=function(){switch(this.options.placement){case"left":case"right":return this.$element.outerWidth();case"top":case"bottom":return this.$element.outerHeight()}},b.prototype.calcPlacement=function(){function b(a,b){if("auto"===e.css(b))return a;if("auto"===e.css(a))return b;var c=parseInt(e.css(a),10),d=parseInt(e.css(b),10);return c>d?b:a}var c=a(window).width()/this.$element.width(),d=a(window).height()/this.$element.height();this.$element.hasClass("in")||this.$element.css("visiblity","hidden !important").addClass("in");var e=this.$element;this.options.placement=c>d?b("left","right"):b("top","bottom"),"hidden !important"===this.$element.css("visibility")&&this.$element.removeClass("in").css("visiblity","")},b.prototype.opposite=function(a){switch(a){case"top":return"bottom";case"left":return"right";case"bottom":return"top";case"right":return"left"}},b.prototype.getCanvasElements=function(){var b=this.options.canvas?a(this.options.canvas):this.$element,c=b.find("*").filter(function(){return"fixed"===a(this).css("position")}).not(this.options.exclude);return b.add(c)},b.prototype.slide=function(b,c,d){if(!a.support.transition){var e={};return e[this.options.placement]="+="+c,b.animate(e,350,d)}var f=this.options.placement,g=this.opposite(f);b.each(function(){"auto"!==a(this).css(f)&&a(this).css(f,(parseInt(a(this).css(f),10)||0)+c),"auto"!==a(this).css(g)&&a(this).css(g,(parseInt(a(this).css(g),10)||0)-c)}),this.$element.one(a.support.transition.end,d).emulateTransitionEnd(350)},b.prototype.disableScrolling=function(){var b=a("body").width(),c="padding-"+this.opposite(this.options.placement);if(void 0===a("body").data("offcanvas-style")&&a("body").data("offcanvas-style",a("body").attr("style")),a("body").css("overflow","hidden"),a("body").width()>b){var d=parseInt(a("body").css(c),10)+a("body").width()-b;setTimeout(function(){a("body").css(c,d)},1)}},b.prototype.show=function(){if(!this.state){var b=a.Event("show.bs.offcanvas");if(this.$element.trigger(b),!b.isDefaultPrevented()){"auto"===this.options.placement&&this.calcPlacement(),this.state="sliding";var c=this.getCanvasElements(),d=this.offset(),e=this.options.placement,f=this.opposite(e);c.addClass("canvas-sliding").each(function(){a(this).data("offcanvas-style",a(this).attr("style")||""),"static"===a(this).css("position")&&a(this).css("position","relative"),"auto"!==a(this).css(e)&&"0px"!==a(this).css(e)||"auto"!==a(this).css(f)&&"0px"!==a(this).css(f)||a(this).css(e,0)}),-1!==c.index(this.$element)&&this.$element.css(e,-1*d),this.disableScrolling();var g=function(){this.state="slid",c.removeClass("canvas-sliding").addClass("canvas-slid"),this.$element.trigger("shown.bs.offcanvas")};setTimeout(a.proxy(function(){this.$element.addClass("in"),this.slide(c,d,a.proxy(g,this))},this),1)}}},b.prototype.hide=function(){if("slid"===this.state){var b=a.Event("hide.bs.offcanvas");if(this.$element.trigger(b),!b.isDefaultPrevented()){this.state="sliding";var c=a(".canvas-slid"),d=-1*this.offset(),e=function(){this.state=null,this.$element.removeClass("in"),c.removeClass("canvas-sliding"),c.add("body").each(function(){a(this).attr("style",a(this).data("offcanvas-style")).removeData("offcanvas-style")}),this.$element.trigger("hidden.bs.offcanvas")};c.removeClass("canvas-slid").addClass("canvas-sliding"),setTimeout(a.proxy(function(){this.slide(c,d,a.proxy(e,this))},this),1)}}},b.prototype.toggle=function(){"sliding"!==this.state&&this["slid"===this.state?"hide":"show"]()},b.prototype.calcClone=function(){this.$calcClone=this.$element.clone().html("").addClass("offcanvas-clone").removeClass("in").appendTo(a("body"))},b.prototype.recalc=function(){if("slid"===this.state()&&"none"!==this.$calcClone.css("display")){var b=-1*this.offset(),c=this.options.placement;this.getCanvasElements().each(function(){a(this).css(c,(parseInt(a(this).css(c),10)||0)+b)}).removeClass("canvas-slid"),a("body").css("overflow",""),this.$element.css(c,"").removeClass("in canvas-slid")}},b.prototype.autohide=function(b){0===a(b.target).closest(this.$element).length&&this.hide()};var c=a.fn.offcanvas;a.fn.offcanvas=function(c){return this.each(function(){var d=a(this),e=d.data("bs.offcanvas"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.offcanvas",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.offcanvas.Constructor=b,a.fn.offcanvas.noConflict=function(){return a.fn.offcanvas=c,this},a(document).on("click.bs.offcanvas.data-api","[data-toggle=offcanvas]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.offcanvas"),h=g?"toggle":d.data();b.stopPropagation(),g?g.toggle():f.offcanvas(h)})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.$element.on("click.bs.rowlink","td:not(.rowlink-skip)",a.proxy(this.click,this))};b.DEFAULTS={target:"a"},b.prototype.click=function(b){var c=a(b.currentTarget).closest("tr").find(this.options.target)[0];if(a(b.target)[0]!==c)if(b.preventDefault(),c.click)c.click();else if(document.createEvent){var d=document.createEvent("MouseEvents");d.initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),c.dispatchEvent(d)}};var c=a.fn.rowlink;a.fn.rowlink=function(c){return this.each(function(){var d=a(this),e=d.data("rowlink");e||d.data("rowlink",e=new b(this,c))})},a.fn.rowlink.Constructor=b,a.fn.rowlink.noConflict=function(){return a.fn.rowlink=c,this},a(document).on("click.bs.rowlink.data-api",'[data-link="row"]',function(b){var c=a(this);c.data("rowlink")||(c.rowlink(c.data()),a(b.target).trigger("click.bs.rowlink"))})}(window.jQuery),+function(a){"use strict";var b=void 0!==window.orientation,c=navigator.userAgent.toLowerCase().indexOf("android")>-1,d="Microsoft Internet Explorer"==window.navigator.appName,e=function(b,d){c||(this.$element=a(b),this.options=a.extend({},e.DEFAULS,d),this.mask=String(this.options.mask),this.init(),this.listen(),this.checkVal())};e.DEFAULS={mask:"",placeholder:"_",definitions:{9:"[0-9]",a:"[A-Za-z]","?":"[A-Za-z0-9]","*":"."}},e.prototype.init=function(){var b=this.options.definitions,c=this.mask.length;this.tests=[],this.partialPosition=this.mask.length,this.firstNonMaskPos=null,a.each(this.mask.split(""),a.proxy(function(a,d){"?"==d?(c--,this.partialPosition=a):b[d]?(this.tests.push(new RegExp(b[d])),null===this.firstNonMaskPos&&(this.firstNonMaskPos=this.tests.length-1)):this.tests.push(null)},this)),this.buffer=a.map(this.mask.split(""),a.proxy(function(a){return"?"!=a?b[a]?this.options.placeholder:a:void 0},this)),this.focusText=this.$element.val(),this.$element.data("rawMaskFn",a.proxy(function(){return a.map(this.buffer,function(a,b){return this.tests[b]&&a!=this.options.placeholder?a:null}).join("")},this))},e.prototype.listen=function(){if(!this.$element.attr("readonly")){var b=(d?"paste":"input")+".mask";this.$element.on("unmask.bs.inputmask",a.proxy(this.unmask,this)).on("focus.bs.inputmask",a.proxy(this.focusEvent,this)).on("blur.bs.inputmask",a.proxy(this.blurEvent,this)).on("keydown.bs.inputmask",a.proxy(this.keydownEvent,this)).on("keypress.bs.inputmask",a.proxy(this.keypressEvent,this)).on(b,a.proxy(this.pasteEvent,this))}},e.prototype.caret=function(a,b){if(0!==this.$element.length){if("number"==typeof a)return b="number"==typeof b?b:a,this.$element.each(function(){if(this.setSelectionRange)this.setSelectionRange(a,b);else if(this.createTextRange){var c=this.createTextRange();c.collapse(!0),c.moveEnd("character",b),c.moveStart("character",a),c.select()}});if(this.$element[0].setSelectionRange)a=this.$element[0].selectionStart,b=this.$element[0].selectionEnd;else if(document.selection&&document.selection.createRange){var c=document.selection.createRange();a=0-c.duplicate().moveStart("character",-1e5),b=a+c.text.length}return{begin:a,end:b}}},e.prototype.seekNext=function(a){for(var b=this.mask.length;++a<=b&&!this.tests[a];);return a},e.prototype.seekPrev=function(a){for(;--a>=0&&!this.tests[a];);return a},e.prototype.shiftL=function(a,b){var c=this.mask.length;if(!(0>a)){for(var d=a,e=this.seekNext(b);c>d;d++)if(this.tests[d]){if(!(c>e&&this.tests[d].test(this.buffer[e])))break;this.buffer[d]=this.buffer[e],this.buffer[e]=this.options.placeholder,e=this.seekNext(e)}this.writeBuffer(),this.caret(Math.max(this.firstNonMaskPos,a))}},e.prototype.shiftR=function(a){for(var b=this.mask.length,c=a,d=this.options.placeholder;b>c;c++)if(this.tests[c]){var e=this.seekNext(c),f=this.buffer[c];if(this.buffer[c]=d,!(b>e&&this.tests[e].test(f)))break;d=f}},e.prototype.unmask=function(){this.$element.unbind(".mask").removeData("inputmask")},e.prototype.focusEvent=function(){this.focusText=this.$element.val();var a=this.mask.length,b=this.checkVal();this.writeBuffer();var c=this,d=function(){b==a?c.caret(0,b):c.caret(b)};d(),setTimeout(d,50)},e.prototype.blurEvent=function(){this.checkVal(),this.$element.val()!==this.focusText&&this.$element.trigger("change")},e.prototype.keydownEvent=function(a){var c=a.which;if(8==c||46==c||b&&127==c){var d=this.caret(),e=d.begin,f=d.end;return f-e===0&&(e=46!=c?this.seekPrev(e):f=this.seekNext(e-1),f=46==c?this.seekNext(f):f),this.clearBuffer(e,f),this.shiftL(e,f-1),!1}return 27==c?(this.$element.val(this.focusText),this.caret(0,this.checkVal()),!1):void 0},e.prototype.keypressEvent=function(a){var b=this.mask.length,c=a.which,d=this.caret();if(a.ctrlKey||a.altKey||a.metaKey||32>c)return!0;if(c){d.end-d.begin!==0&&(this.clearBuffer(d.begin,d.end),this.shiftL(d.begin,d.end-1));var e=this.seekNext(d.begin-1);if(b>e){var f=String.fromCharCode(c);if(this.tests[e].test(f)){this.shiftR(e),this.buffer[e]=f,this.writeBuffer();var g=this.seekNext(e);this.caret(g)}}return!1}},e.prototype.pasteEvent=function(){var a=this;setTimeout(function(){a.caret(a.checkVal(!0))},0)},e.prototype.clearBuffer=function(a,b){for(var c=this.mask.length,d=a;b>d&&c>d;d++)this.tests[d]&&(this.buffer[d]=this.options.placeholder)},e.prototype.writeBuffer=function(){return this.$element.val(this.buffer.join("")).val()},e.prototype.checkVal=function(a){for(var b=this.mask.length,c=this.$element.val(),d=-1,e=0,f=0;b>e;e++)if(this.tests[e]){for(this.buffer[e]=this.options.placeholder;f++c.length)break}else this.buffer[e]==c.charAt(f)&&e!=this.partialPosition&&(f++,d=e);return!a&&d+1=this.partialPosition)&&(this.writeBuffer(),a||this.$element.val(this.$element.val().substring(0,d+1))),this.partialPosition?e:this.firstNonMaskPos};var f=a.fn.inputmask;a.fn.inputmask=function(b){return this.each(function(){var c=a(this),d=c.data("inputmask");d||c.data("inputmask",d=new e(this,b))})},a.fn.inputmask.Constructor=e,a.fn.inputmask.noConflict=function(){return a.fn.inputmask=f,this},a(document).on("focus.bs.inputmask.data-api","[data-mask]",function(){var b=a(this);b.data("inputmask")||b.inputmask(b.data())})}(window.jQuery),+function(a){"use strict";var b="Microsoft Internet Explorer"==window.navigator.appName,c=function(b,c){if(this.$element=a(b),this.$input=this.$element.find(":file"),0!==this.$input.length){this.name=this.$input.attr("name")||c.name,this.$hidden=this.$element.find('input[type=hidden][name="'+this.name+'"]'),0===this.$hidden.length&&(this.$hidden=a(''),this.$element.prepend(this.$hidden)),this.$preview=this.$element.find(".fileinput-preview");var d=this.$preview.css("height");"inline"!=this.$preview.css("display")&&"0px"!=d&&"none"!=d&&this.$preview.css("line-height",d),this.original={exists:this.$element.hasClass("fileinput-exists"),preview:this.$preview.html(),hiddenVal:this.$hidden.val()},this.listen()}};c.prototype.listen=function(){this.$input.on("change.bs.fileinput",a.proxy(this.change,this)),a(this.$input[0].form).on("reset.bs.fileinput",a.proxy(this.reset,this)),this.$element.find('[data-trigger="fileinput"]').on("click.bs.fileinput",a.proxy(this.trigger,this)),this.$element.find('[data-dismiss="fileinput"]').on("click.bs.fileinput",a.proxy(this.clear,this))},c.prototype.change=function(b){if(void 0===b.target.files&&(b.target.files=b.target&&b.target.value?[{name:b.target.value.replace(/^.+\\/,"")}]:[]),0!==b.target.files.length){this.$hidden.val(""),this.$hidden.attr("name",""),this.$input.attr("name",this.name);var c=b.target.files[0];if(this.$preview.length>0&&("undefined"!=typeof c.type?c.type.match("image.*"):c.name.match(/\.(gif|png|jpe?g)$/i))&&"undefined"!=typeof FileReader){var d=new FileReader,e=this.$preview,f=this.$element;d.onload=function(d){var g=a("");g[0].src=d.target.result,b.target.files[0].result=d.target.result,f.find(".fileinput-filename").text(c.name),"none"!=e.css("max-height")&&g.css("max-height",parseInt(e.css("max-height"),10)-parseInt(e.css("padding-top"),10)-parseInt(e.css("padding-bottom"),10)-parseInt(e.css("border-top"),10)-parseInt(e.css("border-bottom"),10)),e.html(g),f.addClass("fileinput-exists").removeClass("fileinput-new"),f.trigger("change.bs.fileinput",b.target.files)},d.readAsDataURL(c)}else this.$element.find(".fileinput-filename").text(c.name),this.$preview.text(c.name),this.$element.addClass("fileinput-exists").removeClass("fileinput-new"),this.$element.trigger("change.bs.fileinput")}},c.prototype.clear=function(a){if(a&&a.preventDefault(),this.$hidden.val(""),this.$hidden.attr("name",this.name),this.$input.attr("name",""),b){var c=this.$input.clone(!0);this.$input.after(c),this.$input.remove(),this.$input=c}else this.$input.val("");this.$preview.html(""),this.$element.find(".fileinput-filename").text(""),this.$element.addClass("fileinput-new").removeClass("fileinput-exists"),a!==!1&&(this.$input.trigger("change"),this.$element.trigger("clear.bs.fileinput"))},c.prototype.reset=function(){this.clear(!1),this.$hidden.val(this.original.hiddenVal),this.$preview.html(this.original.preview),this.$element.find(".fileinput-filename").text(""),this.original.exists?this.$element.addClass("fileinput-exists").removeClass("fileinput-new"):this.$element.addClass("fileinput-new").removeClass("fileinput-exists"),this.$element.trigger("reset.bs.fileinput")},c.prototype.trigger=function(a){this.$input.trigger("click"),a.preventDefault()};var d=a.fn.fileinput;a.fn.fileinput=function(b){return this.each(function(){var d=a(this),e=d.data("fileinput");e||d.data("fileinput",e=new c(this,b)),"string"==typeof b&&e[b]()})},a.fn.fileinput.Constructor=c,a.fn.fileinput.noConflict=function(){return a.fn.fileinput=d,this},a(document).on("click.fileinput.data-api",'[data-provides="fileinput"]',function(b){var c=a(this);if(!c.data("fileinput")){c.fileinput(c.data());var d=a(b.target).closest('[data-dismiss="fileinput"],[data-trigger="fileinput"]');d.length>0&&(b.preventDefault(),d.trigger("click.bs.fileinput"))}})}(window.jQuery); \ No newline at end of file diff --git a/docs/LICENSE b/docs/LICENSE new file mode 100644 index 00000000..1d658d6d --- /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/. diff --git a/docs/_includes/ads.html b/docs/_includes/ads.html new file mode 100644 index 00000000..1e4a2611 --- /dev/null +++ b/docs/_includes/ads.html @@ -0,0 +1,10 @@ + diff --git a/docs/_includes/customizer-variables.html b/docs/_includes/customizer-variables.html new file mode 100644 index 00000000..d0ae974b --- /dev/null +++ b/docs/_includes/customizer-variables.html @@ -0,0 +1,335 @@ + + +

Components

+

Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+

Tables

+

Customizes the .table component with basic values, each used across all table variations.

+
+
+ + +

Background color used for .table-hover.

+
+
+

Media queries breakpoints

+

Define the breakpoints at which your layout will change, adapting to different screen sizes.

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+

Grid system

+

Define your custom responsive grid.

+
+
+ + +

Padding between columns. Gets divided in half for the left and right.

+
+
+ + +

Point at which the navbar becomes uncollapsed.

+
+
+ + +

Maximum with of a smooth container.

+
+
+ +

+
+
+ + +
+
+ + +
+
+ + +
+
+ +

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +

+
+
+ + +
+
+ + +
+
+ + +
+
+

Form states and alerts

+

Define colors for form feedback states and, by default, alerts.

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+

Alerts

+

Define alert colors, border radius, and padding.

+
+
+ + +
+
+ + +
+
+ \ No newline at end of file diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html new file mode 100644 index 00000000..c7385b96 --- /dev/null +++ b/docs/_includes/footer.html @@ -0,0 +1,14 @@ + + + + + + + + + +{% if page.slug == "customize" %} + +{% endif %} + diff --git a/docs/_includes/header.html b/docs/_includes/header.html new file mode 100644 index 00000000..f60e2d2d --- /dev/null +++ b/docs/_includes/header.html @@ -0,0 +1,43 @@ + + + + + + + + {% if page.title == "Jasny Bootstrap" %} + {{ page.title }} + {% else %} + {{ page.title }} · Jasny Bootstrap + {% endif %} + + + + + + + + + + + + + + + + + + + diff --git a/docs/_includes/nav-components.html b/docs/_includes/nav-components.html new file mode 100644 index 00000000..5e938bd1 --- /dev/null +++ b/docs/_includes/nav-components.html @@ -0,0 +1,15 @@ +
  • + Navmenu + +
  • +
  • + Alerts + +
  • diff --git a/docs/_includes/nav-css.html b/docs/_includes/nav-css.html new file mode 100644 index 00000000..b95ed93f --- /dev/null +++ b/docs/_includes/nav-css.html @@ -0,0 +1,12 @@ +
  • + Overview + +
  • +
  • + Buttons + +
  • diff --git a/docs/_includes/nav-customize.html b/docs/_includes/nav-customize.html new file mode 100644 index 00000000..eabfd774 --- /dev/null +++ b/docs/_includes/nav-customize.html @@ -0,0 +1,19 @@ + + +
  • Less components
  • +
  • jQuery plugins
  • +
  • Less variables + +
  • +
  • Download
  • + \ No newline at end of file diff --git a/docs/_includes/nav-getting-started.html b/docs/_includes/nav-getting-started.html new file mode 100644 index 00000000..bdc334d1 --- /dev/null +++ b/docs/_includes/nav-getting-started.html @@ -0,0 +1,26 @@ +
  • + Jasny Bootstrap +
  • +
  • + Download Jasny Bootstrap + +
  • +
  • + What's included +
  • +
  • + Examples +
  • +
  • + Migrating from 2.x to 3.0 + +
  • diff --git a/docs/_includes/nav-javascript.html b/docs/_includes/nav-javascript.html new file mode 100644 index 00000000..167a9e28 --- /dev/null +++ b/docs/_includes/nav-javascript.html @@ -0,0 +1,38 @@ +
  • + Overview + +
  • +
  • + Off canvas + +
  • +
  • + Row link + +
  • +
  • + Input mask + +
  • +
  • + File input + +
  • diff --git a/docs/_includes/nav-main.html b/docs/_includes/nav-main.html new file mode 100644 index 00000000..da27116e --- /dev/null +++ b/docs/_includes/nav-main.html @@ -0,0 +1,37 @@ + diff --git a/docs/_includes/social-buttons.html b/docs/_includes/social-buttons.html new file mode 100644 index 00000000..5bf16dd6 --- /dev/null +++ b/docs/_includes/social-buttons.html @@ -0,0 +1,16 @@ +
    + +
    diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html new file mode 100644 index 00000000..c3f48b3f --- /dev/null +++ b/docs/_layouts/default.html @@ -0,0 +1,80 @@ + + + + + {% include header.html %} + + + + + Skip to main content + + + {% include nav-main.html %} + + +
    +
    +

    {{ page.title }}

    +

    {{ page.lead }}

    + {% include ads.html %} +
    +
    + +
    +
    +
    + +
    +
    + {{ content }} +
    +
    + +
    + + + + + + {% include footer.html %} + + + diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html new file mode 100644 index 00000000..81429665 --- /dev/null +++ b/docs/_layouts/home.html @@ -0,0 +1,41 @@ + + + + + {% include header.html %} + + + Skip to main content + + + {% include nav-main.html %} + + + {{ content }} + + + + + {% include footer.html %} + + + diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css new file mode 100644 index 00000000..9abd799d --- /dev/null +++ b/docs/assets/css/docs.css @@ -0,0 +1,1249 @@ +/*csslint ids: false, overqualified-elements: false, fallback-colors: false*/ + +/*! + * Jasny Bootstrap Docs (http://jasny.github.io/bootstrap) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under the Creative Commons Attribution 3.0 Unported License. For + * details, see http://creativecommons.org/licenses/by/3.0/. + */ + + +/* + * Bootstrap Documentation + * Special styles for presenting Bootstrap's documentation and code examples. + * + * Table of contents: + * + * Scaffolding + * Main navigation + * Footer + * Social buttons + * Homepage + * Page headers + * Old docs callout + * Ads + * Side navigation + * Docs sections + * Callouts + * Grid styles + * Examples + * Code snippets (highlight) + * Responsive tests + * Glyphicons + * Customizer + * Miscellaneous + */ + + +/* + * Scaffolding + * + * Update the basics of our documents to prep for docs content. + */ + +body { + position: relative; /* For scrollyspy */ + padding-top: 50px; /* Account for fixed navbar */ + overflow: auto !important; /* For offcanvas */ +} + +/* Fix */ +span.hidden-sm { + display: inline !important; +} +@media (min-width: 768px) and (max-width: 992px) { + span.hidden-sm { + display: none !important; + } +} + +/* Keep code small in tables on account of limited space */ +.table code { + font-size: 13px; + font-weight: normal; +} + +/* Outline button for use within the docs */ +.btn-outline { + color: #962A28; + background-color: #fff; + border-color: #e5e5e5; +} +.btn-outline:hover, +.btn-outline:focus, +.btn-outline:active { + color: #fff; + background-color: #962A28; + background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #450915), color-stop(1, #962A28)); + background-image: -o-linear-gradient(right, #450915 0%, #962A28 100%); + background-image: -moz-linear-gradient(right, #450915 0%, #962A28 100%); + background-image: -webkit-linear-gradient(right, #450915 0%, #962A28 100%); + background-image: -ms-linear-gradient(right, #450915 0%, #962A28 100%); + background-image: linear-gradient(to right, #450915 0%, #962A28 100%); + border-color: #962A28; +} + +/* Inverted outline button (white on dark) */ +.btn-outline-inverse { + color: #fff; + background-color: transparent; + border-color: #cdbfe3; +} +.btn-outline-inverse:hover, +.btn-outline-inverse:focus, +.btn-outline-inverse:active { + color: #563d7c; + text-shadow: none; + background-color: #fff; + border-color: #fff; +} + + +/* + * Main navigation + * + * Style the `.navbar` at the top of the docs. + */ + +.bs-docs-nav { + text-shadow: 0 -1px 0 rgba(0,0,0,.15); + box-shadow: 0 1px 0 rgba(255,255,255,.1); +} +.bs-docs-nav .navbar-brand { + color: #fff; +} +.bs-docs-nav .navbar-nav > li > a { + color: #ceb6b8; +} +.bs-docs-nav .navbar-nav > li > a:hover { + color: #fff; +} +.bs-docs-nav .navbar-nav > .active > a, +.bs-docs-nav .navbar-nav > .active > a:hover { + color: #fff; + background-color: #6B313B; + background-color: rgba(255, 255, 255, 0.15); +} +.bs-docs-nav .navbar-toggle, +.bs-docs-nav .navbar-toggle:focus { + border-color: #86555C; + border-color: rgba(255, 255, 255, 0.3); + background: transparent; +} +.bs-docs-nav .navbar-toggle:hover { + background-color: #63303A; + background-color: rgba(255, 255, 255, 0.15); + border-color: transparent; +} + + +/* + * Footer + * + * Separated section of content at the bottom of all pages, save the homepage. + */ + +.bs-footer { + padding-top: 40px; + padding-bottom: 30px; + margin-top: 100px; + color: #777; + text-align: center; + border-top: 1px solid #e5e5e5; +} +.footer-links { + margin: 10px 0; + padding-left: 0; +} +.footer-links li { + display: inline; + padding: 0 2px; +} +.footer-links li:first-child { + padding-left: 0; +} + +@media (min-width: 768px) { + .bs-footer { + text-align: left; + } + .bs-footer p { + margin-bottom: 0; + } +} + + +/* + * Social buttons + * + * Twitter and GitHub social action buttons (for homepage and footer). + */ + +.bs-social { + margin-top: 20px; + margin-bottom: 20px; + text-align: center; +} +.bs-social-buttons { + display: inline-block; + margin-bottom: 0; + padding-left: 0; + list-style: none; +} +.bs-social-buttons li { + display: inline-block; + line-height: 1; + padding: 5px 8px; +} +.bs-social-buttons .twitter-follow-button { + width: 225px !important; +} +.bs-social-buttons .twitter-share-button { + width: 98px !important; +} +/* Style the GitHub buttons via CSS instead of inline attributes */ +.github-btn { + border: 0; + overflow: hidden; +} + +@media (min-width: 768px) { + .bs-social { + text-align: left; + } + .bs-social-buttons li:first-child { + padding-left: 0; + } +} + + +/* + * Topography, yo! + * + * Apply the map background and relevant colors where we need 'em. + */ + +.bs-docs-nav, +.bs-docs-home, +.bs-header { + color: #ceb6b8; + background-color: #450915; + background-image: url(../img/bg-1920x1200.jpg); +} +@media (min-width: 1921px), (min-height: 1201px) { + .bs-header { + background-image: url(../img/bg-3500x2500.jpg); + } +} +.bs-header { + background-position: 0 -51px; +} + + +/* + * Homepage + * + * Tweaks to the custom homepage and the masthead (main jumbotron). + */ + + /* Masthead (headings and download button) */ + .bs-masthead { + position: relative; + padding: 30px 15px; + text-align: center; + text-shadow: 0 1px 0 rgba(0,0,0,.15); +} +.bs-masthead h1 { + font-size: 50px; + line-height: 1; + color: #fff; +} +.bs-masthead .btn-outline-inverse { + margin: 10px; +} + +/* Links to project-level content like the repo, Expo, etc */ +.bs-masthead-links { + margin-top: 20px; + margin-bottom: 40px; + padding: 0 15px; + list-style: none; + text-align: center; +} +.bs-masthead-links li { + display: inline; +} +.bs-masthead-links li + li { + margin-left: 20px; +} +.bs-masthead a, +.bs-masthead-links a { + color: #fff; +} + +@media (min-width: 768px) { + .bs-masthead { + text-align: left; + padding-top: 140px; + padding-bottom: 140px; + } + .bs-masthead h1 { + font-size: 100px; + } + .bs-masthead .lead { + margin-right: 25%; + font-size: 30px; + } + .bs-masthead .btn-outline-inverse { + width: auto; + margin: 20px 5px 20px 0; + padding: 18px 24px; + font-size: 21px; + } + .bs-masthead-links { + padding: 0; + text-align: left; + } +} + + +/* + * Page headers + * + * Jumbotron-esque headers at the top of every page that's not the homepage. + */ + + +/* Page headers */ +.bs-header { + padding: 30px 15px 40px; /* side padding builds on .container 15px, so 30px */ + font-size: 16px; + text-align: center; + text-shadow: 0 1px 0 rgba(0,0,0,.15); +} +.bs-header h1 { + color: #fff; +} +.bs-header p { + font-weight: 300; + line-height: 1.5; +} +.bs-header .container { + position: relative; +} + +@media (min-width: 768px) { + .bs-header { + font-size: 21px; + text-align: left; + } + .bs-header h1 { + font-size: 60px; + line-height: 1; + } +} + +@media (min-width: 992px) { + .bs-header h1, + .bs-header p { + margin-right: 380px; + } +} + + +/* + * About me + * + * Single display ad that shows on all pages (except homepage) in page headers. + */ + +.aboutme { + display: block; + margin: 50px -30px -40px; + padding: 5px; + overflow: hidden; /* clearfix */ + background: #63303A; + background: rgba(255, 255, 255, 0.15); + box-shadow: inset 0 3px 5px rgba(0,0,0,.075); + font-size: 13px !important; + line-height: 16px !important; + text-decoration: none; + text-align: center; +} +.aboutme:hover { + text-decoration: none; +} +.aboutme-text { + margin-top: 5px; + color: #ceb6b8; +} +.aboutme-title { + font-weight: bold; + margin-bottom: 4px; + color: #fff; +} +.aboutme-name { + margin-top: 9px; + color: #fff; +} +.aboutme img { + float: right; + height: 50px; + margin-left: 10px; +} + +@media screen and (min-width: 768px) { + .aboutme { + margin: 0 !important; + border-radius: 4px; + box-shadow: inset 0 3px 5px rgba(0,0,0,.075), 0 1px 0 rgba(255,255,255,.1); + } + .aboutme-title { + display: block; + } +} + +@media screen and (min-width: 992px) { + .aboutme { + position: absolute; + top: 20px; + right: 0; + padding: 15px !important; + width: 330px !important; + min-height: 132px; + text-align: left; + } + .aboutme-title, .aboutme-name { + display: block; + } + .aboutme img { + height: auto; + } +} + +/* Homepage variations */ +.bs-docs-home .aboutme { + margin: 0 -15px 40px !important; +} +@media screen and (min-width: 480px) { + .bs-docs-home .aboutme { + width: 330px !important; + margin: 0 auto 40px !important; + border-radius: 4px; + } +} +@media screen and (min-width: 768px) { + .bs-docs-home .aboutme { + float: left; + width: 330px !important; + margin: 0 !important; + } + .bs-docs-home .bs-social, + .bs-docs-home .bs-masthead-links { + margin-left: 350px; + } +} +@media screen and (min-width: 992px) { + .bs-docs-home .aboutme { + position: static; + } +} +@media screen and (min-width: 1170px) { + .bs-docs-home .aboutme { + margin-top: -25px !important; + } +} + + +/* + * Callout for 2.3.2 docs + * + * Only appears below page headers (not on the homepage). The homepage gets its + * own link with the masthead links. + */ + +.bs-old-docs { + padding: 15px 20px; + color: #777; + background-color: #fafafa; + border-top: 1px solid #fff; + border-bottom: 1px solid #e5e5e5; +} +.bs-old-docs strong { + color: #555; +} + + +/* + * Side navigation + * + * Scrollspy and affixed enhanced navigation to highlight sections and secondary + * sections of docs content. + */ + +/* By default it's not affixed in mobile views, so undo that */ +.bs-sidebar.affix { + position: static; +} + +/* First level of nav */ +.bs-sidenav { + margin-top: 30px; + margin-bottom: 30px; + padding-top: 10px; + padding-bottom: 10px; + text-shadow: 0 1px 0 #fff; + background-color: #f7f5fa; + border-radius: 5px; +} + +/* All levels of nav */ +.bs-sidebar .nav > li > a { + display: block; + color: #716b7a; + padding: 5px 20px; +} +.bs-sidebar .nav > li > a:hover, +.bs-sidebar .nav > li > a:focus { + text-decoration: none; + background-color: #e5e3e9; + border-right: 1px solid #dbd8e0; +} +.bs-sidebar .nav > .active > a, +.bs-sidebar .nav > .active:hover > a, +.bs-sidebar .nav > .active:focus > a { + font-weight: bold; + color: #563d7c; + background-color: transparent; + border-right: 1px solid #563d7c; +} + +/* Nav: second level (shown on .active) */ +.bs-sidebar .nav .nav { + display: none; /* Hide by default, but at >768px, show it */ + margin-bottom: 8px; +} +.bs-sidebar .nav .nav > li > a { + padding-top: 3px; + padding-bottom: 3px; + padding-left: 30px; + font-size: 90%; +} + +/* Show and affix the side nav when space allows it */ +@media (min-width: 992px) { + .bs-sidebar .nav > .active > ul { + display: block; + } + /* Widen the fixed sidebar */ + .bs-sidebar.affix, + .bs-sidebar.affix-bottom { + width: 213px; + } + .bs-sidebar.affix { + position: fixed; /* Undo the static from mobile first approach */ + top: 80px; + } + .bs-sidebar.affix-bottom { + position: absolute; /* Undo the static from mobile first approach */ + } + .bs-sidebar.affix-bottom .bs-sidenav, + .bs-sidebar.affix .bs-sidenav { + margin-top: 0; + margin-bottom: 0; + } +} +@media (min-width: 1200px) { + /* Widen the fixed sidebar again */ + .bs-sidebar.affix-bottom, + .bs-sidebar.affix { + width: 263px; + } +} + + +/* + * Docs sections + * + * Content blocks for each component or feature. + */ + +/* Space things out */ +.bs-docs-section + .bs-docs-section { + padding-top: 40px; +} + +/* Janky fix for preventing navbar from overlapping */ +h1[id] { + padding-top: 80px; + margin-top: -80px; +} +h2[id], h3[id] { + padding-top: 65px; + margin-top: -20px; +} + + +/* + * Callouts + * + * Not quite alerts, but custom and helpful notes for folks reading the docs. + * Requires a base and modifier class. + */ + +/* Common styles for all types */ +.bs-callout { + margin: 20px 0; + padding: 20px; + border-left: 3px solid #eee; +} +.bs-callout h4 { + margin-top: 0; + margin-bottom: 5px; +} +.bs-callout p:last-child { + margin-bottom: 0; +} + +/* Variations */ +.bs-callout-danger { + background-color: #fdf7f7; + border-color: #eed3d7; +} +.bs-callout-danger h4 { + color: #b94a48; +} +.bs-callout-warning { + background-color: #faf8f0; + border-color: #faebcc; +} +.bs-callout-warning h4 { + color: #c09853; +} +.bs-callout-info { + background-color: #f4f8fa; + border-color: #bce8f1; +} +.bs-callout-info h4 { + color: #3a87ad; +} + + +/* + * Team members + * + * Avatars, names, and usernames for core team. + */ + +.bs-team .team-member { + color: #555; + line-height: 32px; +} +.bs-team .team-member:hover { + color: #333; + text-decoration: none; +} +.bs-team .github-btn { + float: right; + margin-top: 6px; + width: 120px; + height: 20px; +} +.bs-team img { + float: left; + width: 32px; + margin-right: 10px; + border-radius: 4px; +} + + +/* + * Grid examples + * + * Highlight the grid columns within the docs so folks can see their padding, + * alignment, sizing, etc. + */ + +.show-grid { + margin-bottom: 15px; +} +.show-grid [class^="col-"] { + padding-top: 10px; + padding-bottom: 10px; + background-color: #eee; + background-color: rgba(86,61,124,.15); + border: 1px solid #ddd; + border: 1px solid rgba(86,61,124,.2); +} + + +/* + * Examples + * + * Isolated sections of example content for each component or feature. Usually + * followed by a code snippet. + */ + +.bs-example { + position: relative; + padding: 45px 15px 15px; + margin: 0 -15px 15px; + background-color: #fafafa; + box-shadow: inset 0 3px 6px rgba(0,0,0,.05); + border-color: #e5e5e5 #eee #eee; + border-style: solid; + border-width: 1px 0; +} +/* Echo out a label for the example */ +.bs-example:after { + content: "Example"; + position: absolute; + top: 15px; + left: 15px; + font-size: 12px; + font-weight: bold; + color: #bbb; + text-transform: uppercase; + letter-spacing: 1px; +} + +/* Tweak display of the code snippets when following an example */ +.bs-example + .highlight { + margin: -15px -15px 15px; + border-radius: 0; + border-width: 0 0 1px; +} + +/* Make the examples and snippets not full-width */ +@media (min-width: 768px) { + .bs-example { + margin-left: 0; + margin-right: 0; + background-color: #fff; + border-width: 1px; + border-color: #ddd; + border-radius: 4px 4px 0 0; + box-shadow: none; + } + .bs-example + .highlight { + margin-top: -16px; + margin-left: 0; + margin-right: 0; + border-width: 1px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + } +} + +/* Undo width of container */ +.bs-example .container { + width: auto; +} + +/* Tweak content of examples for optimum awesome */ +.bs-example > p:last-child, +.bs-example > ul:last-child, +.bs-example > ol:last-child, +.bs-example > blockquote:last-child, +.bs-example > .form-control:last-child, +.bs-example > .table:last-child, +.bs-example > .navbar:last-child, +.bs-example > .jumbotron:last-child, +.bs-example > .alert:last-child, +.bs-example > .panel:last-child, +.bs-example > .list-group:last-child, +.bs-example > .well:last-child, +.bs-example > .progress:last-child, +.bs-example > .table-responsive:last-child > .table { + margin-bottom: 0; +} +.bs-example > p > .close { + float: none; +} + +/* Typography */ +.bs-example-type .table .info { + color: #999; + vertical-align: middle; +} +.bs-example-type .table td { + padding: 15px 0; + border-color: #eee; +} +.bs-example-type .table tr:first-child td { + border-top: 0; +} +.bs-example-type h1, +.bs-example-type h2, +.bs-example-type h3, +.bs-example-type h4, +.bs-example-type h5, +.bs-example-type h6 { + margin: 0; +} + +/* Images */ +.bs-example > .img-circle, +.bs-example > .img-rounded, +.bs-example > .img-thumbnail { + margin: 5px; +} + +/* Tables */ +.bs-example > .table-responsive > .table { + background-color: #fff; +} + +/* Buttons */ +.bs-example > .btn, +.bs-example > .btn-group { + margin-top: 5px; + margin-bottom: 5px; +} +.bs-example > .btn-toolbar + .btn-toolbar { + margin-top: 10px; +} + +/* Forms */ +.bs-example-control-sizing select, +.bs-example-control-sizing input[type="text"] + input[type="text"] { + margin-top: 10px; +} +.bs-example-form .input-group { + margin-bottom: 10px; +} +.bs-example > textarea.form-control { + resize: vertical; +} + +/* List groups */ +.bs-example > .list-group { + max-width: 400px; +} + +/* Navbars */ +.bs-example .navbar:last-child { + margin-bottom: 0; +} +.bs-navbar-top-example, +.bs-navbar-bottom-example { + z-index: 1; + padding: 0; + overflow: hidden; /* cut the drop shadows off */ +} +.bs-navbar-top-example .navbar-header, +.bs-navbar-bottom-example .navbar-header { + margin-left: 0; +} +.bs-navbar-top-example .navbar-fixed-top, +.bs-navbar-bottom-example .navbar-fixed-bottom { + position: relative; + margin-left: 0; + margin-right: 0; +} +.bs-navbar-top-example { + padding-bottom: 45px; +} +.bs-navbar-top-example:after { + top: auto; + bottom: 15px; +} +.bs-navbar-top-example .navbar-fixed-top { + top: -1px; +} +.bs-navbar-bottom-example { + padding-top: 45px; +} +.bs-navbar-bottom-example .navbar-fixed-bottom { + bottom: -1px; +} +.bs-navbar-bottom-example .navbar { + margin-bottom: 0; +} +@media (min-width: 768px) { + .bs-navbar-top-example .navbar-fixed-top, + .bs-navbar-bottom-example .navbar-fixed-bottom { + position: absolute; + } + .bs-navbar-top-example { + border-radius: 0 0 4px 4px; + } + .bs-navbar-bottom-example { + border-radius: 4px 4px 0 0; + } +} + +.bs-navmenu-fixed-example { + height: 200px; + padding-left: 315px; +} +.bs-navmenu-fixed-example:after { + left: 315px; +} + +.bs-navmenu-offcanvas-example { + min-height: 200px; + overflow: hidden; +} +.bs-navmenu-offcanvas-example:after { + display: none; +} +.bs-navmenu-offcanvas-example > div { + position: absolute; + top: 0; + left: 0; + height: 100%; + width: 100%; + padding: 70px 15px 15px 15px; +} +.bs-navmenu-offcanvas-example p { + color: #bbb; +} +.bs-navmenu-fixed-example .navmenu-fixed-left, +.bs-navmenu-offcanvas-example .navmenu-fixed-left, +.bs-navmenu-offcanvas-example .navbar-fixed-top { + position: absolute; + z-index: 1; +} +.bs-navmenu-offcanvas-example .navmenu-fixed-left { + -webkit-transform: translate(-300px, 0); + transform: translate(-300px, 0); +} +.bs-navmenu-offcanvas-example .navbar-toggle { + float: left; + margin-left: 15px; + display: block; +} + +/* Pagination */ +.bs-example .pagination { + margin-top: 10px; + margin-bottom: 10px; +} + +/* Alerts */ +.bs-example .alert-fixed-top { + position: absolute; + z-index: 1; + width: auto; + left: 0; + right: 0; + margin-left: 0; +} +@media (min-width: 992px) { + .bs-example .alert-fixed-top { + left: 15px; + right: 15px; + } +} + +/* Pager */ +.bs-example > .pager { + margin-top: 0; +} + +/* Example modals */ +.bs-example-modal { + background-color: #f5f5f5; +} +.bs-example-modal .modal { + position: relative; + top: auto; + right: auto; + left: auto; + bottom: auto; + z-index: 1; + display: block; +} +.bs-example-modal .modal-dialog { + left: auto; + margin-left: auto; + margin-right: auto; +} + +/* Example dropdowns */ +.bs-example > .dropdown > .dropdown-menu { + position: static; + display: block; + margin-bottom: 5px; +} + +/* Example tabbable tabs */ +.bs-example-tabs .nav-tabs { + margin-bottom: 15px; +} + +/* Tooltips */ +.bs-example-tooltips { + text-align: center; +} +.bs-example-tooltips > .btn { + margin-top: 5px; + margin-bottom: 5px; +} + +/* Popovers */ +.bs-example-popover { + padding-bottom: 24px; + background-color: #f9f9f9; +} +.bs-example-popover .popover { + position: relative; + display: block; + float: left; + width: 260px; + margin: 20px; +} + +/* Scrollspy demo on fixed height div */ +.scrollspy-example { + position: relative; + height: 200px; + margin-top: 10px; + overflow: auto; +} + + +/* + * Code snippets + * + * Generated via Pygments and Jekyll, these are snippets of HTML, CSS, and JS. + */ + +.highlight { + display: none; /* hidden by default, until >480px */ + padding: 9px 14px; + margin-bottom: 14px; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; + border-radius: 4px; +} +.highlight pre { + padding: 0; + margin-top: 0; + margin-bottom: 0; + background-color: transparent; + border: 0; + white-space: nowrap; +} +.highlight pre code { + font-size: inherit; + color: #333; /* Effectively the base text color */ +} +.highlight pre .lineno { + display: inline-block; + width: 22px; + padding-right: 5px; + margin-right: 10px; + text-align: right; + color: #bebec5; +} + +/* Show code snippets when we have the space */ +@media (min-width: 481px) { + .highlight { + display: block; + } +} + + +/* + * Responsive tests + * + * Generate a set of tests to show the responsive utilities in action. + */ + +/* Responsive (scrollable) doc tables */ +.table-responsive .highlight pre { + white-space: normal; +} + +/* Utility classes table */ +.bs-table th small, +.responsive-utilities th small { + display: block; + font-weight: normal; + color: #999; +} +.responsive-utilities tbody th { + font-weight: normal; +} +.responsive-utilities td { + text-align: center; +} +.responsive-utilities td.is-visible { + color: #468847; + background-color: #dff0d8 !important; +} +.responsive-utilities td.is-hidden { + color: #ccc; + background-color: #f9f9f9 !important; +} + +/* Responsive tests */ +.responsive-utilities-test { + margin-top: 5px; +} +.responsive-utilities-test .col-xs-6 { + margin-bottom: 10px; +} +.responsive-utilities-test span { + padding: 15px 10px; + font-size: 14px; + font-weight: bold; + line-height: 1.1; + text-align: center; + border-radius: 4px; +} +.visible-on .col-xs-6 .hidden-xs, +.visible-on .col-xs-6 .hidden-sm, +.visible-on .col-xs-6 .hidden-md, +.visible-on .col-xs-6 .hidden-lg, +.hidden-on .col-xs-6 .hidden-xs, +.hidden-on .col-xs-6 .hidden-sm, +.hidden-on .col-xs-6 .hidden-md, +.hidden-on .col-xs-6 .hidden-lg { + color: #999; + border: 1px solid #ddd; +} +.visible-on .col-xs-6 .visible-xs, +.visible-on .col-xs-6 .visible-sm, +.visible-on .col-xs-6 .visible-md, +.visible-on .col-xs-6 .visible-lg, +.hidden-on .col-xs-6 .visible-xs, +.hidden-on .col-xs-6 .visible-sm, +.hidden-on .col-xs-6 .visible-md, +.hidden-on .col-xs-6 .visible-lg { + color: #468847; + background-color: #dff0d8; + border: 1px solid #d6e9c6; +} + + +/* + * Customizer + * + * Since this is so form control heavy, we have quite a few styles to customize + * the display of inputs, headings, and more. Also included are all the download + * buttons and actions. + */ + +.bs-customizer .toggle { + float: right; + margin-top: 80px; +} + +/* Headings and form contrls */ +.bs-customizer label { + margin-top: 10px; + font-weight: 500; + color: #555; +} +.bs-customizer h2 { + margin-top: 0; + margin-bottom: 5px; + padding-top: 30px; +} +.bs-customizer h3 { + margin-bottom: 0; +} +.bs-customizer h4 { + margin-top: 15px; + margin-bottom: 0; +} +.bs-customizer .bs-callout h4 { + margin-top: 0; /* lame, but due to specificity we have to duplicate */ + margin-bottom: 5px; +} +.bs-customizer input[type="text"] { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + background-color: #fafafa; +} +.bs-customizer .help-block { + font-size: 12px; + margin-bottom: 5px; +} + +/* For the variables, use regular weight */ +#less-section label { + font-weight: normal; +} + +.bs-customizer-input { + float: left; + width: 33.333333%; + padding-left: 15px; + padding-right: 15px; +} + +/* Downloads */ +.bs-customize-download .btn-outline { + padding: 20px; +} + +/* Error handling */ +.bs-customizer-alert { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 1030; + padding: 15px 0; + color: #fff; + background-color: #d9534f; + box-shadow: inset 0 1px 0 rgba(255,255,255,.25); + border-bottom: 1px solid #b94441; +} +.bs-customizer-alert .close { + margin-top: -4px; + font-size: 24px; +} +.bs-customizer-alert p { + margin-bottom: 0; +} +.bs-customizer-alert .glyphicon { + margin-right: 5px; +} +.bs-customizer-alert pre { + margin: 10px 0 0; + color: #fff; + background-color: #a83c3a; + border-color: #973634; + box-shadow: inset 0 2px 4px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1); +} + + +/* + * Miscellaneous + * + * Odds and ends for optimum docs display. + */ + + /* About page */ + .bs-about { + font-size: 16px; + } + +/* Examples gallery: space out content better */ +.bs-examples h4 { + margin-bottom: 5px; +} +.bs-examples p { + margin-bottom: 20px; +} + +/* Pseudo :focus state for showing how it looks in the docs */ +#focusedInput { + border-color: rgb(82,168,236); + border-color: rgba(82,168,236,.8); + outline: 0; + outline: thin dotted \9; /* IE6-9 */ + -moz-box-shadow: 0 0 8px rgba(82,168,236,.6); + box-shadow: 0 0 8px rgba(82,168,236,.6); +} + +/* Better spacing on download options in getting started */ +.bs-docs-dl-options h4 { + margin-top: 15px; + margin-bottom: 5px; +} diff --git a/docs/assets/css/docs.min.css b/docs/assets/css/docs.min.css new file mode 100644 index 00000000..15901c2c --- /dev/null +++ b/docs/assets/css/docs.min.css @@ -0,0 +1,6 @@ +/*! + * Jasny Bootstrap Docs (http://jasny.github.io/bootstrap) + * Copyright 2011-2014 Twitter, Inc. + * Licensed under the Creative Commons Attribution 3.0 Unported License. For + * details, see http://creativecommons.org/licenses/by/3.0/. + */body{position:relative;padding-top:50px;overflow:auto!important}span.hidden-sm{display:inline!important}@media (min-width:768px) and (max-width:992px){span.hidden-sm{display:none!important}}.table code{font-size:13px;font-weight:400}.btn-outline{color:#962A28;background-color:#fff;border-color:#e5e5e5}.btn-outline:hover,.btn-outline:focus,.btn-outline:active{color:#fff;background-color:#962A28;background-image:-webkit-gradient(linear,left top,right top,color-stop(0,#450915),color-stop(1,#962A28));background-image:-o-linear-gradient(right,#450915 0,#962A28 100%);background-image:-moz-linear-gradient(right,#450915 0,#962A28 100%);background-image:-webkit-linear-gradient(right,#450915 0,#962A28 100%);background-image:-ms-linear-gradient(right,#450915 0,#962A28 100%);background-image:linear-gradient(to right,#450915 0,#962A28 100%);border-color:#962A28}.btn-outline-inverse{color:#fff;background-color:transparent;border-color:#cdbfe3}.btn-outline-inverse:hover,.btn-outline-inverse:focus,.btn-outline-inverse:active{color:#563d7c;text-shadow:none;background-color:#fff;border-color:#fff}.bs-docs-nav{text-shadow:0 -1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(255,255,255,.1)}.bs-docs-nav .navbar-brand{color:#fff}.bs-docs-nav .navbar-nav>li>a{color:#ceb6b8}.bs-docs-nav .navbar-nav>li>a:hover{color:#fff}.bs-docs-nav .navbar-nav>.active>a,.bs-docs-nav .navbar-nav>.active>a:hover{color:#fff;background-color:#6B313B;background-color:rgba(255,255,255,.15)}.bs-docs-nav .navbar-toggle,.bs-docs-nav .navbar-toggle:focus{border-color:#86555C;border-color:rgba(255,255,255,.3);background:0 0}.bs-docs-nav .navbar-toggle:hover{background-color:#63303A;background-color:rgba(255,255,255,.15);border-color:transparent}.bs-footer{padding-top:40px;padding-bottom:30px;margin-top:100px;color:#777;text-align:center;border-top:1px solid #e5e5e5}.footer-links{margin:10px 0;padding-left:0}.footer-links li{display:inline;padding:0 2px}.footer-links li:first-child{padding-left:0}@media (min-width:768px){.bs-footer{text-align:left}.bs-footer p{margin-bottom:0}}.bs-social{margin-top:20px;margin-bottom:20px;text-align:center}.bs-social-buttons{display:inline-block;margin-bottom:0;padding-left:0;list-style:none}.bs-social-buttons li{display:inline-block;line-height:1;padding:5px 8px}.bs-social-buttons .twitter-follow-button{width:225px!important}.bs-social-buttons .twitter-share-button{width:98px!important}.github-btn{border:0;overflow:hidden}@media (min-width:768px){.bs-social{text-align:left}.bs-social-buttons li:first-child{padding-left:0}}.bs-docs-nav,.bs-docs-home,.bs-header{color:#ceb6b8;background-color:#450915;background-image:url(../img/bg-1920x1200.jpg)}@media (min-width:1921px),(min-height:1201px){.bs-header{background-image:url(../img/bg-3500x2500.jpg)}}.bs-header{background-position:0 -51px}.bs-masthead{position:relative;padding:30px 15px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.15)}.bs-masthead h1{font-size:50px;line-height:1;color:#fff}.bs-masthead .btn-outline-inverse{margin:10px}.bs-masthead-links{margin-top:20px;margin-bottom:40px;padding:0 15px;list-style:none;text-align:center}.bs-masthead-links li{display:inline}.bs-masthead-links li+li{margin-left:20px}.bs-masthead a,.bs-masthead-links a{color:#fff}@media (min-width:768px){.bs-masthead{text-align:left;padding-top:140px;padding-bottom:140px}.bs-masthead h1{font-size:100px}.bs-masthead .lead{margin-right:25%;font-size:30px}.bs-masthead .btn-outline-inverse{width:auto;margin:20px 5px 20px 0;padding:18px 24px;font-size:21px}.bs-masthead-links{padding:0;text-align:left}}.bs-header{padding:30px 15px 40px;font-size:16px;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.15)}.bs-header h1{color:#fff}.bs-header p{font-weight:300;line-height:1.5}.bs-header .container{position:relative}@media (min-width:768px){.bs-header{font-size:21px;text-align:left}.bs-header h1{font-size:60px;line-height:1}}@media (min-width:992px){.bs-header h1,.bs-header p{margin-right:380px}}.aboutme{display:block;margin:50px -30px -40px;padding:5px;overflow:hidden;background:#63303A;background:rgba(255,255,255,.15);box-shadow:inset 0 3px 5px rgba(0,0,0,.075);font-size:13px!important;line-height:16px!important;text-decoration:none;text-align:center}.aboutme:hover{text-decoration:none}.aboutme-text{margin-top:5px;color:#ceb6b8}.aboutme-title{font-weight:700;margin-bottom:4px;color:#fff}.aboutme-name{margin-top:9px;color:#fff}.aboutme img{float:right;height:50px;margin-left:10px}@media screen and (min-width:768px){.aboutme{margin:0!important;border-radius:4px;box-shadow:inset 0 3px 5px rgba(0,0,0,.075),0 1px 0 rgba(255,255,255,.1)}.aboutme-title{display:block}}@media screen and (min-width:992px){.aboutme{position:absolute;top:20px;right:0;padding:15px!important;width:330px!important;min-height:132px;text-align:left}.aboutme-title,.aboutme-name{display:block}.aboutme img{height:auto}}.bs-docs-home .aboutme{margin:0 -15px 40px!important}@media screen and (min-width:480px){.bs-docs-home .aboutme{width:330px!important;margin:0 auto 40px!important;border-radius:4px}}@media screen and (min-width:768px){.bs-docs-home .aboutme{float:left;width:330px!important;margin:0!important}.bs-docs-home .bs-social,.bs-docs-home .bs-masthead-links{margin-left:350px}}@media screen and (min-width:992px){.bs-docs-home .aboutme{position:static}}@media screen and (min-width:1170px){.bs-docs-home .aboutme{margin-top:-25px!important}}.bs-old-docs{padding:15px 20px;color:#777;background-color:#fafafa;border-top:1px solid #fff;border-bottom:1px solid #e5e5e5}.bs-old-docs strong{color:#555}.bs-sidebar.affix{position:static}.bs-sidenav{margin-top:30px;margin-bottom:30px;padding-top:10px;padding-bottom:10px;text-shadow:0 1px 0 #fff;background-color:#f7f5fa;border-radius:5px}.bs-sidebar .nav>li>a{display:block;color:#716b7a;padding:5px 20px}.bs-sidebar .nav>li>a:hover,.bs-sidebar .nav>li>a:focus{text-decoration:none;background-color:#e5e3e9;border-right:1px solid #dbd8e0}.bs-sidebar .nav>.active>a,.bs-sidebar .nav>.active:hover>a,.bs-sidebar .nav>.active:focus>a{font-weight:700;color:#563d7c;background-color:transparent;border-right:1px solid #563d7c}.bs-sidebar .nav .nav{display:none;margin-bottom:8px}.bs-sidebar .nav .nav>li>a{padding-top:3px;padding-bottom:3px;padding-left:30px;font-size:90%}@media (min-width:992px){.bs-sidebar .nav>.active>ul{display:block}.bs-sidebar.affix,.bs-sidebar.affix-bottom{width:213px}.bs-sidebar.affix{position:fixed;top:80px}.bs-sidebar.affix-bottom{position:absolute}.bs-sidebar.affix-bottom .bs-sidenav,.bs-sidebar.affix .bs-sidenav{margin-top:0;margin-bottom:0}}@media (min-width:1200px){.bs-sidebar.affix-bottom,.bs-sidebar.affix{width:263px}}.bs-docs-section+.bs-docs-section{padding-top:40px}h1[id]{padding-top:80px;margin-top:-80px}h2[id],h3[id]{padding-top:65px;margin-top:-20px}.bs-callout{margin:20px 0;padding:20px;border-left:3px solid #eee}.bs-callout h4{margin-top:0;margin-bottom:5px}.bs-callout p:last-child{margin-bottom:0}.bs-callout-danger{background-color:#fdf7f7;border-color:#eed3d7}.bs-callout-danger h4{color:#b94a48}.bs-callout-warning{background-color:#faf8f0;border-color:#faebcc}.bs-callout-warning h4{color:#c09853}.bs-callout-info{background-color:#f4f8fa;border-color:#bce8f1}.bs-callout-info h4{color:#3a87ad}.bs-team .team-member{color:#555;line-height:32px}.bs-team .team-member:hover{color:#333;text-decoration:none}.bs-team .github-btn{float:right;margin-top:6px;width:120px;height:20px}.bs-team img{float:left;width:32px;margin-right:10px;border-radius:4px}.show-grid{margin-bottom:15px}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;background-color:#eee;background-color:rgba(86,61,124,.15);border:1px solid #ddd;border:1px solid rgba(86,61,124,.2)}.bs-example{position:relative;padding:45px 15px 15px;margin:0 -15px 15px;background-color:#fafafa;box-shadow:inset 0 3px 6px rgba(0,0,0,.05);border-color:#e5e5e5 #eee #eee;border-style:solid;border-width:1px 0}.bs-example:after{content:"Example";position:absolute;top:15px;left:15px;font-size:12px;font-weight:700;color:#bbb;text-transform:uppercase;letter-spacing:1px}.bs-example+.highlight{margin:-15px -15px 15px;border-radius:0;border-width:0 0 1px}@media (min-width:768px){.bs-example{margin-left:0;margin-right:0;background-color:#fff;border-width:1px;border-color:#ddd;border-radius:4px 4px 0 0;box-shadow:none}.bs-example+.highlight{margin-top:-16px;margin-left:0;margin-right:0;border-width:1px;border-bottom-left-radius:4px;border-bottom-right-radius:4px}}.bs-example .container{width:auto}.bs-example>p:last-child,.bs-example>ul:last-child,.bs-example>ol:last-child,.bs-example>blockquote:last-child,.bs-example>.form-control:last-child,.bs-example>.table:last-child,.bs-example>.navbar:last-child,.bs-example>.jumbotron:last-child,.bs-example>.alert:last-child,.bs-example>.panel:last-child,.bs-example>.list-group:last-child,.bs-example>.well:last-child,.bs-example>.progress:last-child,.bs-example>.table-responsive:last-child>.table{margin-bottom:0}.bs-example>p>.close{float:none}.bs-example-type .table .info{color:#999;vertical-align:middle}.bs-example-type .table td{padding:15px 0;border-color:#eee}.bs-example-type .table tr:first-child td{border-top:0}.bs-example-type h1,.bs-example-type h2,.bs-example-type h3,.bs-example-type h4,.bs-example-type h5,.bs-example-type h6{margin:0}.bs-example>.img-circle,.bs-example>.img-rounded,.bs-example>.img-thumbnail{margin:5px}.bs-example>.table-responsive>.table{background-color:#fff}.bs-example>.btn,.bs-example>.btn-group{margin-top:5px;margin-bottom:5px}.bs-example>.btn-toolbar+.btn-toolbar{margin-top:10px}.bs-example-control-sizing select,.bs-example-control-sizing input[type=text]+input[type=text]{margin-top:10px}.bs-example-form .input-group{margin-bottom:10px}.bs-example>textarea.form-control{resize:vertical}.bs-example>.list-group{max-width:400px}.bs-example .navbar:last-child{margin-bottom:0}.bs-navbar-top-example,.bs-navbar-bottom-example{z-index:1;padding:0;overflow:hidden}.bs-navbar-top-example .navbar-header,.bs-navbar-bottom-example .navbar-header{margin-left:0}.bs-navbar-top-example .navbar-fixed-top,.bs-navbar-bottom-example .navbar-fixed-bottom{position:relative;margin-left:0;margin-right:0}.bs-navbar-top-example{padding-bottom:45px}.bs-navbar-top-example:after{top:auto;bottom:15px}.bs-navbar-top-example .navbar-fixed-top{top:-1px}.bs-navbar-bottom-example{padding-top:45px}.bs-navbar-bottom-example .navbar-fixed-bottom{bottom:-1px}.bs-navbar-bottom-example .navbar{margin-bottom:0}@media (min-width:768px){.bs-navbar-top-example .navbar-fixed-top,.bs-navbar-bottom-example .navbar-fixed-bottom{position:absolute}.bs-navbar-top-example{border-radius:0 0 4px 4px}.bs-navbar-bottom-example{border-radius:4px 4px 0 0}}.bs-navmenu-fixed-example{height:200px;padding-left:315px}.bs-navmenu-fixed-example:after{left:315px}.bs-navmenu-offcanvas-example{min-height:200px;overflow:hidden}.bs-navmenu-offcanvas-example:after{display:none}.bs-navmenu-offcanvas-example>div{position:absolute;top:0;left:0;height:100%;width:100%;padding:70px 15px 15px}.bs-navmenu-offcanvas-example p{color:#bbb}.bs-navmenu-fixed-example .navmenu-fixed-left,.bs-navmenu-offcanvas-example .navmenu-fixed-left,.bs-navmenu-offcanvas-example .navbar-fixed-top{position:absolute;z-index:1}.bs-navmenu-offcanvas-example .navmenu-fixed-left{-webkit-transform:translate(-300px,0);transform:translate(-300px,0)}.bs-navmenu-offcanvas-example .navbar-toggle{float:left;margin-left:15px;display:block}.bs-example .pagination{margin-top:10px;margin-bottom:10px}.bs-example .alert-fixed-top{position:absolute;z-index:1;width:auto;left:0;right:0;margin-left:0}@media (min-width:992px){.bs-example .alert-fixed-top{left:15px;right:15px}}.bs-example>.pager{margin-top:0}.bs-example-modal{background-color:#f5f5f5}.bs-example-modal .modal{position:relative;top:auto;right:auto;left:auto;bottom:auto;z-index:1;display:block}.bs-example-modal .modal-dialog{left:auto;margin-left:auto;margin-right:auto}.bs-example>.dropdown>.dropdown-menu{position:static;display:block;margin-bottom:5px}.bs-example-tabs .nav-tabs{margin-bottom:15px}.bs-example-tooltips{text-align:center}.bs-example-tooltips>.btn{margin-top:5px;margin-bottom:5px}.bs-example-popover{padding-bottom:24px;background-color:#f9f9f9}.bs-example-popover .popover{position:relative;display:block;float:left;width:260px;margin:20px}.scrollspy-example{position:relative;height:200px;margin-top:10px;overflow:auto}.highlight{display:none;padding:9px 14px;margin-bottom:14px;background-color:#f7f7f9;border:1px solid #e1e1e8;border-radius:4px}.highlight pre{padding:0;margin-top:0;margin-bottom:0;background-color:transparent;border:0;white-space:nowrap}.highlight pre code{font-size:inherit;color:#333}.highlight pre .lineno{display:inline-block;width:22px;padding-right:5px;margin-right:10px;text-align:right;color:#bebec5}@media (min-width:481px){.highlight{display:block}}.table-responsive .highlight pre{white-space:normal}.bs-table th small,.responsive-utilities th small{display:block;font-weight:400;color:#999}.responsive-utilities tbody th{font-weight:400}.responsive-utilities td{text-align:center}.responsive-utilities td.is-visible{color:#468847;background-color:#dff0d8!important}.responsive-utilities td.is-hidden{color:#ccc;background-color:#f9f9f9!important}.responsive-utilities-test{margin-top:5px}.responsive-utilities-test .col-xs-6{margin-bottom:10px}.responsive-utilities-test span{padding:15px 10px;font-size:14px;font-weight:700;line-height:1.1;text-align:center;border-radius:4px}.visible-on .col-xs-6 .hidden-xs,.visible-on .col-xs-6 .hidden-sm,.visible-on .col-xs-6 .hidden-md,.visible-on .col-xs-6 .hidden-lg,.hidden-on .col-xs-6 .hidden-xs,.hidden-on .col-xs-6 .hidden-sm,.hidden-on .col-xs-6 .hidden-md,.hidden-on .col-xs-6 .hidden-lg{color:#999;border:1px solid #ddd}.visible-on .col-xs-6 .visible-xs,.visible-on .col-xs-6 .visible-sm,.visible-on .col-xs-6 .visible-md,.visible-on .col-xs-6 .visible-lg,.hidden-on .col-xs-6 .visible-xs,.hidden-on .col-xs-6 .visible-sm,.hidden-on .col-xs-6 .visible-md,.hidden-on .col-xs-6 .visible-lg{color:#468847;background-color:#dff0d8;border:1px solid #d6e9c6}.bs-customizer .toggle{float:right;margin-top:80px}.bs-customizer label{margin-top:10px;font-weight:500;color:#555}.bs-customizer h2{margin-top:0;margin-bottom:5px;padding-top:30px}.bs-customizer h3{margin-bottom:0}.bs-customizer h4{margin-top:15px;margin-bottom:0}.bs-customizer .bs-callout h4{margin-top:0;margin-bottom:5px}.bs-customizer input[type=text]{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;background-color:#fafafa}.bs-customizer .help-block{font-size:12px;margin-bottom:5px}#less-section label{font-weight:400}.bs-customizer-input{float:left;width:33.333333%;padding-left:15px;padding-right:15px}.bs-customize-download .btn-outline{padding:20px}.bs-customizer-alert{position:fixed;top:0;left:0;right:0;z-index:1030;padding:15px 0;color:#fff;background-color:#d9534f;box-shadow:inset 0 1px 0 rgba(255,255,255,.25);border-bottom:1px solid #b94441}.bs-customizer-alert .close{margin-top:-4px;font-size:24px}.bs-customizer-alert p{margin-bottom:0}.bs-customizer-alert .glyphicon{margin-right:5px}.bs-customizer-alert pre{margin:10px 0 0;color:#fff;background-color:#a83c3a;border-color:#973634;box-shadow:inset 0 2px 4px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}.bs-about{font-size:16px}.bs-examples h4{margin-bottom:5px}.bs-examples p{margin-bottom:20px}#focusedInput{border-color:#52a8ec;border-color:rgba(82,168,236,.8);outline:0;outline:thin dotted \9;-moz-box-shadow:0 0 8px rgba(82,168,236,.6);box-shadow:0 0 8px rgba(82,168,236,.6)}.bs-docs-dl-options h4{margin-top:15px;margin-bottom:5px}.hll{background-color:#ffc}.c{color:#999}.err{color:#A00;background-color:#FAA}.k{color:#069}.o{color:#555}.cm{color:#09F;font-style:italic}.cp{color:#099}.c1{color:#999}.cs{color:#999}.gd{background-color:#FCC;border:1px solid #C00}.ge{font-style:italic}.gr{color:red}.gh{color:#030}.gi{background-color:#CFC;border:1px solid #0C0}.go{color:#AAA}.gp{color:#009}.gu{color:#030}.gt{color:#9C6}.kc{color:#069}.kd{color:#069}.kn{color:#069}.kp{color:#069}.kr{color:#069}.kt{color:#078}.m{color:#F60}.s{color:#d44950}.na{color:#4f9fcf}.nb{color:#366}.nc{color:#0A8}.no{color:#360}.nd{color:#99F}.ni{color:#999}.ne{color:#C00}.nf{color:#C0F}.nl{color:#99F}.nn{color:#0CF}.nt{color:#2f6f9f}.nv{color:#033}.ow{color:#000}.w{color:#bbb}.mf{color:#F60}.mh{color:#F60}.mi{color:#F60}.mo{color:#F60}.sb{color:#C30}.sc{color:#C30}.sd{color:#C30;font-style:italic}.s2{color:#C30}.se{color:#C30}.sh{color:#C30}.si{color:#A00}.sx{color:#C30}.sr{color:#3AA}.s1{color:#C30}.ss{color:#FC3}.bp{color:#366}.vc{color:#033}.vg{color:#033}.vi{color:#033}.il{color:#F60}.css .o,.css .o+.nt,.css .nt+.nt{color:#999} \ No newline at end of file diff --git a/docs/assets/css/pygments-manni.css b/docs/assets/css/pygments-manni.css new file mode 100644 index 00000000..1264b87f --- /dev/null +++ b/docs/assets/css/pygments-manni.css @@ -0,0 +1,66 @@ +.hll { background-color: #ffffcc } + /*{ background: #f0f3f3; }*/ +.c { color: #999; } /* Comment */ +.err { color: #AA0000; background-color: #FFAAAA } /* Error */ +.k { color: #006699; } /* Keyword */ +.o { color: #555555 } /* Operator */ +.cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ +.cp { color: #009999 } /* Comment.Preproc */ +.c1 { color: #999; } /* Comment.Single */ +.cs { color: #999; } /* Comment.Special */ +.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ +.ge { font-style: italic } /* Generic.Emph */ +.gr { color: #FF0000 } /* Generic.Error */ +.gh { color: #003300; } /* Generic.Heading */ +.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ +.go { color: #AAAAAA } /* Generic.Output */ +.gp { color: #000099; } /* Generic.Prompt */ +.gs { } /* Generic.Strong */ +.gu { color: #003300; } /* Generic.Subheading */ +.gt { color: #99CC66 } /* Generic.Traceback */ +.kc { color: #006699; } /* Keyword.Constant */ +.kd { color: #006699; } /* Keyword.Declaration */ +.kn { color: #006699; } /* Keyword.Namespace */ +.kp { color: #006699 } /* Keyword.Pseudo */ +.kr { color: #006699; } /* Keyword.Reserved */ +.kt { color: #007788; } /* Keyword.Type */ +.m { color: #FF6600 } /* Literal.Number */ +.s { color: #d44950 } /* Literal.String */ +.na { color: #4f9fcf } /* Name.Attribute */ +.nb { color: #336666 } /* Name.Builtin */ +.nc { color: #00AA88; } /* Name.Class */ +.no { color: #336600 } /* Name.Constant */ +.nd { color: #9999FF } /* Name.Decorator */ +.ni { color: #999999; } /* Name.Entity */ +.ne { color: #CC0000; } /* Name.Exception */ +.nf { color: #CC00FF } /* Name.Function */ +.nl { color: #9999FF } /* Name.Label */ +.nn { color: #00CCFF; } /* Name.Namespace */ +.nt { color: #2f6f9f; } /* Name.Tag */ +.nv { color: #003333 } /* Name.Variable */ +.ow { color: #000000; } /* Operator.Word */ +.w { color: #bbbbbb } /* Text.Whitespace */ +.mf { color: #FF6600 } /* Literal.Number.Float */ +.mh { color: #FF6600 } /* Literal.Number.Hex */ +.mi { color: #FF6600 } /* Literal.Number.Integer */ +.mo { color: #FF6600 } /* Literal.Number.Oct */ +.sb { color: #CC3300 } /* Literal.String.Backtick */ +.sc { color: #CC3300 } /* Literal.String.Char */ +.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ +.s2 { color: #CC3300 } /* Literal.String.Double */ +.se { color: #CC3300; } /* Literal.String.Escape */ +.sh { color: #CC3300 } /* Literal.String.Heredoc */ +.si { color: #AA0000 } /* Literal.String.Interpol */ +.sx { color: #CC3300 } /* Literal.String.Other */ +.sr { color: #33AAAA } /* Literal.String.Regex */ +.s1 { color: #CC3300 } /* Literal.String.Single */ +.ss { color: #FFCC33 } /* Literal.String.Symbol */ +.bp { color: #336666 } /* Name.Builtin.Pseudo */ +.vc { color: #003333 } /* Name.Variable.Class */ +.vg { color: #003333 } /* Name.Variable.Global */ +.vi { color: #003333 } /* Name.Variable.Instance */ +.il { color: #FF6600 } /* Literal.Number.Integer.Long */ + +.css .o, +.css .o + .nt, +.css .nt + .nt { color: #999; } diff --git a/docs/assets/ico/apple-touch-icon-144-precomposed.png b/docs/assets/ico/apple-touch-icon-144-precomposed.png new file mode 100644 index 0000000000000000000000000000000000000000..151942d2dd59334c0784b9af2d88180351ad9a14 GIT binary patch literal 6706 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 literal 0 HcmV?d00001 diff --git a/docs/assets/ico/favicon.png b/docs/assets/ico/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..aa421bd7d801f1e651c649b33018409678a9dc29 GIT binary patch literal 1663 zcmV-_27vjAP)9Q7`}i1`J6= zK~z}7m6u96~sVM)J$#g!J?%~YYUIN<0Xri20ZTVv+mf(AuIx5uzzRgD79Sb6 zY-wnv(eFp|s$dN*Vc-T}e>B`Lj3p(TpwjrL{BwV8tuirF*XFSx5wl3hvI_iVK>*wr zjdu>GB}O2iPhjqjFGEVhB?jjhh9je~OUo<#>*U}4pR@l^tJNTjjcT$M1cIGo31nJoU|kUU~JUEM%EVr)1nQt6h-3((AbL zcny98BG@bzEq=MS$h&O@udS}}gIm9(#f9e`LZ|~_A%)U|(Pr{u?aGQ|_YY1R-d+86yS$O&=E)qeI#Y{WiccrhM zo8x0QeMYTLrwn7;S6%!5_?{d0c=hEM6=GH!9nnAn!bE6kEUG8ln+q?naOiuG_lMEp zWZY_}&mVj^yXzZYN9D^2@OyV&r_+Ca!6K?IM8k+orbz}|V}dL;$T}Tjr$g55l65<7 z%=8qCjqKd>&wBB~I|k(P&&oIY$+EU0t2l1{RB=CBzCWdTQ^F|`O0JM?HuB`g>=miI ztrx~a^X!QeC}emGvWlZkCP562X1e9dSj$?745>VdiDd!v9*ZF{Ldb6|iW@o1jqw)I-Z@&UfA57Sel3c8pc^RKGim!ZAI#?Ve!(C5=q_bhhHXCnsT;ZT&?Cj;_udg( zt=3e6D*HH1LX1U0jT8FJiNAzD&i@qUxj_;r;H*ga*rDru;P7GX`RpyFjIn*o?YG7! zuifQz_OwEbOdol0UHos&gbFbd+Z|%NtwyIsqthnqblvWCb?M9-;ncBXY~*Q3bpk%} z={@S_d9A1kbqZ&&dD=SJRKztTZIw=i*H_n^_j8rImu}MA)+JT>U>Zd9RIa{U6aY>s zsVH*Db6e#Wa>98*(b>iaJ~>CX(;Sf&u)MSa(lFLSxcVC3bniX7`S!hotf)c%%Cpb8(P+q<i(?R?o?4TPDZ0BsGyB3u~ja}VpJC6|Ii~y z5`Q}WoPYJugITxTwq=ckZV53V#Yq+zJq>&y0sZxUJ?BmDTomN%Yr3?2(Z8EN!qIPk zOEbzzl7g91+Z7K0eL-Uyge@8oj(q=zIIrSC9;=W>SgI4Ce{qSkuloreSg~CKO7*s=Rmo`dg8Q*Lm!)u&onbOplIbr}%#GHViqs&$4Sl za1MAJ_&0DBFe}JB4D!0vKV5cFGY*vx2Ug002ov JPDHLkV1h!BBn1Ef literal 0 HcmV?d00001 diff --git a/docs/assets/img/bg-1920x1200.jpg b/docs/assets/img/bg-1920x1200.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d766ee083be7c78c8aaaf829d10e6e10cbee84d1 GIT binary patch literal 45300 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 A6#xJL literal 0 HcmV?d00001 diff --git a/docs/assets/img/bg-3500x2500.jpg b/docs/assets/img/bg-3500x2500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba282e113eecdb894205f8a917d878c405552538 GIT binary patch literal 150982 zcmb5WeOOa@nk~8$LMmXKA^}2@o~gp{VT=(8kk;`zQzn{Z5Mxz>0TaxjAbf}J7S6QK zaJZ++7?BQ1xNQ_PB6SSmqmvM-_|UF&9~?mmLusL?NKf^g@?xC6V`=vty$|+v?9#gH z7pmvne=k+UBscPTpQ*i6VgiG~NJzv* zVqzlmEjH^d{JgzkLlT?wHkZqJo5M-v{bfdKnlPQi;cwy#|LU*aefQne3{ke|o$SAS z=iPV6PH1@QTg z{)a|SU@#NkVqxp1l=vo!oMo&bZ+$~<#B!M>;N7jjBiO;-?+X9vV%k>*~VGl z_~$+2Uk**i-K6~Pw-g&sp>q;A)NblKsvx;$?8Dklu|X>{4DPHkTBKTSGn?7k+A@2P z-NE zxt)AVk5;DWa;)$a*_IY6Wku1_}xh&{@ zKlk(Q_obR&m{uk}+xolB6^<2&r$OIZ-nzNsb@J#g&ye1t?$4Ayk+Ud@AMsmaHfqEs zp;vbo{@VV~<>)NR%bhy0*LZ6(kH1nFsM%}0nYFLGFxZ`-ef){&a+i<4lJE6J7WQn_ zK4Iql@P?&R?tW~EA>S?xI~HS=MGNkg<_~{)gzH{8Qt@Kth^l_7?dyiS><|BW z$Jm>%u1?4=tW<;_IBxFfHgJCa+e-O27Zr;o_au(Rr-y=NoU^CbINQsg`D|jGe-g>+ z`$acPQo9Rx-ctm86Ah(D8{4WIk)>gG^ z*OyOAMt^5{zlia~Z@)FVt?1X%eM{xNX;hl9&f=t~ZH&-4o9%O-jXD?Vp=jGVN4RSg z&2vOAHk2P>Y%hI&q|{-{T&O(fDA@KSVaG|s6^>+^qQq7D+#@-7N3~)to8G?HRPuSS z&EdYZz{)wmeV(3DzqVZ|xDvQ}>456W{^*tcvw~^KFw?qCb%*ZgI~TajC^_d+)H0T) z>qh5w6y?kHB?sGl4vH$E(rSHM74#(ENh*aAl9Z(}6^#vwq9tl0bwJU4P?va5_txWw z-PJ!&|HFLiA@;@9T>c21za*_~+#-+-CKG6skPFEO|LXOZ6rlF2KUQsWUOh>WSzY`^ zcXgKrh>RBBQb(`TbNP|uY}v7&JtI(HdA%$AOK$A^+_zgevX;_KFLlK?Vh;fobAHzD zdoLqZsyF;dRc@}_hDUwOCeWTWWxP73>gvqnbNXd1GvrEXLD4piW+LBTMS$*9T~C`8 z-pRrr;hc3qKs=4_NKt9=Pd1%A0 z{kY4ax}M%r-iq6M(=AeUhgn@5nWzd1d7`=QJyN0Qnw-<(VlCH&aV_=mH8}tp?N)Vb z4oAC-J%Mh^yuTP530x2SIDpIb>ze2P?J`%MT0tIKI94s}-zQW@`>h2_E7B&>7yqs{ z-DgQ=j0_#EI*nq{oWoj~TJ^11Voml2ebwCs8|?n%qFcC@DGvKAkBql|q1BHZWt)Zb zM`g-z!@&&Oy-oL{ZeK(qdX|1_wzXBBdDjxlj6?!A zV$LpSvdx0eGh*q(>vlRfzc5hWvgr0)yqzsk89vd7B$w|iD6-if+HABgXM*UVtv8J; zDgzh;?5|EXUC8&BR|IwS!;i{nJ!6$qD))oor)7OvTiWl}pV$$8aJh6)+Wx_T@{ckX z>o0%PC&Xo`;~z(wk6u(nOD>CV%KPp&{D!geQDNKtCm$aNF0YiZm#3|R+R5Jia{`)* z=U)X1-w(YXS_KTf?-zafXpd{BYv+Cyhk8=#k#LwDJ9d32Pv^X3zWLkjOR_5HBTC6iuTJR8hW4x}MT+=e{_S&Qvg7 zXK9xN(@orw;U{$AxdEVQJ8yV(^Ebj;?u+f^FC>N%rz22==gIKnoc+;Yo9Hc{V7hL^lQ!FVUz(+LqyrgF0P;0{HU@t%lE*uM4lgBmdv-^n+an zcODa7=X!RNlRrOtJrOLE_Yp%Y`@6^2Jo(Y++^7H#P6pg2j~y?*#a|jyD!N?uRf4}b zP;z5&0+O{{^MI^mP2}N>26pqyk7@m~&t~nK7IVI6LnlKuKlS?=AkI?v9RV?)E;YCR5sUf3z`OmjbU(yN`8p@vt-D#%~|{{D2qY|EQ%zuTg%dd4+>>(`>C?{_F7|wyLU;w2Hdnxw-C%AC&DQTxeWcelocvZ8~fFr0Hz$aKG`4Ygck`*M#P5b}X8% zZ%D7$t-bs&yjF`sNK-p+miXwwogU@DDIxH={ddB;7C=ON&hG<3ZQpZZhs|co9ac{( z?)o2Op4ib{&?9(#X(8uH*_His;5>uxT-P^8lG)2+g>7~ygJFRmufpxGgi<(BRAIYO z7SzkPzSkFg%zbfT<+D1DIp;AV{5@{sMU?4lHY<^YZ`BN3>sKAxHwmCWII z_b{a{`;d!m!g3{wb^)=I(vk^L)MLp5S_5*gC!ls;(hLY8ca4y?oB$|PYSj3FW1&X~ zc3rNU#^qgkhn1k2E9c5Ntwi%?0s9)i1d_Sz6XWUTy?d^SQ@gXhz7!{oc{a((q^i3` zmH-yCB1axylw9Pncmwu_-GEc1&zrZgFktB}sLCt4HNsD}MJ$siG&|gr5&xrI-T~*W zkv!&(E?;ES{dA`#G&1FK7TH0Ow?;PR=4Iw3cXf&b8#?nuRd+1|j!4M;DFJ9CTiG(3 zqKEuoTz?jtPGuWdmXFg&ks_EKVrUx~8L14rWrR^uw6LixUlmwM69mg`H_Aiw!U|u( zqV>y??7Hn0;idXvt6%Rt*PWwu_I{>)C8(b|9Da}>|M`KHM)#}w%k7J+(6?oM!rLRw zWn%ZoUyZ%8K)Y_k)|HRsrYoF_``Yg-s<)O&R^68tAAiw?^V?4)sZm%a_N!?l6=tol zZrBjV|SDw(2KR8pHQ!^R$aLKzOvrPK`t_1qVFMzH;JN5aicF5QM1hH`sa5#tI&TuIq7DO(QRM^W@9pB2Z( zO76?;x__YPPP&|CeM0xqDQn~IW9;V5FKeQo4U*H-0k|En*%^xTxFJFTHu<;U!)Ww+ zN*Ca?K_Db&HL5cLsjR;S2;#6|lN0;TBs*T=NfpLbWfJa^0gLN9>Qob@=@nVzoe8=4 z1*E~O^W)b%{b1+96GqD&Pk0ZW3$pyX$Mevw;5oXb;hvG~M;pgC2mGwSaq_dVRHVjv zHc6muemmyD0cp43@RBuq||i{M3v? z@{q{!lg3+ldHfEo**ubC^wt>Dx=9w}0SbUy z8#4o?KY^Jk-lyymrc?D(6~Q)k zjzw)O$jdFdw@uRV`2D~rx3$4wy5FzvXPy;B&1Lni z!P#;^c6)EvpPC4XN>@E zGv~iaw`--VH@k*Smk6_u=Kf= zb)zzYN+~GDQpQ2WM#hqkwq~sPuiDT4;vf3{<0NL? ze%MOtJ-Kb7Up7GCm`CJeU4C5kay|Lch1v>y#B9mD23P|xZ2^(~>JZVx<1^r1B0XjL zb(aRF(Ot6VbniU>0iWZB8ZN$d5Q4NJ@jAT#Yz&;fbf-pHnjw)C^jbBMWz-DSh38znJX{+P+J}J5n<}HmcSqP^6~$?H z0yqWF@^VAOP$JioC#reL_*dkq8fV>A+dV#4vY3kaY#WlncK(g@LU3W1v)ZZ4FF%?; zeR zB;{8MRVznKW0i$vf-C!1MvGKX!yqov@DsnGsh41AEd>=OG_3!pn=6EjetmEzt*NHa zwQJ-19$vyhXy6D)H?eWwedaHCg+I`JV$hlH*EOV<1y{=H(YoQ$ZuYH9I;vFsKG_R? zbTppd#wu*zrr6F6uxIuJScioy7KqlCl5pbB1cVB4JDUnzF}mg{cnW zAUPvPRQs1J&bi$WvMNun35a7P$~in2RE1YYcR1E7Rn2+E6?Gu#G2Em5_xCR=CBuvj zGu#)v7c}ZhN-afy25*WIl$^}4(NxRH$9*pK0Y*uVg#Ls%rbsQ3wERV;#+8Hb`f_DBH;hs|7>Yn_P4qoG@S zg)?|`Ta`vu0bKOl_?}A%CE|8h_d}N+C^h@$!LlH^W;Q2I%?ZY8J(h#wTe)&4$Gv-F zwUYq#B)LsWV6qoH_hc5o=0j4OLd^27|6mSS9g%l#5zHNVdnP~5)c{&}b%l?|X}*W= z&t440K_BPt88>#tMnzl=w`e@Bm!ordaGQ54VEZwl+Mhk#LXLG4{wh`!a&TCfUM+QK zW#NKh!ns(kKF!P9fCoiqYj(nd0kXr{>aGl))IQYF40Fk2iOmMQ;Nad;%|N%x=&3dF zl*JR4xyJbc(OhHq9yup|3nrA>INq%+UKY)*Ojuw?72}p)nx$inyC_$ORh!n4rSOh- z(=DD>ivccy*c%z4SB*M*`^_1=9FSY7@2=&MIARF_ba0w99+_5Vx+Bvl)c3{E?zA*K2dx+=}`eXIEztVc1A8{2f)+ zf_;SZ@#2Q&JIn{;l{=hrHisR8sa#E}n~25FU!m~n#8=O%+zmu1{p{IL9hPA$&Jh4N zx5#U#@3th!w;FYzTZz7}H=Hc1&-uwziKdmnccuBL7`QEUL`&|MWC78AY~0nCm44v| z;U&w|;R%o2d3)q(k!I_AzyA8^57`s#H;?wQD+>>YUvXT^SFBUYvxmd?1a)UecZA%p z_OE=V<8SBrW7eF*%hQHE&uAViMYmDZ##GnH#Nl-;GRj+$CERVh_VI{Sp zi&Gf_-4>R^dCnbBfRgpe26$2XTWLp@a_w$g;sMS<9cVb=0JV|(57UkR*zsxsdhxg* zdSfLQ{tUrk=Z?;FV|0Epeu5hSfd8r`Oiaqag^0AeH4N}H;+{CCPRoi3yRz}A_Y&mK z5{jz^J|fj!f*YV<;JC3=hJ_-I@=Oi;2!SUSaZmpIgiL=1f02~OI4$xCv`BrcMOT0j z=*4|;9Zp!5Tp^8@hsOnT^Y<78|E}U&S#4gZ`l9O6!d^n|3oHB+qK7Br{2E^&$_dlr zT3x|+)Jbw+mh}Y%*CJ)^e*tJk^R2DW05$vLe~DwM`V|y1UJLB3?&`!Y(ZZy(>yXSl zDQ9ots-vDDC-9{!L+F_3H%`hE>oxv`NzssrC(jJ>)ZHrcKAzOYbS%SQD#nEzfK`>s zS>xoF09(Ks@7|bgp4hTVulewVurA*$Q<-&j`B>Xvzv)Q*|H0!Geh@``6i9{#@m{B!c?hByk_tMR zC?$5IMAK@BX6?o&Hq-S|)J*_!kzjkbzsccSe)5ac8|6Evg1da9Df*G~#*Ock9zABc^u7)ByS(aA4x!?0RIq|+ z051&C4V`IQK@4^}=K>=&qb~WwN99qa3ES{4)V6 z0mjPynQ0Ei++DZ3ZllVOYOj>&6f|+AJtx+6jGjX=_Z-(z41YR=Gxv3lE>%ZyPgeBV zY?Lt9{pzG~+d5|a%#S@XR+sg6ek6DO`RoTHG8!`C zD38~TM_^HXySuyEt^q_`z2Dct6$Cr8_RNSxYYR zi*F@II6d>WhPNMS0QGg%mfrtLHWXhH;to~<|9km6;|9Erqu6Cj$i6_;8vMN&R*v?GO?a=;|_FpQt`qP`ao%rf9MCHf(JYb2=~g!`jnSm10@0@D?0C1Lw^ue zeF#2P3_noN^AoK+S+^y&P+BNjSnhBH2_?^YT3c&**)GvSq}Ng$SvGMjY7a_OVMn*J zRPBQOv=1^`Wtbnx(x<~jR{jSEPgrJ2d#HHGsP0ITTW0r2jpM02X?`ML&7Wx1C(c$? zf&RS~?}WtiDIZrJx;RX-Hk~Ar)}TF@ZbH2xBVJlMN7h;v5e`>7`LL7^%tYfW6Kfz~>LimPG*+`iQ?MRWH4x`$u# zHOkkq(q6*AlEL(?M=!j|A(&P=7k@Hr01t=n$eq2R#f!%Ukex;3;)g7>flU79^b5N; ze)aEgouz-qd7luyp}z+~J9|ftFxGYUA1E$u;#=E%dLP$qSb*g!t| z3GJoaGh>Cj?zn!|+i4*&wa|m6;U2h(|zH9b?IyD|}Kf->4!Vsg0DpVAW}?+UuZRcei+x z;O$(U`**VNhqY$>VZ=oDzhGU%%Xf7Z6Op|Ea%B`Gj9NkbrMa06xX(}2!feli ztFdKtRwgTCC#QicQ?h`_FCl)Wu0yl=b_h^RV(EgsO zml-ZB45tBS10*;ddYc>n6-8N=XjJ8L*$0qtkhN+JK_}6;0QoKcsEc^y>8Xj=)0D?X zoi{#a>-D`+(D%VOh3mBD^d6vIFFV9;B5%jMDJp9{s557vBMuWV8b#O4Y_20uNsG?x z%}6Jt|IFgE#NN>Q@!_h>WJk^H(oL?5`|U6-H)sx}w-9@Qwj0J^D86cvWibFTXTv(( znN~y2ht|Sx!nA&EGkmVzL3(~onYhqW18QC#TlRxjp`5LMW^2P3F_)W<_P=&S>pw^R z-1l|8BYN>{^U({8IK)BNPk*>g1FLAo8YlCDsJk2#Ugugl99QFOi|e9WwPLak%LEPg z%K8H5!oOTZL?KqxN7}7CUy^}|)(cgXLQx<7vo_k8_2JNmOOp8p9{uvp8&Ut|T{o_c z9&{nl68fyS*f&vnR5^hBg)Df#Hhox~=sXh=PYBf%3Tmf~-p#fxEu7dZ>Mo#uIz?mf z=4ji~#0!^`Gu)TXT3Nk{`sXD*f+=Qrxuj5!I=Q5~@EEJBeOvuA?w9*lt`?&SU15h^ zaPFjF8nRr)xv+BDJ=K1$yRv}&Ag5`!0)9K>46HAe>dN8efVJ>X744FOcqhr#W{)?3 z9miim;#UOQ$r7QIOeq*wQcIs}RP^WDl@vN=Ig+f*WcGc3LMCnheB)0k1^4(*a>|t> zhjg_JUr@1;V%(?wKmVQ{maYCn+^PaMXJo|JWt7#C6@D2|K_^^hVFPumWC192^|rPM zZg`=&Fo8EW2GXNaF0ExIhM zATYsjdaxF-7q&NIxzi8d>SSu_dwsKb0&FcUB%f(EtioAK%C=)4erkv z%q~LU3@jsP0C&PkIJgN^jm0f&&XDyRBN3@q7Gyhu>}I?>qDRK!4uW!}$phVe%J^kB z(4Kr+3L1Cf(v_Jj$5l!3q_n$6a$1V|x)fbvTqMCCGfq@-EVnO1e_NG9fI3|&nh`}^ zyd<7f)ZucmayGfr_1UEo;+QAtTcV^`E)ztd!?m(QD0Cr{A3y6u3%O21lEo`w=O(P@D7od15`f{;)RVt2R2>I*NQb7zHpyM{&2Y7Mp*g&+%I`la(vT3x(;a9o%ZFrVB~Y-_2INAB^Heu9+7(2H zHPqGCox`BDP>kpdqIHjuy<#frMikTPX(h8+`+$CM4Kl}cg|=b7+?UiI zpmOLhs5+WBouZ~u#oOqKlmI5UFlX0E%5OccXi#p|cAj|k!;RG!KcM~b%hfyf@2hLM z3mW>pUbKO0K8((q;x+GywyMIPJtyk>(D(QU?Ka-_;R3Z5n-s(L!JXdUTGkmocZVap z;Z@CtbI|A)4;*6y&_`fKJ09c`IqfzOC5?(2%0Tv6tg7oJTxoLN#Mu^1Of|gy)aXs> zB2=-_vaZar6xh7y*N|nrE_^eR6nCx*#8PtJk-r`{u=BIBAgYN{Cj^iEp=RimtP=8> zD~HxjE~qi>zE0|AoV=iAW^3ypZh{q&llKk6s*^gg^(7CzHKEvPM&DRYy-5JguN^(qB$TB^{&zx|GKf zwa199U5wrpaBLEyy*17~Q07YSaq&`;cHglCyeR&WdwgimTuDY9+d9$-yv_Dxq{rW| z24Q{_J>BRW!FLJK>W&RIyw|yT1w>uL&8jJ8iXnHBZ=jFIVs0(&+;TkFnOBCwxq?w^ zHaDfFnN#&GlqlM$J($5L2Dtqeug@EaREc7rif>6)v(b!`sb*VMSWk}G$YPB5D4rGg z)fyUk_`H!rg`?rZ0i6M7AK~JhZR-I`KPiLoJ}My>Vp+Vp9!4w5f{QYu!b{?0Jec11 z%{q<=#8GK~@@HH(y4&kNH?C#LonO~?h1bFTi3Po?JA&{lD|%Yb`+hS*`dd%SB#)$< zN8oqAE^PnjG>x@Vu0K#a+U|5v#F-|oC5qy;HYk`^wE?K>> zb;QzRyeIR!(nUQ{({jJ*ZYZoiX^x|Mb9vUDj(zjUoo-0FPtg=9@VsdTf!bLwWDRmTC_eFyIm%Kjv9%vvC5p7p)P%U38|!Y=wG#+kUqfC z?(m&M2CaSZabY{S`~>O9#S-M{Bn+t+-zfXw&Oyx)Vf`~z-H^|HsfWXR&OoT-_V1b2 z;Zz+BE;yVzxsF*;d!QtZCYfr_Ok8E(zoJ;xGq__{I~CLcn)oDMb}b{hH^CL4-kb$1 zKYOzX_A z^5YC9@xV%Rb9cP{VAVac!$DY{w55j72f;dD0~RF7$j)tO>TZ5PiecKBKa1%!766Q; zK zNc%f)3u2MN{B_M8`!sJ;{59k^XC#u-lZDfHB7Gg%HKw&XHT-|q<|Pe^>d6gU=xB5L zd7fq{TPY)+cAT7N8gPdRPT54QiFRHH@YY$t%dX69lkl2S8;3Ehw9G=G$1<~zmj^mF zPHxOb=%Z`%t7TD?E4}z6dggV?nQx71XBSUuOxpYk-nqYOqD&5`&g>P+Oo`WpFapd( zEy(ow<}!`O4boO?4v}0&3lZjN%ZQ8idAm1?EJ!*}qV@DC|CmY%z7;Z&@fygF<`<#6 zrHbZLQ1L}`&1^${2BXX6tYS){sjLZuwyZN7vT!vzh?VnL z3CR&;*ET=<75efPIAO6y_JcV;_;=a27}wT7vIiA&uT@t1xycu& z;6Jl7pv!}S{nbn6R{8%BjK%pGRQ=HoIFn%QU9x z`ZvE_yZ!s`qtA==&quU%7v|8!jmj^Q2((9_E{Wu*r`2`h&m9DCej7aNYhsF)W|Nwh z37#91qW$}#grGMY%A9AM8-#ULHTt~^qp;6*jw3+8+rX&`-P=Y5cMT`anC`Us(kM#S zDz-m7nPSdQ$)_l-=Cpl-BeBof!?eauNH41dfna?)cW_@xp}IuhSG1_?L)eUq#=4c| z21U#JT%{*=bXC-H&VE+f6@D;W(JLVv)9RmZ7uKq-)V~PzXqx4?K(mX4!dVEsaJV6z zDs;{Vv#sl~5^ni4?x|$@=y6d_m(UHP?L7w+3_;T=YGdv0Dr==pghZF11V~;$mMf7; zq2682H=Enu{#65W>M=~ujCh@u(l|pDcp^kB3*DY)afJ*-p!mGF_itAT=Xp>dYsQ%^ zO{i&qpfv*^b5ShWSA*cvssf_N5^{^6qqWT`#kVBhtlb^+p*V)IxNAsG#P&sZ)le-$ zDDD{AS4cYi)a{KB(C-N=wR=P)!ll(5ugNlkSMo)OGywK!kNV-4kI%&qh!AevRI`L} zwCp{(g0+=*ZCcr94;}DvwdpXDh`QJh+I2bEpXTLd-jbq7hEZlt_eNF@!V_CqHZxmm z%|`YDDA+M^o~QQIGEPBG1GeDVIBfHcr}N~SGP6-tPZk6_x{JpR9?QZcJ&s=vAWkoy zXtm4&tl%$YmcBaO|G^8(!Z=sz;(f4I;;A)G=t0l4Y~#K+Vcqo%p4dAc6~t-q!)svJ zI3*`XBBXPUSa&3AC$gol!jpMv@T`~rzxXvGB~lJ9j#Dk6;q<=$V8^T%6ge(Q7D=0CIrfg93o9-xHU%IJgp8uq=(W&s?l0M$!T#mi( zVgKlpq&sDnBKj@Stz`MmGodZJu3l(6;w)@Rs1e?+Jhd~okWyhgOzFU+7C&^}aMz^m}Sg? zqx0WfO4wveLb4g8OCi0>@f>?=H8qt4J1v+$_>TJEab|>GO)}LHgdO;Lg6;Cw)?FuT_AjL?XgK_I&Uy(`z|SEM2~(Lm0^E@rKjFe@BumksUX1*qnAYW=}lXe7`UuVn{K zSTZvRA!|3{MW<++WFxpM|HRIkz5BweOKk7mYWv3AtzyJHlr81D`I8{SGkUUNsTv$?|0q%+V+(B^B8MQoCu>!G7o#3b??3MmL|}08M#Z>Bs$J(NgktY?>nK&6K#3PWL=EmDnpen zx#u^9G8b2WX>CzmNf#HC1(Mo(t@NCVbH@X{Ry|zypt28H=$xlGI&`#LZU6oFg*oes z3wH!)k(+!MkvU}=uauBZ-FD$Le6)-ItbN51SYK>c)xY?gR%<2e91y-Bs{HJm?W&c= z%Vk|MwGg)sa=0z=?cSr^05_U9ME$wE#@mYa{8J9ak4(!P3>{Lb&HSXhUuQ8 ztGoDHTLG20T1l_;QI(0SjnvPd{8J=SbM2$we#|aoz+(a3(un_|%}7gq``W{oxGyc` zhL6atbr_Q?u}fa|!;faE!33zTe_U|WY+Oh2o|F4RK!}qot^Xzopk=M*eKvLHj(Ke zqIHIpz7U!_c2u`E)WDcpAV4P0bkqo2t6G%g;uQyiaFlGP<_9tfN%C@0m6q2US5k;p zHUiG4Y^U?2Frp)oN&3DuIM%i=;ZoNM>!kpn0HyCTaLScKIJ-n&ys-nmfc^KsfFz6T z6=Q_sEVYXi!a4ffJgL#IzLu91h>Xv&Gtv(bH6ui~=&FrCr2HT=jx?0HVHw&_&Fn^8 zq%z3-Njgz7Gq9c6s2TENapa>NHR<}F|7VoHKZ5itFs9N$;oCKRYa^ZQYh5(4Y)<>gorz9UmP0BPw)o z=d|_tDcqeEAH8zKr>)4u2lI&F^)K<#F3g4CYL~7dx_0Ape?jy~`KX+f@@-wD8C7v^ znA3M}_a#pHc1JO%{C*^*xUlW6o;yrj`ox&z!mT&3XDWT8gBSbwX>S3g8J)w0Bp=qu1X_{lAvxp+H+^v}H4??6R4?#MC@UlO5V* zv)jBiiuhn|^|x?9=DwA8rZl{)F`f{65oZw0HO|x$pw5QTbE>Fv-x)&R?Y>Nd*pGXv zvk0Mr!?h`+x>UzqohnN6guJXOdesP>%GS!1I7c~&b7}clB4~-U#2He9kpF3H9p2F6 z;3Rt<-{-Y_O5flDaAV(5nlsPhmJFK8d6N0EO(0VXBK*)2Pt9B8^TWc&jExj0vo+7suh-!g5)o~KNmV`uRHEAEkWiJ3pK>6oi z(JXGH)yq4KNf|tT!CoH8YguA3vXuGXJsJHriE!xM%%$8B=#{~p*z`ym`&5EXxuuG@ zPGV%Ig^oLR!m!$=9;|NE9D>hS@#j&Fyt!265R;rUUgjHmEdvg zb-7sMs;KMFhtomN<5-qDjF<(EdRhQWsgnb_@hw9u8)P(yzN3g?fm{IT$X)%#8rFt4 z@#cXh&C(l2ChPMq3@-e-S0njwB%~+K6qGJ5;>tJfE~E9^_qCg(Jf6z+Ki8K3zTxg5 zPxha;rq%siyYe(mvt2N@BAG-hxbi$PqRaXsx2BA1U)S87ir->?_}g~t)Z+#)@2Gsl zw6^#M>kHQ%L9qSucIDZMu=hrJMfg7PsbELL9|{N;J`Y43+Z2Ma3W^YJ%62#zL*@OIq%4G*aj> zDbRNgWAH&tH`rLJxhBaSN>w5$^YyBbp~PsQwbDKOq*89G5S52Ap@(B1pB>y0zSKiP zACGpNR87}EA6g6C9yyFd>Fnx99$9?6dD;Sb|hDP~U)2fC)E4k0G21ebGugj3C6SKb> z)c))5$-IOey*17$s>E;5l!pd0shj&s9du~oPf-y){D*Hah^@_!l5T1`!aoUYbH06J zbq5-hEIvP?OuWw8A0^7l(_yI-^P>L0P1nVLqPMzZz$Yrgm|8$t53Po0A9N~ zdfHn65_jez$Q*DvfxJ;C@$pcf0)qZzz*62RhRer~+}t_ZDgMG4$(@9mJSeh3@rz&u z&u{z~LDe*@d2B-$B3Q7AQE^L1p-MuNUPuKMXqAeZxw+U&z;lSjFlU#2PujdLo@9nN zTO83fY04>=Gl^87#i(Ub%O6V4eHWp-Dp(7HyJrVqWfQuNo5PMp&2zB~vB+#9YHd-? zQ+Z=l`+B{XvmE;0kHQZ2{i|u>?!+g~n?$%eq84my&IlhWi6XO6v9@TiOnh_i-aDPf z7o;%VD=q(<9mY`edtS^MjqZw~eS5Lw)`aPbbrN~Y`KRx69_?GSPF0XIc&r>e1TOJ6 z%g>&dq5eA*eozLl1~x1M;VeerZsn-Bcdsg$@?r=>Oz|;-%%sm5tSM=xqBDnVEzSwC zdVLTYu7I*^=o4L<&2lTGPHQ^9a*EfQ#o@xY%Z(f|+d`pDngTXAp2w z6i-(3vJHTW8j8~ll%=r1d+>O^r?bR;yWzi7kl$=Jpp8)kC&@mp12i&T;+?1!&21tG1}l+PNK;DG%pjT{{!L!d&E5CFL5XG= zf>CI*!qSS)A0&Y(?T=6G6<%kW()2`@#sRTAshfXU04s<%V=&pvqO*9Cy4Y*^*E<)B zP{&a6=oS%B{xUo|EgVM`Bmn0073 zvst7xhjLC&(K8CaQG*jP>4h~w@7`+c38KpwEW?WaM7Qn^AsY48E|iv}c>H~R=&x6r zhbf1FtOZ3CPxu^0MCX5+PF%_`QR>da>b>`vJ@&)NEJkFD+o+NP9={!QEw&FhsbSQU7AdFDk=?kvzj!l}Sv8 z2vtR&fo+hM$U7kNsd;pbJz3pPm1T;D^!x62G*P_tststnZrJIQgrCaPLTa-C_)Av+ zfV80~rg*$Q_N4`iswBcMb@_E58zZ^?Ld^In&{MTHBUH^njd!Yk_^H-`RMhZlVH@e- z^r2fEw{LZtQuL&UpRA~s_uog}8DoDosQ9)8$IU}Q(tNE5WJxde2vB({>LfjaY0YW( zpnM1+t;>+Jl4S<4eP={r`SQn-f(4VUKwkPnHKi~06}B&BNf8o1Nhy3eef@{8Epj*t z)l?d{V4K%Qi4LZT-%RJ_0e%G&734c2I71+tGMr_nKcy!qZp4O+e9OfSnnJmUC01h2 z0GaAT$w^%X?m)ROH*23#mNw1AAv{xQD*V*$p zM-R1bR8DW=0OhkSBCoeBytCQMb>&_MDO7Yz%#-)M@MG}wED2ggEf5WL7H$;sJ z(QFm}gUc?e!)#pVylSB*(^Jh$0V#AK@XrEts(C}kiE74~*QVVNq%R2?Nd*{JoSDRJ zRe}40qGzc=d z{tN0jIOHg(Kix(=ogj)lcwR8xxJ4E+8w_VzYQo`I7D{pK7SHzwhb1V5g%<7*76h?( z@*}Cs=|q8{V z&?qxa{13rk-cb-=luszH-2C*t3*q~JyDR$Bu>Rbx+as@Ks+FzpTzE16H$^vr#PW}l z!sT0!It#<)M=-`Wil^R3%3%QQt`v3c~ahfAIJU7ijNi|le zIojv?CT;)ns4j&jzi`LO%IWhJYHYP;!{AnDb@@mhZHdP(6V1@7DdRw*$jMsXC)2At z40;7mtKUqsbgT{@?Aqm%s{0eErUptm^g7_TVG_ZAEo8INmyE8Rjq64c+oku>5PM#m zrR3a`=>jrL2)^a!s9)e%E`HS>Y-bNw^bqwqI)4PA#IeH1srTfgD;g7Vc92baaq%89 zV8)+X92mxp=>YL zj&T_3GdW2hthXD+av)1lZEnjK_=jnIOW8G?kXMwWTRpy4^~40ZNVj#>6!#TKLIt#; zV^taKwtxHOCTAiwvsr6Q%%_CKk!@NX*E^J7LA|v$!?kTuuyixYCcQ%0a*h4a$r11d z(#63t?jXh&56=inE-~uIbahw=0{3gVgJq{AV$3|Ss6NqyOgKv21!_vQG=qL$Vz@iG zTw_o74B(q3j%z8(T!t@I2&QrNa163mUS=>ibo{t0moC*+NH=HrJEfFSohcRF@(+Q} z7{;mJ+tg=@$AP+Br@F&Pza~vX@r0YS?3IBu$TkW$EA|{Pj&Di&<3v>{$1<}iJ&?qj zT+b3+lhQes=yBFWHU6E!nI8YuqJNp~a`7bDS-KgmG2$bj*yM7(G=tiXbxLwKk`B)L z3w>LJ7u@8$$D&pO@Sulqc?s*8JvhxNP2tECPDEs1#qz z9v`Tmz(AzHNW_NU|EL;S(=kBXY#J3m_LxczA%VhkRzp`&+u`S25H zz;@fYfp%6QLK*oyib2g_=)X*B^iha|=zZJ+#y~JvJfUn6=&MCe`b?Jg68(#=G#!tA zixS^em-q)ZrjJypla@Y7WKk2mWVAPF7HJ|G>!B!d!RHQ&La)MBnG}4r;RbUO^RiPa zK~wL{I^fcK){yMauLlGV?4Pd)+Y65!z*I3L^ot93dahtN58v#xZU2ns2;xPBZ7yA1 zAK8OavMpAbAin=pWUWNgL#1gpFim4Q__vIv{W8Z$5(FN?u_ja~J_-n*EUD!0%# z=$Vc8qTO?$NGMr55!&G*Dy25lPrI~`EqRpqSQ*5nHdG-w57qJ-*()|z-6}BF71hnmX zxX4Y&SxvPO;GrU|ou`DXfflPZ@75-Q9#pdQkhz-Q_(CT zi;e!!?%8*rQA$mPl$raw8FcCDIJfAGi_^s0kSJ5z)b^R6@J!O(WQ}j!t{Gq{AVM=e zfxWCD!gHWNBy|ZFa;?{rAk`EA;&C2E&KXAa8G=eO8h3`rsp8aT=_(M$IqE0cW_Lc?mn^ zF1rRkPR!$tOtcK`d+)5;wMoB8cul-VzKJHYEI?-hl?E~<=p-zjZM2}v;X0Y(vBd85 zfA|DnW``*|#3mWvW@+-W5$1a1)g$jV9$4JE5ADdGOzkxhr^Q-$Y#!z)o3tTGJLC5j zm@)IOWfi2M@eL%W6VU;P%#Xcm_wqjWe%gD>K@tR^TfbV_`mq;tIAFkgq!2VecE2Lg zf-sS%l2{>;qGXW0965uv#pXXQHVH`TW&u3}D|@Ov!{>f;cg>fhzM|$j?Nt;;(kaSU zZTD1B#I8zh5-+vucEt4-kQ>NZU z7YMU9_n&5MIrtmiF!Kl+iri! z&>Sd^(=&yprsOLJt2fl?zGE#NENTL_;&&1eTBtei2kffQSP>bllOh8_T_aN>SMK^k zp+cZ&#nzA*po_EqM7_P`k5!uEA{(XH{JR!(XRe7!NyfiwQ~Cr#nrB2ot0KDbiaObO zF2KG&twZXe{29|)`Pmgm2Q`j<5}gt+XQJG8?Gl6B3?QwYQo4AY<)3pEOG~#T$*VT-Qk0f!DJ1vK z8aFaZ34I+0crem(e4o6f8|sl0*uok=V=$^+EXYqHMl<)hSa*o=(!rIMig6l4xrwul zYTF*^I+3)N)8TE>)ltNrJ{1E-u5Om)cV+?UHZZQEEdw4)0)-`zv0>6K>=e&`v@uo% z^_Z{O-T6cBrH0h3WAVx=wmuEy#&=PDg=t@m6r!Sgcv1vaDv2vYgdeLf?inFzS;VC$ zT7c#xo+lqMh7bH6jOa;Or=@12sJNyykM*TV*x^(Wx5y7=EFlR(rsY#`P@8LL z@ZTaZfvy@`*{Yo|;-0@r3X@W8)IDK-I{bH`zQw--*5Im;@=bbZ*EiAN}>+`-~u>pjA#qkBV4 zzL+1exBH!pRp-*p{ff86 zI8Qe0nsQ$zfTQT2_Sv=s=ugO(y(DbaE4crY@p@3(H5^OhNHTnVy>!RzKOjYijQn}C zihN%Z#O2!OUEip#)Qyx*_DUWMqq{)9FG96;ad>Uvvq56R!)UIcSGrkqNctieCdYt zj-cc&YXM(zDA5VVsGHk#0x{dCV}xKjzV$~|!p)ByG|oV8KQBz#9Rv76o8rXAI-ieY za5?VgP-%p{!ImN&4Ozh2k~EcWe-utFD`Cf2!BJ*K*as6c@VO%iUp<9U9qypk<~--4 z*fx3@NerO?WH#oPH`m?eyYx(RkN09)jS$+10k-&Q!Z+L=$e!_1d9Yv zJMg{ajFZ}sk>MpX-)KUdA`D0L+W*Vdm%uf7rrU?LfH;M)CTdGT6hc@cM3h=24j=|l z5+MczmjpqA6;bF|$10*YkN_3SR$Pc|vIHa|6&V*)2rdO#qhotrpo}2xuVS%Rtvdhn ze!<>*|NYf3-|*aq)GS@viYZHO(Dhr?ChDpApB~?p4z;8Kb%onFBZu!(yZ1hA&91Glv{|NQ%5F%Ym3DPHDBCZr%Gij@n0%(q~T$?0FONao5PHhE7(Yu#+xyNumFI`J7Ns$_ZCI{uR= zuDolzI#}G4K5#+%O?1<~6K>^|4DDx2U#Cq!nfzU)p6G2~=ht@IzjS&S`et_xraF>y zXxt+?=>IK-pN|G+9*n}1r68E;sq_|6b)+`s7uLI@Ft* z^N9Nh4R}>*y61e(o(!5dlq3sJUVtIqNjwXtODgK!9P~4SGYsYIhyZb(i{VH|)kxLI zRgr%00qcbk;#qo|{n(DGNHH&QRo6m+$l~}`qa3DQBHe{8KoJMmsA^K+*ei#Y)pZ;L z$udz-G+$@xKxdx)E}aD9OuGSpAUQ`-u$A z?8kD-^vOVpJDr0n`mYS(%lFTHjVg@?Uooa(F}jEzFr*SjFPGTkNn@xT!CrT2ej7*e z>!|nwZi!8{GYjUV*4dfmN^VXMm50hv)h4tzg#lo??Oa08o$7)ebyg-rup%iOM;_%I zij5*O*JcaiWrK)n3b(dVF*SlizB|>PH6?-rQTm2}O)Lbm81k&)MCRGU$H@ zwbsK4?}m}2d&`NUwt*5vUaupigEsBmr%L>KlJEXfHjsRRP{BoAyU4`mv8cNS@mp_$ zZvJ`#*P2APufkkM1QhLOTrp-m$@vNSAZ1yVFQ`svoOE3~x>i|R(5#KDO@Ov| zld)AjCNupFr;#;%UIFMn=$c$W(Md!*u%U?Ng|f$k*Y+;rFfQr%kI1+Q#!dj zTV)sVP)&{i&iSd&jjSM-Y})cOCd=+>Ys)J7Yee&1>u>WTGPjBjl|;HQVa>aF-T2Tj z%}@b7MBkd0WtQyFo}stffuW^Z zsbnttxEViPYgz<@KHK~dlVQCz-uTe*NSd_}1K4N&NH)u5_M+yfq~Ze$nL+xgH8FaU zAltmv^Pgrdj0sT&q2kW8i<;9!te_KSEsEtPeQmBZaSJgeL8wv-Q)>;yc|2KHj;+4t zX!<7fBg!}~J}Qkcq3%F`Au_5W&;=pHa<)5QWeTU{5ipL8sdZChS_oiUXM_1=Q>kjjp z`|Qqnveo=Hen+Vrc9^XG&%v{fME~3rQY70Hkmte zb6V?RV1JgoaA2eoMQNx?vkh*>xNpL9s1UUC@37 zNhFly=)^>|98RcDJ|P`Uhe}dj^Vz;1;FFMCc%3q6Q}7 z!6kwJX*54@nE;0Ym-(_VJGu+vG^PG^`HI;NdNjwIa(Sr|TyfJWx!ES#Yz#aT8v2x( z)+584fj=>vn2kKM=~|vlc9!OBRO`$TB?T}V1krTl=o$k&9~Ye$KI5{CELp-S7xM@1 z7=V}7Yl1^NV={_7%?iUYaqwYgJ?MA}jYc0}lV!=c#Egd*^k}AIMsDNCL9PwE1FY{> zlyZ?fukg-2)xR=wB8lT$A6c)9L52yHsNM3xL^SB&z5CoHOGvP$nAeoXYjD;^! zXz_Z5mu#o>-tKgp|7HJ+)>A(HtTH{3X_aIBQxl)yAm(s_i_2kUJChxAB`e~X);Q-IY*-#n5H|4olGiVI`tP#CEH1kYaCOR?D zr=mf$X#voSg0fo<)YCHb3s!aTYDD_qD9tR4b2J!e>__#yL|RhO+br>^C9`aI7;Qaa zGHZ$2R$n#Z(%{!pXKkBW<-qk@?G#}n*>_*x=liF^iZK+`78e z&oIe$hi&>M{a&{1jwl5^wbpeBX1%=m7^8=Oh)51oP3-`<~TFX;jc&?vVX~(&N~$d;;7SI*D4v)(l4jm zgiA+8caugj$bOL?Z;#9QWHg$mJgH=27K5($xa3NRsWSzAst9QOF1G z=!&K4Pcyy$@mLjvaa^VCVjwV-`^YWiG@#>(g^}U_J(%fjI1mpq5#O=w zl?yy*%|=%vz$GDyG=PKBXpWt>Rf5?;5rctBvxuQLOtS@Y);_C9TDVcXi&0%4Ei{;a zARttj;q0Qy9jG2REyOMQwG~uAc>w(wE=nX z*i}nbNv2~I-*orwbs1$nV1fD@oWgQ*_S6N?7?)-ZRXCilbtnqhA3dD7^5pCKzOqbh zYq}Nh+|Y1;Gu8IDZzeOix(m;pS7D*&;eS+nawNup!#aT9rjR6+zE(AEMFU@oD<{LbMn@*GDl= zJqfx!(a_cul`Jl_=7stOtNiL`St@N)F`Uv+ooWQfo_MzTx!G2yjOtr*{@Cj3SLauu ziXKRn@I;Qi7NnfbQ8gOY%XUChiaz#8=i75UNoRClbl35ae%pe&q2pp!{pwoo618K8 z=t`L8G!LDmL_2J`XzXazRsOU}mWBzmfG4?glho9}jO5shfg7mMlU(H?DvWo$2}b&d zcvXXOwt6%4738R?f5?zkIV?auv%dWh$E8#n3Ku)9CbvdLNM*PpQ{z2>*w1MRhF4-= zu-AN>*s9>(72wAQnG-07r; zuj0Vmsnm=9&Sa)-Yqh^qIj8Gd{%$R?TZ7>O37*}luGM&uNfVBGEKtN`>;yWTunx*EZJ35LedBuoFl1HMA;*( z)Zh!(G_0CPBEYR2MQV}JOhBie?16oLbYJO}m$luem#;o~{4F^Zl`Fx{b&*cm3+f%!}BMk~U#Cqu$g*93$iKyEJalCWj!? zx5x=Tk%0|4s&`ol-&-=a!pouDq<2_9pd;2$+#FzZL>Ml1Ic4ioXDvQ%GRq?Pl-??o z?a>5Sw8hBix>2?V=&NhCsoZ+a#M=lf>qv{WP}Iv01Y9QrSoa^CEdl&8TA3ctMPB6c z$zO#Bgjoi{YF_cT)!`em_>p?9!ffZ5o<}w=`WU!m?0yo!xCk}g#i8f%9s}n`g;-lA zL!U(};&G378W3&6@KU73mXuk2fssngjWmRoE;+AhFqdU}qpgy1gY(nV)2ag zOKUlx$HEF5M$9dzf>vPWV;e8RraPNdSj{#?=k(psN^X zyqGPgWWDT=X6D90_tlxNqC1~oX_lo**fx@?$q1W7x(}Sv=p&ODb0UH3m#MkfLXG6- zEty&fq(-8nY@_4iJpHZ{t2D|=fn$fb`9!4Y@F8(#*Eb<&H(9-rg@rUnLAOC};ifX^ zQ2A&Ca(-ko&4rZ|}BBH<>ps#AQM%MQ;=T>JlTb|dP^oqiikmQikS8GK z&B~9CzlDj6O6|eT@*i5aA2iaX7?)r3doLiPF!A+9^$F?SU+xT^KJ!C)&9_>&6KPH9 zYsHv)tzq`W1YDDjwBIG~Nn#*H&H+LVrT%QFmbKuc@bTp{y+gV6nNIG}bv!F;qwxDbaPQ3LuksJf-f*nbA)`nf?w)&5AqO8sI-+g!$ zHb|5eSXl;mLCK(*)8HZ|e~B=<=o>gVK8=X@>xxX<3Pr8Hz%^pUVWkc0?4s6VY3KRI z)hzrm*E+lF`P2o_i;f`GyrRg(bi136VSSG!{=T==tk!q`YetE@$dERx6J7Hcp|at2 z*kPJU&q&6i2xZRhy4|LG>?*dFKuBes^^S7EZ0S%GeMx_6dFbwPWgyy;&~k*02GP^- zaR&y~I@23`0z7GnzgIdqM^=K18@#S5yV-PbVv-C-o5r~Khw9{w)C?&~>yH`M?*Cvq z_*`PR<2hVj(FzhP*Ov8W^uOJb<{k5|cQ|%W4o`fR(XX1QZA?;4)O(z&Q?|=K4-fIk zsjKxU;<~VeHHs+K+Q4dhwT&#PE+Qr~0;HZ^oS~0b{E!x8)V&O_i=Yh;>7@-BZjCqV z(+lWh(mF(2x&%Cj#f$o^>c1Zi2>w=VrZ&MmswYY}sSLF^VI)f}I$?&^s1^-=wJnPJ z7BqC>#T-Yo#gX0?zm`MHx94tMn;n$6qPHr#AB|NLV~mn-yE|OQ<2;YZxQydllM+SgP7%gO(-Z&7jP4YO z*k$Zd$6nRbU?p2zP}etKTM=|H6!H)~S>O}_UDX0!6bt0*uM+zVk_2`ZVbREBY+g7h zv}Z}44BTiV75mZtS!5KWUlF7omtK@!dJt~vUt%Fe>aYXWGA zWDLtRvfo|vEqLyWKO{|yo{$_ze)`uNznlE1Y|EX&kFI?FTH4nO)#o(f$z*n}FMA?x zD*F1beq9J&<*G^K8xy+lUrh~Wj1KungIQ{c zx~j7Q@kwW-JXlE*OQq^nTRt|||UbW%OdE;P;0(grguSh#{L$B+| zTw9q7T(bMK7Ge*(dMTxcOG()fE+XDyrM+CJh&4G{tUd8-~tvMblBQl*zDmofhvlCnz z*$Hgp$}peVp)aGO6?%1=Zxt3Yb^_NX=7cDbncc`9XFZ&+Y+B4nfDU4amlUV(|Y?qU+w)z^6#_pcH?3$BQMYv8#I-v8&X(co*rk5 zSF5n0#Gj=kBq#or`lGKOkCO=(1F>z;Ll;j|Z z2Zt!T^|^Zx^rnF!BM~|II~B<8nnuAC%BWT&je?kX8m_r0%+F$!bj4 z${S_@N=G9s@)TfrYL97MglB+jG;P+7aCc355bxNuU~OP+nd1+&kxI;5F}?Kyh{5_# z*H`l|^4wV_*0n~fZAaEC*DEp97e6xHUi@^fe&OjAN(ZE5OaqiO(_mo+&NH7@q9Ik+d8c`638wb14g$a7XoxO81mqim8Xb599R z3^#l5Hg`gaskuTst+iXx`gXZ$oJ`l@n8;gd4z8aq4L3fV)}I_xR)(oRa0q)C_AFV- zzf=k`_SdcrH)}7;XsD~J$s8Ku8VzxM>;h@v;{u;PpLfiyOc|{`spddU*;e_2GFF*B zQ>_>25Xj7xH`1KNDh%TcxkXf?sr3lkQlhXa%4iH0>DODt3`M6G9f--4b;x}FJ!Df` z8z74le;;RD>}?y1f!>udB>rA(Q>U%gI$=uINIEdA6?(Np60TnDpk=K)8T@oNL7m2F ztrEA&99uE?Gcd|+4Ft8{%hI_u6&i4HW8Jn=@U2$aHqh(M%xqnvE*%<4$_vV29uE?$ z7c!3>bRLlZ!D z25O{HMe<2rNSiqlDMN}Jk@v#>yvGasVZTFL1d?|lNg4kVvbDopo&w%(Kk<()WB&!d ziVP6ykvF_M7}Q=b51#bw8XQFpclOeeH)JB0yjg#J#C&g9ik;q_84B+2hMvb5;N9KG zoxWSxrOWbA%Cr?EvD_3ZV=;P^!m|sfL5u z=)Q@F6}@yx2GlL=0_q@>4rAbHWuv4@BfV?@rI8{TO0Uqy=e7-&kVzKbwn3Vdv(8f9 z4WBD<)$IYxjwV?hN=QyqiM~n21b)Kpgedkcs{5v*z~WCx z+QmJQ)G0Zvd)@q=Ok!hCXk6(>eKd5g(d;t}H7Hl1)rE$1KSL>dEr~DAp<$Z8 zTwR1#7dbH5Lq`unE=?M71od?D#R}w$RbCYyY!3QWtTQ6HHvL6cvbr#$sMK?m5ihXn zul|Ls7AOi}Sg}G?qWM~j-16bBn1X}M&RVsVogU+Aeeov8Xt_J&-mIX|VFz071KK9= z>hl%3nSxnEvpQI`vLaWWVfB`1Gm%UYQ5T@Rkrgib+(2hbsepJAL6=%Uv-%&73BXV7|#YH1F7(KIt>8vU7B#v*jsc5t@Tb3x9w zkNzUsDzwv+N3R$%JoWV50aS>ovYnrT=SL-E$TMY;o;<_zHlDm$9eVCv3D1Izd2c<# zrLxJI*DUQZ#$ZU}gi7}FC+i23ne7A&!fnsjs2i03Qf-U-!%W+xZm1(cHrMPy`C*^_ z@Js!t}RmMr3X=AoZeFE*Gq#?3h(h zG7!SZYVE$OX+uLpG1^mgry|42te-X%PQFk?9G51TZDbY6_oz9rE~+S_%7~TS?r`=g zt*;=>*3C_CU4)#~$qgC~Q8tHQ#UQ`4<6OXmI(j%`NF*{4q!$q^h`@mNI2fZYZH^gA z%5D~o4U^#xjF{a;je8C=^SmvG2?UtgWC9R^D{wWq!VQQZc1s0TL@$tlt?Dh8RHgkUt+uqq6%o6`sjvP2pOx>Agu}5EOT%s}(jSeox|(t>L0iSIcY1P+ry|Ir}8Ksi>@$Y>yf4(xeV(wngF_ z31u|bcIDoikccBGa9iL)vfv9K=2H@g&gqQ0A2g=fva^X)fuL}*3RlIxgVP4=b2l+!A2?nG?eY%w;%rq|^S>MqAxpv)Jz7c<}o@)e)mQmyrq@;QC zjY!9CtcIghWzY)EXyyY4o!q?xYH3Bb%1roi*JtGHDI~$ZQh(2tQ^qTDgi4blPisAS zU0_8N-;stIY~eE+PtS8!Ux40QyM1@XgK;bSL@(0stlM`DxNxpN`R{hIFVfuhv}?); zTI{CQc!Y@ckKb0RoBH zgi+L0v{oW&0JTu83l29MNcNLK-5bxG0IpmaTniw1$wiP6g$Iz^-*PF8*m$*8pWH!^ zXSNJz)z_QR*V~jiQCD+tg^OkSY(d&ko=H$(W@}Zr!0oS`G~2JvX;gxAsat)XrNeAl z3oILn0E=h`UzWN-ueQBcWn7_dFxqZedNyl2yX{&>BalGZ7=#U%Sz@oyYg13?1egA4S^+S)dhZqvUeb1FeU>orLVXP2d=4WoWR- zgX?(1{DyQVdR2^y+sq}SJM9alc5|+e2y!M{lm_ybEi0i<{#h$$$tOL+4@8xtR#7(*R5sN>j@29GZ|xDOfXgmy7fU$->L)sl0)7ew1oTEo4iVW+Fa zs>vcr`@OEnyR5EsL=LeHHd+lka;F+qsm)t%Y1|rf#RE(4b>)A@*>w9vu6Rf6nxgCU+tZ$I~5H`dTtIjPd2o_iln0#X;i?!FEJOQOs!&|K3L}N;=Ps$ zjWksIFJ(^y7rUw{r^{D1znNON~KuiX$Y%98q@{N?Vo^ip^ zgAS3GVn`+rl?VntE6$#;{UqX&o_nW@=?VlLMJWu18FF{IeV&#P;Rsi-+|Rhf2K}v> z8}!f8Xil$<%X*K+h5YyAo^8_bPvU?D=Rb=>%uxo3Vf~=^Vatm14XPv(d-(Jtod z+YE+FlWMie2wS#_e)mw`2;R?DSB~M4dX%XU@H3zcM%KmTB$Ze(_PP ze|YX*FQq#oO5q+{alQ@_%{fpUAj`Yiwj`E06`2@rd`_FzmkhmvL^!<0HBXZ&nwnbb zAw~GGe%^T9Z)eaWMonSFX0W`TF;@BFbO1&}&dbn?o zqF^OA2#1}rS?lvwE*Y{RfCKR8(BO<|wMTb~zx(&Mq?II4hThr8Rf#Z0-)FckEKL)6{Inu1@tJ zy$jqVO??a$C3GH#v+`4hdZ4p;r5ha#pbJM$Z9Vd`C(Br`=6Ep?4TH@FV zD6x}IO2H+1($w-nk95VnWLp-jX6;&54X^+wRg*Xp$!ac$*cA8pA1qNzL&n5vK#FDW zg}cf2>gb)Sb?fcb0s=nxC?#_kxXFTffX99wYxxD5nugjZXQyhG-bm54-k} z>}ZXBRIX%He1%T7Z3_D?ByO;Ic2&xlZhPS2EJpPBq(2MYHlKAmF{UB*Y*Ha(N;QEk zl0rt341iANpb7Q@*pXtNHNyDrMK&Bxd$Dywb>2{O9m*W*Hiy7?&L{43bY?=eUV*Ou z5$(qZP>0t;s&8Q;M{RBVii)Ag+|v`n7jV&(*5BOI^Hf=eW{I_qWGUB>)J?%>K+-$voT4y7EB-ZRJq%r!GrnOj1uy~wCGp!DY3!t5+XQt73$99~jx%b8E z7a3%NspvoS;KEF4}B7D!ibnb^!c{4_1jg8!EH}d5nNF z3cUfggw0GNm_)ct^STfKQ~Y+YoEZe72o5=3^K4F0ZKupBTr)~9(5Fb52Nnjby&|d7ZJc^fT;N+a1(bu$_e!KB20pw$INCAnV%mq{8{z zv49cjnx1USHeg;0t}-l8MU&MP(53kX`cZKmA9*|8K*u>WWf!7*m4Xm7|Y5p|F{ZR6FQI0iQWnPX>Oj2EuiL80yXNbPo#_e?iIU?<$y(i z{@_SlY*3VY58Q&4OuZ6#K|~^5Z1O}(_()O-iDMMjcR#f!_z*ioObB=Rr?^YLR2TB( z5o}?o1scsZf$0*_>A{1^D` zU1zqEVv=U+oDUVJJ6|g7U!Li@=cN*R$vNk^xpxY$UPYuBlu+%2Gz zLHWC-HD7)Fu`)MtKzh1+!mFN0;libl69;P+IN+Bd*`)4;83f{0uDEm}XA`y$oHM#| zq+cvBKocN#42J}SkwmyA>NU0WqOi6L4Xnr_ZiFq7?l)5cWQ3*+6DnTwxG3ssbhsUs z-4j%+n)IpIkX@2J=$k=SRyj7zbKRY3$}f@2d!Vqw-UEdet^t8xgdwAvrphqO2{@0X zkq%S`(0mMGr_uvV>Cp&EWjI^Z(moMBvnd<&;T2s97(k?DR%lapMTtHH0t>SRO4^M* zdh{t_u98-Sg^rckrn`+`&!rjs^0%MwKWS(>_jm54hNe9!|1z5Z7M)r@DE)M8P}8yB z+n>~Af%*_!YP#_2{c#bv5@-=?zgAkAX_snvFCP(GP8J`1&)wbVMYE@X(j|TmD6|XJXubHW^A11WPV$N_;_Svq3f-T7BRA?MK zwgZd+W7rW@o@~`?JFB)8B&Tlq4~+sURZz)WhY3I%wV4&?sByd+=R_fyj#Gh2ZJ|!+ z4G<#5O&!qT*sUkb!gV1-yYg<8wf(q#sb(x_yYJl5h}bj$+IG>pIeD*k<#mciQ?u_D zq_+Ji@dbI(EIV(Rdd6Mjw2#+zw^+KbeJEs!f$F{i*usIRGV63(`4E2u4u zW**7gG(S&rV<>w87oBWPv5Q8w1jS4Ver5E&=Tc5$a{_BOr_FE7yj+;Zbr=z0U+mKS z12_}(9O^0Ml z$Wz`w-1io~2msFaX7mg;t(;@8zOP9+@*b)vC@Z#^yDgzRnQ=MFDKCd0T8XReh$`@;Wr@R^ErbGc;Z%yS>4S+6S75~}_#uVU z7PGF>UqA{%iQPpD;{cc9@p&ZZ3!u&F2zP}dWNrNURTsH=Mg)&$i9GUL8lUFuvhPT| ze$Jjn`jPZ0R&@;RMkbupnbxk+0epccjVv!0f6;TrL3igjMHc#*EE|X0t1>%jRbTBZ zd(v=a`v(mKRS@ts?P-Uk{D*WML71c};F`MT?I}XUYAE;uP5UPTK2WJV#g!xqncm{U z-Ov7rqkt(0Z~OJW%$=ZOx*2%dF>>Z}E<|lGGZHy&vps)BI%he)7?GSvbU6gr%_yrHlSQ9P%+L7A>BCH^KlDR0Vv~;BkNZ+5lc%gRPJ`ir)Q~j zT4bZFrJ{(sJTSQ+D|ub?U?4G&Hj2`WThn17jf?Nw&g^YMI=!>LGDdv@no=Ioqxl5x zw93}HnEais`mJt)UXjw*PONYt{48U_Rs_;U;EPM}taF~@Bwb|#_!>(NqF5Q(9~EHh zc3kGz9$b06F|ePUidYx&6QPN{cp3v32&r)K{c zqye`57?gZF^=tR56v9~$vi4(eSwY+Pd7Vsbx9e+uN(g?`roKSuIB`$2oJ#F~kJ=%2_WVP6QlY^j`yUmVqWJmSgO0e-zhWcz)kpe( zD_~gRV)GTXg_~2SXYXC-Uv}M&4uE@n0GX;TR9PS>oU2Z~7-mNJfXyANd0x<-2m_n@ zGl>R2Ac2&X_0CShr6QZYpn!~^8)#8J1#*gmMY*Gmxg(V`tW1YExJZ$sKT(asC4y=c zZ2gI96nqg>)4>)2J)jx|Q+w3}8>!pLQ^3pIJakWS0*d`AwRI=x^#BoJ>g8yHVnsS8 z*7Lk>Zc6dCFVx2jb+Gm-ra<#5;nf$Hg|GPecDFWq+`YAtMLs58Kbf0ScscG&;pM=5 zyPJFexzTlR{mMCG{^S;Cr>{F-w!c}E6EX@+T7AW8M7ZQl*cUHPcUJAZ4(8_XvXafY zJ3760U*=K?KyCTT?s4&xDb8JUlQD(U>8>5rZHJy0NsEzMw4(ql?d6%yhPjs)_`M0^ ztEt2zaR8E7lc1V?VLntsAfU5&47m8Ad|>IDec#{&$AmCt>&rp;UpVKtmE2hAHftU` zR3Bk2rUcAC;)xu|P`>V$BV2l~6l~ad^rSbYAbG(Z22t&y3l6mK3wlXr0XfL+El49$ z?F7*7Bc={jV$^!O=%tew-SX@OIrl24ekMf z^`@!^Mx(4OIKfTpb}M#gI7img&_N^Ut;0e0Mf#``q;0)5gazYY2w(#})_?SwURvl7 zyfP6qi`)#0ARY}~@>}ov;BCER!6#LbG!r{?eL}G!!;=<>YOn8{d7Pjj&XSf9{u!b zV{&j>KY6RHF*)jl51*t4PsP0RAlt#{;dchXElS@?it9Zc_i5LhdAtd%PWJ0-$nCR@ zr*pgdWKqDnIYm;s%J>B~X4+Q!lDEj($K>yU-UTWbLFk=rJO8Yjb(K=VjK^f_mS~j| ztXoeS`EFIRrJCvw2$BKSunmqPFeo#d0AzBlq6P?Mqd+f^Y>R5;6K<)!zAkO#h3m#5 zFMfeZgufYW_qBii5R~u7U3d|_Y5!81F@B+ z8s&B7T@{gFRFxMJd}>ATPxEDg<^=rog9=jX^st~vK|H;R0Nw#%P(d9!*vyv&S3wig ztu7=B>cG-N1@Xr7apI~Q(S1eG%j}5x9nq+Hik-f?JQ&tJBeHKZ_qT~uqNr1)WpM79 zkSO#(EW%H(j;7s2RJXZ9?+#;I-a@Ktmfo#Ss9x$Fh)bbAS(ETo&8Aay%{hZ&N;*3B zzxWklXP{pID1uiM$mrng-Y*2sDDGa%b}2biF)KgLnfl@-!gX9Lx7(OAC0vSh#+lBS)lMZd zI5{@u?*W*M0`c3od?jG=W$ENUx?Ja~_j#1#Gy%8C!@#z~egswD-<`h^r>DFqw9J{} zuSDQ`#rm3RC%y_%=PtYEe`ouZjkG97+DJGjf@z6ZxOC(4Rqu}{B%4;UL+7O;QAyOl zL~AlJm6k^4i@Y&SZC<%7fk+85B3qXB$P0Q2|GS60XmWMp(Az?i3+X{4F=SX{Zln7H ziuA~~$q9aq7Ssc^?8Yh5^bU(dy5sd&Ivrg_1X!u;>DeAsppo9_i38j{H^9j( z&731>wLRk-vINE7GWhO~OlZze-AAlx0YNC0Ue50srx`efWuv0{XKp?IrNOV`WwqALx(%1g?&(by5R(uE0atE#Ji+M08 zjw7aqbN5L^+)iALX?;oQc>>DC1fWg}A|@yy5KlJVdWnIU7tW~mY9O8kVRTV3amWXd z(AB0gI?l3@G0207>W?^^^yt3e*7R?JwrSJoc=H4>IGPKLY*CVj;$y3tvSjSdn|xgv zh5hR(3><^drbm%JY76sjz;>W1Nj0|H3`FJ1bQoBn9g}T*(Yx_Qt?WDjI*b2deG&6W zaLY&{bWbRsU>5cIvfQe+FAaXwR8ae5PEI`qfGnShIY?Oo4Xc_`+sc}bo}W9mJ(6Hw zegP7Z9w%epoVScyc7E(@_g91!;)ORr@UeWrEp>o1*5=_mCs#A#CTROUEt`woM_gvk zoNP7#@y0Bto%6TrIG{cjT4EldQ(G%0)+(oC2}36#y6I8L$Fp1~p=op%^gI0)BGzSk zf0B2j%_hf=S+E1kOAIM8by^+#$3&R+Fa_(oZVjCpj%M&Z$lSX(=>)oyICPd;&Et5* zJjnqSaYh;dlE2$Y45eZNC~O#YP_mG!lN8;e;7DH=xPs{s%)9rO#Q+~5Q6D9i^<+{6 z>-J(`U|0U#+l!6c#68b{+1sMyb^tpMTkxi$3Vub_3m7N;C7xCZL? zH(;OT`<)L?z6u?CfPX+c_CwDgfFt%?ft;>;3n_jGaC8oN3`8ZU`oFIE-r5`Y&UMP< zF>vl7MF-c8{5qv0h%+ZBL@dnTX#Mi-r+e2R-2J~8nXSGJAIar~?T3A&$ zajRN*j7I0O+FK&h&&86p!6y?vl(rPBI_OH%Y!3$>S&QZ=ttbH2OlL-A*g%F6qjFV3 zAyzlZF0D3?H*^#T3lDOY3^Rn=KloGyHcD)q90v*$YJ4`M5Ol4j6L(In<3|rwk3x{wW@qf{^0dKJ_7|We;Dv113p5NE7%otuU%7ium-_$Ga+8ben*5W zrVt12it8k_1w#ZCT$g;Zsfqv^CGo}Ir+{!pd(uoIbtqO#VqId$D4UG{8~KaF8txYs z0431E^|KShGsz7?(7yN~x4#oVC?I%UP;z)Kg=0R77;S4F*BC(7pPT@`M=aua+D!s- zedLpE#iPih;mBxesma==((LF|iQ*|-(qG!;`5*c20%sT`R6_&V{}|gHa=YNFp?-YOpWb)Yw&&J#=N<7y6z-YV8v^xQG)& zb{?jTY=U>pj0ti=M-w6QA*C@!g~i(=DTLg?84!&gZw!t}&+A5lbzt49*s<-4nhM&U z%*h@+UHs-kcZedtVDNT%@tca#)5W77#VxBiKXzq#&9e3{gO5F*80+=>l6S?U;A@YQ zK`Gy-d@sFyy7b^qU&e3qmQ{uakNQh@R0;;X=Q+-rlQSm+VX`k>0d&l}almOOo$EmN z{lrPAhXtaCGKga%Gm?syEwLsYStKV_6>VJy;}_Sla>-d}f#x?tv}{Dn(af$RZb-2n zA`1qQ;$*DeDMo%TRU#ra8Y;=??oHd(5d2JWwz)&KnS{&4#bucbB}$J_M6bCjut6^> za}jFTBw7H`&j!ONUF}&chc5OU2@0c~R9w3410*i*ze)gKquAUIDqMY)(1qhyU#J!4 zE9Wo}f);P1Xx`=M=9RN>zh+w!0XjsnKZWm5Q@jt?!Pg+mamh}F#l&Kd;L$m zTfXYqYuCB^T&MmIuQlrIBed+x8F64QIg<<@@$aoh4%jag` z)s#MTfhm>W7>Kk`qDOtHz(Bu% zzML4ZI<)q!7Yn`7y--+iv=QAhxSWeC3XXGjT&se?j*lg>U|rgVHFtzC$fty_T+K_2cihe&Pen;tpx2J%Fb>!>4AWgL|( zuF#f%lv0jaJS_c$QRBF#33(M5*UB{HiIfFD9!}U+)m8$b1XQ6(j`ud@kl;J0v5aVj z-o&@RK>i>%lM8lPHRoXqs?G?!T3+IQ6VwBKsz*tW+NQGQ)6%8!ayaA35EPa)h+nRrJ{qrYd zgE!hH#sI7(YuF9@;+Cn$25))zj$L7Ynf9Ae8sM{gIcMFOgRs#$bF)&ZxXqb#chJWw!J8F1 z(cqo>E$~AeSW8aoz!m5GGs&)jed)wu(^!a+UT*ecqC+D4OYdlc+Er|81o3fj7Sj#m z72dZZ(4D)CW^#mlhdX5k2{oKi01I@GdW`9&QwR<6zz{(`K{6@wxd~+S`L9SFuREy$ zw>)O8L)H$we59~fClgM3DfgknW2xP3yt*$!AWlWp4)1q9Y0^>5p69KA=M)k?A9>F; z0mm~S%6rc>sYslnn1Dx$b^cWM5#B@Imq}66J)Y%Nm(5nrdVK8h_+{bCn3Z6sPbS7M z(_gyI^(?%+@5HZ%$mKE5^3#8RGXApg>*avNho*aNr2n9HX0R2JxwS56e>@G8)rIc_ zf^()`;~E`dypDI0;2rqO>P9%9PKEP35$gXivX`&ME&EOYL|qAzk_T220rWBM^^{8y z=od-9#?O94EL<`o{zW1InFOAe+!QSpBd<+DbCL%KnI`8Sx^51ckw^$MYF{OEkT{|7 zc~2&Ftl1V*0ACNLH$9}_F$>y&uoB0h4FOb`f9iWjAt;ly{!F$Vxp|VY$J42_nKl+c zjMNPZ834y9akv{wwFaMv)-98PLI=_}e7hGZYEY?BWt9WBjjG>?TlQc4b0mXZ|2>?- zSU9POTI(hf&ALSBWM3&R25O2GAvt-GSn{4zb**9nHwW!XQ0^VlJ1ZwUunzT!Sm@Ux zq*MVhgVaPs=At1u+J$Y-3b~oLU`|z{nbwi41r^650=EllL}(4b z7NreA?7TKk9z(KC6BXpXgUKY^Cv66h)oDWRMjVGkk2I1heVo~#L~^!la+Z>~Y=FTs zXqgv@x0sVk|jSP zb+a#aEbX_~;JW(|!;dl3KvM7AK3y1#ow*P-;kY?nKKRl4=Xri#rakYTfnN>ytPR3` z3Sw`a|F_?({C(2XNARA1bN=o3Wp*odEpAz7<-Ya5F>u!5Zt28WIUw5Tw|P$fz~xzU z3g)LBu?_xd)tn=&8$*ZkZh+g;eI4lBPq1uk9+poxT}8lHZ@vtMWJ?ZKbUniV9&SMo z)3rzu&EHC>F8e@qL42|;&ux)C3_L~XO5jBnu9FuLPd*l|M39gATxbJW>N&BmDEGDQ zwAS7Ri<5ssl0w%Fn|4cgqy9-ektJWcnFRd#yD4e3SCgvk?9j=eW@D0#9>@VLMZ}MU z@(mJ6p1-xxVN~jS8)86Pkw!y;^)dcqa^iWkar9v z2;jUAkiwY(RYH0Z;*$tohpLFzf0_Z#V`E$2qcMwOvi$(*gIS=tBwYW?j0A9F8KQV1 zbGrSB%6t;#zx|Yi`8&XLHz>wDk5+vNeBE~vyP02q_N?UkrDw?d+}ZnfVb_CKuL03d z0GEG%GU1uoko63EkAc>e|F}Nk4@@t))qj0-8YdsUEX@Cy1pIH-$c0M~@SpD_XDD9l zEPnj#^?S8o&DVptR4pEzdOdR!MSdv`yOywESFl@hxAn`SSPFxYYa)Oh>v^=Hq|38p zW6s{{x%)^8=q7|v`~sYHXnU`C7V=o?`<<701WhjsuYuL(gXB^n$Jnu->Skh(q?yc^ z8KJZHUrD-V%uDi>Zo~+{X6Vv(Vr2Y5bN}>5+3J#ewhUD_?gI@@nn7##1S0dm@10MX zK)YZ|=z*V#NeV}b;cXZtZgS|V5Cwn?+tLlM(Y?ue5{!7-$Tzp$z0Tz^d~YCDM5&@Lyy45=Y{aNo7o znzJ%+R!!3>+#VT2>N1GnI*do&({v3H{;G)CILSmISb82&Yn$6wwAK^zBuTsD89p&2 zpG0^w^6XF)+R=O|JJdZ0 zTaMiPLAXqI)a z@e;l1-pILg`%LMLhow3cKDhd%^mH+hI@=eRoC`)Qnf+z{W$8!20cN@+IQ1BVw5CQ8RQB_#G#E# zU|^%rA9Pp?Wst(^byQ@VQYR=3k}0x2g$R z#!-nUvI9&$LY;ZP10V$^6P17@pPUJ8ow-Suaa!?SU2O!i>O@saWq3_wSr>xkm+bBg z`rZ`1zwdukSf{MtrlBuja}$EB^Rr*4kek{8!ixFe$#~`0UH$~(o#*;PUAVmO=quiJ z&|FBr{3gIJCC&bCtriIDybg?bhAe{!%l8Jo*AZrfh0*E1EVm}2gB+RzwS)ZsUc!)( z`l^QjJNARs$hn=JVCLJ{{3aqEY~Fh)m81xv$dbI>bL8je(2=)mUWb?U^bYFcv7abm z0kTh(PXCcyE4cLvRF}~VcLUOaL@6gC?WO`uo#4f`GoFan8Q(i)O4V|tQ4}=WlY$%E zrm(F6PbS2f3;(PF-uEuTyI~8+N=%)Rbt%b$B)|v}*Fe!l>{R0ozbd{SKw3-kpX`Kd z&~nq%$3;?G?>G*dzH|gtiIRSK>3@Zq708Qy*V@?ENz>WDYHVHYueEOG7vuuSg+wq2 zBOux7s#`GVcwOEI)jX^KXPMXGsVAiNJz#DwqV5H?4kHbZ@HPU&&#tMYDD1mdwFQ6h zPWIofzfLcJ*4ByEX76viQ$g+X;h!I5ZN@{%Bw`QSeJLr*E)TZOmB4c^r$c zyV_&XI*%sRRi_!+D)DHlh`5_J;EweDkf=ob!@H(FB89|-psHn}))z?Z4q?_O=3lBN z#X8xfpA6z}d|xA~>Ii#AhaM1TA};$8;}s~iwg(;Z2)4u3lqWtyacJC#oIg+-8j8dP zb4hv{fc_g|9GLKO+j%{Dz-)lnK)2#Mm|zSWXZNa_bvIOnkZGmLxMC8n&$3Xo^r-N* z<291veRWYu5Imr4<6^HqAhyEKgR4VouKjWG!Bi<{QyayXTbbpPoHH&`L5)Vc$gcoySRW{z<|58QPo#LM;Zi zI*y($S>v%UZm%W^lEnAY@6&!WJ^`2}dIf`Xg>#oWW!CsA|FRhB#o5MJ>A%4<@NY-L zrE|Z`Ke@?wZ1DR;$is!ncrOu%4}xJA?*-D^&78=-Tl~`+&Okr|sPuN8j!K)(0cSQu z60JZ*KME=>G$Gh6$$?hEhOt&24qjSUvqwtABCgHHlJo8wrFjx6842}^HUgG>jTLg47s90qV-1zv+b6U`Wc#xo!@%++F> zUcxP6VAa7;HI1blRyqyi;U}?Y0GQhnz^sX1oO($qyc`uv$-~F2n->3{{F=^Nu-JuS z+918iyHV*kU!=YW_PkGq-TIRoQ*4)_(qMo8SF$()ECN^;UWQ^3Iz}@8I`p17@c>ft z2Xlb#gns{jS9B+!PZVAb(s>IY6^~MSi7Nn+h{rFhpUWTbEy2esr{|O8*_orSSlz^4 zMRZ;P!D^(!>f!4ohO50iN~3Uv1%R>|obDv@FVbkRZ8d=?!*S&d@{1(m>CSp07GI&i zf=Wx=0+;#F9EkRSAL-tIic4-q5&o<7p0NvHf*=OggljXYO2MsHV7D-Yk{=y@gro`p zh-*#R#U#4Zx%c4L*I8_51PC2GZ^q38cWrbq4EF_4R0{(9zZ`7ec}roPr3|<;>V+bj z5Nill!wE#c&~pAv#SQ6FbCR=^SGbo&YOKP-AdX;;XIyI`2?oyb7^)nCe%0xubKbpT z_YlhQg-3t^NQm)^n2obSo@|zW;Y|2w>3H* zXTzVg7D&tar+;n?fb}BS?p4SP#P-Z5Y!~>8W;q3bStrIp~fK)(g9> zM2D@yrBC|v{vTWK0@mbV{(lDqia|R;5)|u-APNaVQBo~kTcCu-AQnOrNCXd|a!Bd{ z3tjbX9YygE33Or!Vg!qrAR!4ALn=~hJpk*lD1?BWb5(Ix(Rr}w_58T)eGa)Z<^|TQIF008 zJSkhKTct-zS4KQWyMo^~bD^4twNJDOtz%=T-Z@qmHezX`s^lZd-M^bZHlpb~wa3dY zG>mAF1z+UE@$t@+5YEP{Q^RoC`jW=wJrc%$P03l|gjY{4*QYBMGa2*tP$n!y*)#p}sQ5f@7PN&14Y zM+wL)dPo*Cl9v$s_Tz`&t{4ST8?R#bqFQj6@nz_4Ha@)jd*B&SI(Rqo-ZMj2zY#}! z*th}X!eGOf@$E|BnSGOd%fP#&b{7;h6J~JYt&ccZf|FWw+Qry$E$*?%5>&>7xX5wM4GE{=H z`!&QevM39f#4m_tPxT}G8aWSZZaFUpQ8i(w!oyYtQX6uHYM)(onLL~o*T{HA);!2e zlJ{#4(o0FmnF%0&E9mD}GHLTT{V9?mjp2KMlY(GKjQ;=I0r4Dm2LkyK{&qhFGvl;i zQWFTWl*1|_w$cl{?KHFTb+M=U6F}RuXIWi-<>QY-w14$r{pQ4>FJS`!zx6+upWFV? z1ieA#0K#?7$MAO4;#3G>4`bi^cuvU==6_B-`ak_q3}fMnVB%;Y#kVVZFBpscQExJZ4gfO(oE`Huc4)B@fehX3ly`-9PQY;J-9Y;xXDmau?sD z6tUBgi^?Of5v4uCb&xDh^W=pgbXTH{yUK*{cvS3)>r_Y-V@@{SM=Xa#aM zu6SPGz(4O}NDEvP#MDbTYx%&bdG$40fLw@RSb86?VPxyHj4d3gohWpX6XSMe&OjDY zxrwQN`!Ah;(aTH~{Z*5NN_^L%=_qO=)_!q&`d)N7m6Gf-~sPG6-kk#?Jmp~E4r^=yNP#!R(ZSEaR_K`Fa5|@*+z^tlWK83{EfBK!emF&pEju_P!(E|)SED&H zyt}Je7V7e#cQlP3hl|xQvycnX!K(}3o3UjJs-WH+QRN)qC>Eo`^H@P{h9*xrP{<9= z8RZA64y7p1qbZf5RB=LX_*v(k=!0%{|Ge@^&RzgnGh4`A8A>TzsT1f(1O6h;hdOY` z-_-m)BF(D#wSANhn|epEYGFhWT)+7nJPrvU_$xS!flAV}yGYY28J04@BpMTE2l)(x z8Df702@IXvx8R=(--AnIV;qO1b0O63ob8@t@156P{-l8pMLnf?mCz%Y&uzjB#>v6F zpsRc~#<>9eB;LSZ#Ww=mZ;0K#bv<=wI0sh+tqL~PCJTMmpaI6rwV2^*27wt2Z!(1U z=Wwu9Qo`qRV|lU*>hqYMUS5q(TbqB9wgu=SF*N}mWox+s>kDu)0#Gt2md}V$bJ=I!xHu*#rasX3J60{s5e>Y>tS8hVB5;41+0c!pW!5*F>A%c`4 zLV_Hvr-%vJ{zvX!?}HKkxPhuR!9_ro*(O#u;6l*0YuUkWy3@nWn>`mG;R>#Ayi?@k z7^Hce%d;)3%LRt>-im=>UUq2xU%R4k0ZI&Va7S$4jp3aE^?SeG_^NpIPw@6a#XbjQ z=WRcDAs6*iH={Sb2&MZ@R}AO!MB_vFJ?g3Gq7SZ&Y)b6f7f^nK`r&I>c3|f@ zSnX-PA1b&gcw)Y`a1O&=q`Xqq2I*U>)7boa3`*nIMlk|&sPZ{mA6-K`eHFtk^7?P^f!8v^I4uZ7r8MlgVo>;% z=9njGK2X0OuWNWevI6A2dLr$WgZ)sT3mhOTR+v#xSCfX)V{fR;LKl>37B<+#;a6&S z1Iq`;!CP<@M1+@ZO6`FwxfKxYgI<_FRS(U~l$*iR0PjLI5{o^{KQVu{_pT5zyB9V1H*@>+D%5S4YvO?`VcwvA>ja>?72x=lMb@vt32A zW2;-G9S;-Qt!>9TVy)pgSzil{%U3P>!8h*>1p3O#n!S!0M$l+ zo6l<%D*|d`3i2{ldwJ;fYvjMVrYva_H5ly*;l>YMP?V`z*OT+Yg#LA+B5@1T&Re87 zoD(a&s}@xWLoi^jd6uROuSbcok<^xFHE-a~t8FI&RgZ5JptA-o3AK-JY*}AB5Mipa zQ+n7QY4?ro3=#uXK;^)DaNc$br#%I=`5W?yj&DT$;_r=rs#)LM4$tr(4sDDY#X0mM zI+gszzmGkKJT&+h;JyG-AATEm_u8PxNsQC#iQuGh&1Zp%3m) z?C6KoPb;CEh5*uK>*u22 z0YZUEW1~19a_Q5!h5@3`$&P7>_FqNpp)I9hJZ_j#TMe>d#bj6oFlP3D_j=9&n;hh* zkRyNyW1HPcPdg%1wlus=V98(~*qH{Gbxheg>3Jk$k>}L2`jG=;7zuID;Pbzg7Q|qJ zE?ir7@?q2mTEyQx&ILWWAP_k7VSeic{nNK*m zES1NjZ_)fQPRiJD=y;0C^)R5_t~u2k5TYF8sA%56fGS-+zc#It>|S3=Y-p;}mkk_NItiC$9K- zwXZuhZ2h-PhjBq6Q_-tOSJoz_9@dmZb9o}3P1(2c`fPMuk5Qtpd6gagQp>yAzuNw# zHMIGSQRxcntLZ-$Ud~WZSyi<>zohYoNRxVJ#j0?ArfVhgZ!<@~Dp>U`x}JF)r-M&l zJWT;plhz~;YMf!-bt2~4R3;(+-9~V{;?IM{d8{;4NB$hn4?_Gde zWjI`Zjqx0eerbSez5EJ13lSS|9bTY8(uu~eYA-Y#FKL|g%15<>XiI)(L`fzVQh(}| z)ZVo@RCmObliE^^kha(?mqLEXUz4F_Z7F&CKD%*G=q2xy!u`Za%sHxXAQrp{`M!?(=b5P5 zCL5GxWBokF*qer=fW*eYTii2W6FhvW4`Sbi+`mz$p$pV?1oC7C(XHlde)D6-x_pt* zctaIuplNyjMK@y<8!kupGhF`cZ!aTe(-`YXrP@Sn>_MLs;528` zD14f|%Bh@s%DjLu_4G?)oPP6k&`6V;nOpv8s$s^_$j312l0A{Z&UbSrYrf9BauM;t zK8F2k{iyq7ADOCMF;95RPt_=giTc^xId7x+2kh5pUJ5{eMb8<}zz`k{!p}?LA?C+s znnb}EF7)!)#$HUu^ATE=+J=c;+TiE@rv8Jf{}~>|mSpI%qUzrpi*}QbayrQK>C_#k zJg#}Io(;kubu}Q1->LV@wc*+!{j}vSBm18$dyj4e44HZ^xKf!aWL&%YVa?aw)3puA z$R$>*za`fx_z#P`2|p&(CR{m%Y>zdMO)Bl1%l0@_p(b%I+5~XXH30qx{amK3)1p{HR|_?VqNg441sW3UDM(CTw%XchH(w&42ula6cy>b0S}*AL=NI`JyksJGZV~jI zsA|S*amU16thWjjb*(Xpa(}kFc&L5eh!?ND4igw2@_maA1ws133QiWz_cP|`W-p!) zm3L)s8g{=aB2`!JpwSU0n?!phj;chon=j(V1eNf*=a$=J3QE*G=jzLeU4_zk!)ES| z<_zV)Va*PC6S~C@i<⪚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 literal 0 HcmV?d00001 diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js new file mode 100644 index 00000000..d0af756d --- /dev/null +++ b/docs/assets/js/application.js @@ -0,0 +1,76 @@ +// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT +// IT'S ALL JUST JUNK FOR OUR DOCS! +// ++++++++++++++++++++++++++++++++++++++++++ + +/*! + * Copyright 2013 Twitter, Inc. + * + * Licensed under the Creative Commons Attribution 3.0 Unported License. For + * details, see http://creativecommons.org/licenses/by/3.0/. + */ + + +!function ($) { + + $(function() { + + // IE10 viewport hack for Surface/desktop Windows 8 bug + // + // See Getting Started docs for more information + if (navigator.userAgent.match(/IEMobile\/10\.0/)) { + var msViewportStyle = document.createElement("style"); + msViewportStyle.appendChild( + document.createTextNode( + "@-ms-viewport{width:auto!important}" + ) + ); + document.getElementsByTagName("head")[0]. + appendChild(msViewportStyle); + } + + + var $window = $(window) + var $body = $(document.body) + + var navHeight = $('.navbar').outerHeight(true) + 10 + + // scrollspy + $body.scrollspy({ + target: '.bs-sidebar', + offset: navHeight + }) + + $window.on('load', function () { + $body.scrollspy('refresh') + }) + + $('.bs-docs-container [href=#]').click(function (e) { + e.preventDefault() + }) + + // back to top + setTimeout(function () { + var $sideBar = $('.bs-sidebar') + + $sideBar.affix({ + offset: { + top: function () { + var offsetTop = $sideBar.offset().top + var sideBarMargin = parseInt($sideBar.children(0).css('margin-top'), 10) + var navOuterHeight = $('.bs-docs-nav').height() + + return (this.top = offsetTop - navOuterHeight - sideBarMargin) + }, + bottom: function () { + return (this.bottom = $('.bs-footer').outerHeight(true)) + } + } + }) + }, 100) + + setTimeout(function () { + $('.bs-top').affix() + }, 100) + }) + +}(jQuery) diff --git a/docs/assets/js/customize.min.js b/docs/assets/js/customize.min.js new file mode 100644 index 00000000..2bb1076b --- /dev/null +++ b/docs/assets/js/customize.min.js @@ -0,0 +1,55 @@ +/*! + * LESS - Leaner CSS v1.6.2 + * http://lesscss.org + * + * Copyright (c) 2009-2014, Alexis Sellier + * Licensed under the Apache v2 License. + * + */ +/** * @license Apache v2 + */ +/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */ +if(!function(a,b){function c(b){return a.less[b.split("/")[1]]}function d(a,b){"development"==v.env&&"undefined"!=typeof console&&v.logLevel>=b&&console.log("less: "+a)}function e(a){return a.replace(/^[a-z-]+:\/+?[^\/]+/,"").replace(/^\//,"").replace(/\.[a-zA-Z]+$/,"").replace(/[^\.\w-]+/g,"-").replace(/\./g,":")}function f(a,c){var e="{line} {content}",f=a.filename||c,g=[],h=(a.type||"Syntax")+"Error: "+(a.message||"There is an error in your .less file")+" in "+f+" ",i=function(a,c,d){a.extract[c]!==b&&g.push(e.replace(/\{line\}/,(parseInt(a.line,10)||0)+(c-1)).replace(/\{class\}/,d).replace(/\{content\}/,a.extract[c]))};a.extract?(i(a,0,""),i(a,1,"line"),i(a,2,""),h+="on line "+a.line+", column "+(a.column+1)+":\n"+g.join("\n")):a.stack&&(h+=a.stack),d(h,y.errors)}function g(a,b,c){var f=b.href||"",g="less:"+(b.title||e(f)),h=document.getElementById(g),i=!1,j=document.createElement("style");if(j.setAttribute("type","text/css"),b.media&&j.setAttribute("media",b.media),j.id=g,j.styleSheet)try{j.styleSheet.cssText=a}catch(k){throw new Error("Couldn't reassign styleSheet.cssText.")}else j.appendChild(document.createTextNode(a)),i=null!==h&&h.childNodes.length>0&&j.childNodes.length>0&&h.firstChild.nodeValue===j.firstChild.nodeValue;var l=document.getElementsByTagName("head")[0];if(null===h||i===!1){var m=b&&b.nextSibling||null;m?m.parentNode.insertBefore(j,m):l.appendChild(j)}if(h&&i===!1&&h.parentNode.removeChild(h),c&&C){d("saving "+f+" to cache.",y.info);try{C.setItem(f,a),C.setItem(f+":timestamp",c)}catch(k){d("failed to save",y.errors)}}}function h(a,c){var d,f,h="less-error-message:"+e(c||""),i='
  • {content}
  • ',j=document.createElement("div"),k=[],l=a.filename||c,m=l.match(/([^\/]+(\?.*)?)$/)[1];j.id=h,j.className="less-error-message",f="

    "+(a.type||"Syntax")+"Error: "+(a.message||"There is an error in your .less file")+'

    in '+m+" ";var n=function(a,c,d){a.extract[c]!==b&&k.push(i.replace(/\{line\}/,(parseInt(a.line,10)||0)+(c-1)).replace(/\{class\}/,d).replace(/\{content\}/,a.extract[c]))};a.extract?(n(a,0,""),n(a,1,"line"),n(a,2,""),f+="on line "+a.line+", column "+(a.column+1)+":

      "+k.join("")+"
    "):a.stack&&(f+="
    "+a.stack.split("\n").slice(1).join("
    ")),j.innerHTML=f,g([".less-error-message ul, .less-error-message li {","list-style-type: none;","margin-right: 15px;","padding: 4px 0;","margin: 0;","}",".less-error-message label {","font-size: 12px;","margin-right: 15px;","padding: 4px 0;","color: #cc7777;","}",".less-error-message pre {","color: #dd6666;","padding: 4px 0;","margin: 0;","display: inline-block;","}",".less-error-message pre.line {","color: #ff0000;","}",".less-error-message h3 {","font-size: 20px;","font-weight: bold;","padding: 15px 0 5px 0;","margin: 0;","}",".less-error-message a {","color: #10a","}",".less-error-message .error {","color: red;","font-weight: bold;","padding-bottom: 2px;","border-bottom: 1px dashed red;","}"].join("\n"),{title:"error-message"}),j.style.cssText=["font-family: Arial, sans-serif","border: 1px solid #e00","background-color: #eee","border-radius: 5px","-webkit-border-radius: 5px","-moz-border-radius: 5px","color: #e00","padding: 15px","margin-bottom: 15px"].join(";"),"development"==v.env&&(d=setInterval(function(){document.body&&(document.getElementById(h)?document.body.replaceChild(j,document.getElementById(h)):document.body.insertBefore(j,document.body.firstChild),clearInterval(d))},10))}function i(a,b){v.errorReporting&&"html"!==v.errorReporting?"console"===v.errorReporting?f(a,b):"function"==typeof v.errorReporting&&v.errorReporting("add",a,b):h(a,b)}function j(a){var b=document.getElementById("less-error-message:"+e(a));b&&b.parentNode.removeChild(b)}function k(){}function l(a){v.errorReporting&&"html"!==v.errorReporting?"console"===v.errorReporting?k(a):"function"==typeof v.errorReporting&&v.errorReporting("remove",a):j(a)}function m(a){for(var b,c=document.getElementsByTagName("style"),d=0;d0&&(h.splice(c-1,2),c-=2)}return g.hostPart=f[1],g.directories=h,g.path=f[1]+h.join("/"),g.fileUrl=g.path+(f[4]||""),g.url=g.fileUrl+(f[5]||""),g}function o(a,b){var c,d,e,f,g=n(a),h=n(b),i="";if(g.hostPart!==h.hostPart)return"";for(d=Math.max(h.directories.length,g.directories.length),c=0;d>c&&h.directories[c]===g.directories[c];c++);for(f=h.directories.slice(c),e=g.directories.slice(c),c=0;c=200&&b.status<300?c(b.responseText,b.getResponseHeader("Last-Modified")):"function"==typeof d&&d(b.status,a)}var g=p(),h=x?v.fileAsync:v.async;"function"==typeof g.overrideMimeType&&g.overrideMimeType("text/css"),d("XHR: Getting '"+a+"'",y.info),g.open("GET",a,h),g.setRequestHeader("Accept",b||"text/x-less, text/css; q=0.9, */*; q=0.5"),g.send(null),x&&!v.fileAsync?0===g.status||g.status>=200&&g.status<300?c(g.responseText):e(g.status,a):h?g.onreadystatechange=function(){4==g.readyState&&f(g,c,e)}:f(g,c,e)}function r(b,c,d,e){c&&c.currentDirectory&&!/^([a-z-]+:)?\//.test(b)&&(b=c.currentDirectory+b);var f=n(b,a.location.href),g=f.url,h={currentDirectory:f.path,filename:g};if(c?(h.entryPath=c.entryPath,h.rootpath=c.rootpath,h.rootFilename=c.rootFilename,h.relativeUrls=c.relativeUrls):(h.entryPath=f.path,h.rootpath=v.rootpath||f.path,h.rootFilename=g,h.relativeUrls=e.relativeUrls),h.relativeUrls&&(h.rootpath=e.rootpath?n(e.rootpath+o(f.path,h.entryPath)).path:f.path),e.useFileCache&&D[g])try{var i=D[g];d(null,i,g,h,{lastModified:new Date})}catch(j){d(j,null,g)}else q(g,e.mime,function(a,b){D[g]=a;try{d(null,a,g,h,{lastModified:b})}catch(c){d(c,null,g)}},function(a,b){d({type:"File",message:"'"+b+"' wasn't found ("+a+")"},null,g)})}function s(a,b,c,d,e){var f=new v.tree.parseEnv(v);f.mime=a.type,(e||v.globalVars)&&(f.useFileCache=!0),r(a.href,null,function(h,i,j,k,m){if(m){m.remaining=d;var n=C&&C.getItem(j),o=C&&C.getItem(j+":timestamp");if(!c&&o&&m.lastModified&&new Date(m.lastModified).valueOf()===new Date(o).valueOf())return g(n,a),m.local=!0,void b(null,null,i,a,m,j)}l(j),i?(f.currentFileInfo=k,new v.Parser(f).parse(i,function(c,d){if(c)return b(c,null,null,a);try{b(c,d,i,a,m,j)}catch(c){b(c,null,null,a)}},{modifyVars:e,globalVars:v.globalVars})):b(h,null,null,a,m,j)},f,e)}function t(a,b,c){for(var d=0;dE&&(D=D.slice(x-E),E=x)}function g(a,b){var c=a.charCodeAt(0|b);return 32>=c&&(32===c||10===c||9===c)}function h(a){var b,c,d=typeof a;return"string"===d?u.charAt(x)!==a?null:(k(1),a):(f(),(b=a.exec(D))?(c=b[0].length,k(c),"string"==typeof b?b:1===b.length?b[0]:b):null)}function i(a){x>E&&(D=D.slice(x-E),E=x);var b=a.exec(D);return b?(k(b[0].length),"string"==typeof b?b:1===b.length?b[0]:b):null}function j(a){return u.charAt(x)!==a?null:(k(1),a)}function k(a){for(var b,c=x,d=y,e=x-E,f=x+D.length-e,g=x+=a,h=u;f>x&&(b=h.charCodeAt(x),!(b>32))&&(32===b||10===b||9===b||13===b);x++);return D=D.slice(a+x-g+e),E=x,!D.length&&y=0&&"\n"!==b.charAt(c);)e++;return"number"==typeof a&&(d=(b.slice(0,a).match(/\n/g)||"").length),{line:d,column:e}}function s(a,b,d){var e=d.currentFileInfo.filename;return"browser"!==v.mode&&"rhino"!==v.mode&&(e=c("path").resolve(e)),{lineNumber:r(a,b).line+1,fileName:e}}function t(a,b){var c=q(a,b),d=r(a.index,c),e=d.line,f=d.column,g=a.call&&r(a.call,c).line,h=c.split("\n");this.type=a.type||"Syntax",this.message=a.message,this.filename=a.filename||b.currentFileInfo.filename,this.index=a.index,this.line="number"==typeof e?e+1:null,this.callLine=g+1,this.callExtract=h[g],this.stack=a.stack,this.column=f,this.extract=[h[e-1],h[e],h[e+1]]}var u,x,y,z,A,B,C,D,E,F,G,H=a&&a.filename;a instanceof w.parseEnv||(a=new w.parseEnv(a));var I=this.imports={paths:a.paths||[],queue:[],files:a.files,contents:a.contents,contentsIgnoredChars:a.contentsIgnoredChars,mime:a.mime,error:null,push:function(b,c,d,e){var f=this;this.queue.push(b);var g=function(a,c,d){f.queue.splice(f.queue.indexOf(b),1);var g=d in f.files||d===H;f.files[d]=c,a&&!f.error&&(f.error=a),e(a,c,g,d)};v.Parser.importer?v.Parser.importer(b,c,g,a):v.Parser.fileLoader(b,c,function(b,e,f,h){if(b)return void g(b);var i=new w.parseEnv(a);i.currentFileInfo=h,i.processImports=!1,i.contents[f]=e,(c.reference||d.reference)&&(h.reference=!0),d.inline?g(null,e,f):new v.Parser(i).parse(e,function(a,b){g(a,b,f)})},a)}},J=i;return t.prototype=new Error,t.prototype.constructor=t,this.env=a=a||{},this.optimization="optimization"in this.env?this.env.optimization:1,F={imports:I,parse:function(d,e,f){var g,h,i,j,k,l=null,m="";if(x=y=E=B=0,j=f&&f.globalVars?v.Parser.serializeVars(f.globalVars)+"\n":"",k=f&&f.modifyVars?"\n"+v.Parser.serializeVars(f.modifyVars):"",(j||f&&f.banner)&&(m=(f&&f.banner?f.banner:"")+j,F.imports.contentsIgnoredChars[a.currentFileInfo.filename]=m.length),d=d.replace(/\r\n/g,"\n"),u=d=m+d.replace(/^\uFEFF/,"")+k,F.imports.contents[a.currentFileInfo.filename]=d,C=function(b){function c(b,c){l=new t({index:c||i,type:"Parse",message:b,filename:a.currentFileInfo.filename},a)}function d(a){var c=i-s;512>c&&!a||!c||(r.push(b.slice(s,i+1)),s=i+1)}var e,f,g,h,i,j,k,m,n,o=b.length,p=0,q=0,r=[],s=0;for(i=0;o>i;i++)if(k=b.charCodeAt(i),!(k>=97&&122>=k||34>k))switch(k){case 40:q++,f=i;continue;case 41:if(--q<0)return c("missing opening `(`");continue;case 59:q||d();continue;case 123:p++,e=i;continue;case 125:if(--p<0)return c("missing opening `{`");p||d();continue;case 92:if(o-1>i){i++;continue}return c("unescaped `\\`");case 34:case 39:case 96:for(n=0,j=i,i+=1;o>i;i++)if(m=b.charCodeAt(i),!(m>96)){if(m==k){n=1;break}if(92==m){if(i==o-1)return c("unescaped `\\`");i++}}if(n)continue;return c("unmatched `"+String.fromCharCode(k)+"`",j);case 47:if(q||i==o-1)continue;if(m=b.charCodeAt(i+1),47==m)for(i+=2;o>i&&(m=b.charCodeAt(i),!(13>=m)||10!=m&&13!=m);i++);else if(42==m){for(g=j=i,i+=2;o-1>i&&(m=b.charCodeAt(i),125==m&&(h=i),42!=m||47!=b.charCodeAt(i+1));i++);if(i==o-1)return c("missing closing `*/`",j);i++}continue;case 42:if(o-1>i&&47==b.charCodeAt(i+1))return c("unmatched `/*`");continue}return 0!==p?g>e&&h>g?c("missing closing `}` or `*/`",e):c("missing closing `}`",e):0!==q?c("missing closing `)`",f):(d(!0),r)}(d),l)return e(new t(l,a));D=C[0];try{g=new w.Ruleset(null,this.parsers.primary()),g.root=!0,g.firstRoot=!0}catch(n){return e(new t(n,a))}if(g.toCSS=function(d){return function(e,f){e=e||{};var g,h,i=new w.evalEnv(e);"object"!=typeof f||Array.isArray(f)||(f=Object.keys(f).map(function(a){var b=f[a];return b instanceof w.Value||(b instanceof w.Expression||(b=new w.Expression([b])),b=new w.Value([b])),new w.Rule("@"+a,b,!1,null,0)}),i.frames=[new w.Ruleset(null,f)]);try{var j,k=[],l=[new w.joinSelectorVisitor,new w.processExtendsVisitor,new w.toCSSVisitor({compress:Boolean(e.compress)})],m=this;if(e.plugins)for(j=0;j57||43>b||47===b||44==b?void 0:(a=i(/^([+-]?\d*\.?\d+)(%|[a-z]+)?/),a?new w.Dimension(a[1],a[2]):void 0)},unicodeDescriptor:function(){var a;return a=i(/^U\+[0-9a-fA-F?]+(\-[0-9a-fA-F?]+)?/),a?new w.UnicodeDescriptor(a[0]):void 0},javascript:function(){var c,d,e=x;return"~"===u.charAt(e)&&(e++,d=!0),"`"===u.charAt(e)?(a.javascriptEnabled===b||a.javascriptEnabled||n("You are using JavaScript, which has been disabled."),d&&j("~"),c=i(/^`([^`]*)`/),c?new w.JavaScript(c[1],x,d):void 0):void 0}},variable:function(){var a;return"@"===u.charAt(x)&&(a=i(/^(@[\w-]+)\s*:/))?a[1]:void 0},extend:function(a){var b,c,d,e,f,g=x;if(i(a?/^&:extend\(/:/^:extend\(/)){do{for(d=null,b=null;!(d=i(/^(all)(?=\s*(\)|,))/))&&(c=this.element());)b?b.push(c):b=[c];d=d&&d[1],f=new w.Extend(new w.Selector(b),d,g),e?e.push(f):e=[f]}while(j(","));return l(/^\)/),a&&l(/^;/),e}},extendRule:function(){return this.extend(!0)},mixin:{call:function(){var b,c,f,g,h,k,l=u.charAt(x),n=!1,o=x;if("."===l||"#"===l){for(d();b=x,g=i(/^[#.](?:[\w-]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/),g;)f=new w.Element(h,g,b,a.currentFileInfo),c?c.push(f):c=[f],h=j(">");return c&&(j("(")&&(k=this.args(!0).args,m(")")),G.important()&&(n=!0),G.end())?new w.mixin.Call(c,k,o,a.currentFileInfo,n):void e()}},args:function(a){for(var b,c,d,e,f,g,h=F.parsers,k=h.entities,m={args:null,variadic:!1},o=[],p=[],q=[];;){if(a)g=h.expression();else{if(h.comments(),"."===u.charAt(x)&&i(/^\.{3}/)){m.variadic=!0,j(";")&&!b&&(b=!0),(b?p:q).push({variadic:!0});break}g=k.variable()||k.literal()||k.keyword()}if(!g)break;e=null,g.throwAwayComments&&g.throwAwayComments(),f=g;var r=null;if(a?1==g.value.length&&(r=g.value[0]):r=g,r&&r instanceof w.Variable)if(j(":"))o.length>0&&(b&&n("Cannot mix ; and , as delimiter types"),c=!0),f=l(h.expression),e=d=r.name;else{if(!a&&i(/^\.{3}/)){m.variadic=!0,j(";")&&!b&&(b=!0),(b?p:q).push({name:g.name,variadic:!0});break}a||(d=e=r.name,f=null)}f&&o.push(f),q.push({name:e,value:f}),j(",")||(j(";")||b)&&(c&&n("Cannot mix ; and , as delimiter types"),b=!0,o.length>1&&(f=new w.Value(o)),p.push({name:d,value:f}),d=null,o=[],c=!1)}return m.args=b?p:q,m},definition:function(){var a,b,c,f,g=[],h=!1;if(!("."!==u.charAt(x)&&"#"!==u.charAt(x)||o(/^[^{]*\}/))&&(d(),b=i(/^([#.](?:[\w-]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+)\s*\(/))){a=b[1];var k=this.args(!1);if(g=k.args,h=k.variadic,j(")")||(B=x,e()),G.comments(),i(/^when/)&&(f=l(G.conditions,"expected condition")),c=G.block())return new w.mixin.Definition(a,g,c,f,h);e()}}},entity:function(){var a=this.entities;return a.literal()||a.variable()||a.url()||a.call()||a.keyword()||a.javascript()||this.comment()},end:function(){return j(";")||p("}")},alpha:function(){var a;return i(/^\(opacity=/i)?(a=i(/^\d+/)||this.entities.variable(),a?(m(")"),new w.Alpha(a)):void 0):void 0},element:function(){var b,c,d,e=x;return c=this.combinator(),b=i(/^(?:\d+\.\d+|\d+)%/)||i(/^(?:[.#]?|:*)(?:[\w-]|[^\x00-\x9f]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/)||j("*")||j("&")||this.attribute()||i(/^\([^()@]+\)/)||i(/^[\.#](?=@)/)||this.entities.variableCurly(),b||j("(")&&(d=this.selector())&&j(")")&&(b=new w.Paren(d)),b?new w.Element(c,b,e,a.currentFileInfo):void 0},combinator:function(){var a=u.charAt(x);if(">"===a||"+"===a||"~"===a||"|"===a||"^"===a){for(x++,"^"===u.charAt(x)&&(a="^^",x++);g(u,x);)x++;return new w.Combinator(a)}return new w.Combinator(g(u,x-1)?" ":null)},lessSelector:function(){return this.selector(!0)},selector:function(b){for(var c,d,e,f,g,h,i,j=x,k=J;(b&&(g=this.extend())||b&&(h=k(/^when/))||(f=this.element()))&&(h?i=l(this.conditions,"expected condition"):i?n("CSS guard can only be used at the end of selector"):g?d?d.push(g):d=[g]:(d&&n("Extend can only be used at the end of selector"),e=u.charAt(x),c?c.push(f):c=[f],f=null),"{"!==e&&"}"!==e&&";"!==e&&","!==e&&")"!==e););return c?new w.Selector(c,d,i,j,a.currentFileInfo):void(d&&n("Extend must be used to extend a selector, it cannot be used on its own"))},attribute:function(){if(j("[")){var a,b,c,d=this.entities;return(a=d.variableCurly())||(a=l(/^(?:[_A-Za-z0-9-\*]*\|)?(?:[_A-Za-z0-9-]|\\.)+/)),c=i(/^[|~*$^]?=/),c&&(b=d.quoted()||i(/^[0-9]+%/)||i(/^[\w-]+/)||d.variableCurly()),m("]"),new w.Attribute(a,c,b)}},block:function(){var a;return j("{")&&(a=this.primary())&&j("}")?a:void 0},ruleset:function(){var b,c,f,g;for(d(),a.dumpLineNumbers&&(g=s(x,u,a));(c=this.lessSelector(),c)&&(b?b.push(c):b=[c],this.comments(),c.condition&&b.length>1&&n("Guards are only currently allowed on a single selector."),j(","));)c.condition&&n("Guards are only currently allowed on a single selector."),this.comments();if(b&&(f=this.block())){var h=new w.Ruleset(b,f,a.strictImports);return a.dumpLineNumbers&&(h.debugInfo=g),h}B=x,e()},rule:function(b){var c,f,g,h=u.charAt(x),i=!1;if(d(),"."!==h&&"#"!==h&&"&"!==h&&(c=this.variable()||this.ruleProperty())){if(f=!b&&(a.compress||c.charAt&&"@"===c.charAt(0))?this.value()||this.anonymousValue():this.anonymousValue()||this.value(),g=this.important(),i=c.pop&&"+"===c.pop().value,f&&this.end())return new w.Rule(c,f,g,i,A,a.currentFileInfo);if(B=x,e(),f&&!b)return this.rule(!0)}},anonymousValue:function(){var a;return a=/^([^@+\/'"*`(;{}-]*);/.exec(D),a?(x+=a[0].length-1,new w.Anonymous(a[1])):void 0},"import":function(){var b,c,f=x;d();var g=i(/^@import?\s+/),h=(g?this.importOptions():null)||{};return g&&(b=this.entities.quoted()||this.entities.url())&&(c=this.mediaFeatures(),j(";"))?(c=c&&new w.Value(c),new w.Import(b,c,h,f,a.currentFileInfo)):void e()},importOptions:function(){var a,b,c,d={};if(!j("("))return null;do if(a=this.importOption()){switch(b=a,c=!0,b){case"css":b="less",c=!1;break;case"once":b="multiple",c=!1}if(d[b]=c,!j(","))break}while(a);return m(")"),d},importOption:function(){var a=i(/^(less|css|multiple|once|inline|reference)/);return a?a[1]:void 0},mediaFeature:function(){var b,c,d=this.entities,e=[];do if(b=d.keyword()||d.variable())e.push(b);else if(j("(")){if(c=this.property(),b=this.value(),!j(")"))return null;if(c&&b)e.push(new w.Paren(new w.Rule(c,b,null,null,x,a.currentFileInfo,!0)));else{if(!b)return null;e.push(new w.Paren(b))}}while(b);return e.length>0?new w.Expression(e):void 0},mediaFeatures:function(){var a,b=this.entities,c=[];do if(a=this.mediaFeature()){if(c.push(a),!j(","))break}else if(a=b.variable(),a&&(c.push(a),!j(",")))break;while(a);return c.length>0?c:null},media:function(){var b,c,d,e;return a.dumpLineNumbers&&(e=s(x,u,a)),i(/^@media/)&&(b=this.mediaFeatures(),c=this.block())?(d=new w.Media(c,b,x,a.currentFileInfo),a.dumpLineNumbers&&(d.debugInfo=e),d):void 0},directive:function(){var b,c,f,g,h,k,l,m,n=x;if("@"===u.charAt(x)){if(c=this["import"]()||this.media())return c;if(d(),b=i(/^@[a-z-]+/)){switch(g=b,"-"==b.charAt(1)&&b.indexOf("-",2)>0&&(g="@"+b.slice(b.indexOf("-",2)+1)),g){case"@font-face":h=!0;break;case"@viewport":case"@top-left":case"@top-left-corner":case"@top-center":case"@top-right":case"@top-right-corner":case"@bottom-left":case"@bottom-left-corner":case"@bottom-center":case"@bottom-right":case"@bottom-right-corner":case"@left-top":case"@left-middle":case"@left-bottom":case"@right-top":case"@right-middle":case"@right-bottom":h=!0;break;case"@host":case"@page":case"@document":case"@supports":case"@keyframes":h=!0,k=!0;break;case"@namespace":l=!0}if(k&&(m=(i(/^[^{]+/)||"").trim(),m&&(b+=" "+m)),h){if(f=this.block())return new w.Directive(b,f,n,a.currentFileInfo)}else if(c=l?this.expression():this.entity(),c&&j(";")){var o=new w.Directive(b,c,n,a.currentFileInfo);return a.dumpLineNumbers&&(o.debugInfo=s(x,u,a)),o}e()}}},value:function(){var a,b=[];do if(a=this.expression(),a&&(b.push(a),!j(",")))break;while(a);return b.length>0?new w.Value(b):void 0},important:function(){return"!"===u.charAt(x)?i(/^! *important/):void 0},sub:function(){var a,b;return j("(")&&(a=this.addition())?(b=new w.Expression([a]),m(")"),b.parens=!0,b):void 0},multiplication:function(){var a,b,c,d,e;if(a=this.operand()){for(e=g(u,x-1);!o(/^\/[*\/]/)&&(c=j("/")||j("*"),c)&&(b=this.operand(),b);)a.parensInOp=!0,b.parensInOp=!0,d=new w.Operation(c,[d||a,b],e),e=g(u,x-1);return d||a}},addition:function(){var a,b,c,d,e;if(a=this.multiplication()){for(e=g(u,x-1);(c=i(/^[-+]\s+/)||!e&&(j("+")||j("-")),c)&&(b=this.multiplication(),b);)a.parensInOp=!0,b.parensInOp=!0,d=new w.Operation(c,[d||a,b],e),e=g(u,x-1);return d||a}},conditions:function(){var a,b,c,d=x;if(a=this.condition()){for(;o(/^,\s*(not\s*)?\(/)&&j(",")&&(b=this.condition(),b);)c=new w.Condition("or",c||a,b,d);return c||a}},condition:function(){var a,b,c,d,e=this.entities,f=x,g=!1;return i(/^not/)&&(g=!0),m("("),a=this.addition()||e.keyword()||e.quoted(),a?(d=i(/^(?:>=|<=|=<|[<=>])/),d?(b=this.addition()||e.keyword()||e.quoted(),b?c=new w.Condition(d,a,b,f,g):n("expected expression")):c=new w.Condition("=",a,new w.Keyword("true"),f,g),m(")"),i(/^and/)?new w.Condition("and",c,this.condition()):c):void 0},operand:function(){var a,b=this.entities,c=u.charAt(x+1);"-"!==u.charAt(x)||"@"!==c&&"("!==c||(a=j("-"));var d=this.sub()||b.dimension()||b.color()||b.variable()||b.call();return a&&(d.parensInOp=!0,d=new w.Negative(d)),d},expression:function(){var a,b,c=[];do a=this.addition()||this.entity(),a&&(c.push(a),o(/^\/[\/*]/)||(b=j("/"),b&&c.push(new w.Anonymous(b))));while(a);return c.length>0?new w.Expression(c):void 0},property:function(){var a=i(/^(\*?-?[_a-zA-Z0-9-]+)\s*:/);return a?a[1]:void 0},ruleProperty:function(){function b(a){var b=a.exec(e);return b?(g.push(x+h),h+=b[0].length,e=e.slice(b[1].length),f.push(b[1])):void 0}var c,d,e=D,f=[],g=[],h=0;for(b(/^(\*?)/);b(/^((?:[\w-]+)|(?:@\{[\w-]+\}))/););if(f.length>1&&b(/^\s*(\+?)\s*:/)){for(k(h),""===f[0]&&(f.shift(),g.shift()),d=0;dl;l++)e=b.rgb[l]/255,f=c.rgb[l]/255,h=a(e,f),g&&(h=(j*f+i*(e-j*(e+f-h)))/g),k[l]=255*h;return new d.Color(k,g)}function g(){var a,b=d.functions;for(a in l)l.hasOwnProperty(a)&&(b[a]=e.bind(null,Math[a],l[a]));for(a in m)m.hasOwnProperty(a)&&(b[a]=f.bind(null,m[a]));a=d.defaultFunc,b["default"]=a.eval.bind(a)}function h(a){return d.functions.hsla(a.h,a.s,a.l,a.a)}function i(a,b){return a instanceof d.Dimension&&a.unit.is("%")?parseFloat(a.value*b/100):j(a)}function j(a){if(a instanceof d.Dimension)return parseFloat(a.unit.is("%")?a.value/100:a.value);if("number"==typeof a)return a;throw{error:"RuntimeError",message:"color functions take numbers as parameters"}}function k(a){return Math.min(1,Math.max(0,a))}d.functions={rgb:function(a,b,c){return this.rgba(a,b,c,1)},rgba:function(a,b,c,e){var f=[a,b,c].map(function(a){return i(a,255)});return e=j(e),new d.Color(f,e)},hsl:function(a,b,c){return this.hsla(a,b,c,1)},hsla:function(a,b,c,d){function e(a){return a=0>a?a+1:a>1?a-1:a,1>6*a?g+(f-g)*a*6:1>2*a?f:2>3*a?g+(f-g)*(2/3-a)*6:g}a=j(a)%360/360,b=k(j(b)),c=k(j(c)),d=k(j(d));var f=.5>=c?c*(b+1):c+b-c*b,g=2*c-f;return this.rgba(255*e(a+1/3),255*e(a),255*e(a-1/3),d)},hsv:function(a,b,c){return this.hsva(a,b,c,1)},hsva:function(a,b,c,d){a=j(a)%360/360*360,b=j(b),c=j(c),d=j(d);var e,f;e=Math.floor(a/60%6),f=a/60-e;var g=[c,c*(1-b),c*(1-f*b),c*(1-(1-f)*b)],h=[[0,3,1],[2,0,1],[1,0,3],[1,2,0],[3,1,0],[0,1,2]];return this.rgba(255*g[h[e][0]],255*g[h[e][1]],255*g[h[e][2]],d)},hue:function(a){return new d.Dimension(Math.round(a.toHSL().h))},saturation:function(a){return new d.Dimension(Math.round(100*a.toHSL().s),"%")},lightness:function(a){return new d.Dimension(Math.round(100*a.toHSL().l),"%")},hsvhue:function(a){return new d.Dimension(Math.round(a.toHSV().h))},hsvsaturation:function(a){return new d.Dimension(Math.round(100*a.toHSV().s),"%")},hsvvalue:function(a){return new d.Dimension(Math.round(100*a.toHSV().v),"%")},red:function(a){return new d.Dimension(a.rgb[0])},green:function(a){return new d.Dimension(a.rgb[1])},blue:function(a){return new d.Dimension(a.rgb[2])},alpha:function(a){return new d.Dimension(a.toHSL().a)},luma:function(a){return new d.Dimension(Math.round(a.luma()*a.alpha*100),"%")},saturate:function(a,b){if(!a.rgb)return null;var c=a.toHSL();return c.s+=b.value/100,c.s=k(c.s),h(c)},desaturate:function(a,b){var c=a.toHSL();return c.s-=b.value/100,c.s=k(c.s),h(c)},lighten:function(a,b){var c=a.toHSL();return c.l+=b.value/100,c.l=k(c.l),h(c)},darken:function(a,b){var c=a.toHSL();return c.l-=b.value/100,c.l=k(c.l),h(c)},fadein:function(a,b){var c=a.toHSL();return c.a+=b.value/100,c.a=k(c.a),h(c)},fadeout:function(a,b){var c=a.toHSL();return c.a-=b.value/100,c.a=k(c.a),h(c)},fade:function(a,b){var c=a.toHSL();return c.a=b.value/100,c.a=k(c.a),h(c)},spin:function(a,b){var c=a.toHSL(),d=(c.h+b.value)%360;return c.h=0>d?360+d:d,h(c)},mix:function(a,b,c){c||(c=new d.Dimension(50));var e=c.value/100,f=2*e-1,g=a.toHSL().a-b.toHSL().a,h=((f*g==-1?f:(f+g)/(1+f*g))+1)/2,i=1-h,j=[a.rgb[0]*h+b.rgb[0]*i,a.rgb[1]*h+b.rgb[1]*i,a.rgb[2]*h+b.rgb[2]*i],k=a.alpha*e+b.alpha*(1-e);return new d.Color(j,k)},greyscale:function(a){return this.desaturate(a,new d.Dimension(100))},contrast:function(a,b,c,d){if(!a.rgb)return null;if("undefined"==typeof c&&(c=this.rgba(255,255,255,1)),"undefined"==typeof b&&(b=this.rgba(0,0,0,1)),b.luma()>c.luma()){var e=c;c=b,b=e}return d="undefined"==typeof d?.43:j(d),a.luma()i.value)&&(k[f]=g)):(l[j]=k.length,k.push(g))):k.push(g);return 1==k.length?k[0]:(c=k.map(function(a){return a.toCSS(this.env)}).join(this.env.compress?",":", "),new d.Anonymous((a?"min":"max")+"("+c+")"))},min:function(){return this._minmax(!0,arguments)},max:function(){return this._minmax(!1,arguments)},argb:function(a){return new d.Anonymous(a.toARGB())},percentage:function(a){return new d.Dimension(100*a.value,"%")},color:function(a){if(a instanceof d.Quoted){var b,c=a.value;if(b=d.Color.fromKeyword(c))return b;if(/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})/.test(c))return new d.Color(c.slice(1));throw{type:"Argument",message:"argument must be a color keyword or 3/6 digit hex e.g. #FFF"}}throw{type:"Argument",message:"argument must be a string"}},iscolor:function(a){return this._isa(a,d.Color)},isnumber:function(a){return this._isa(a,d.Dimension)},isstring:function(a){return this._isa(a,d.Quoted)},iskeyword:function(a){return this._isa(a,d.Keyword)},isurl:function(a){return this._isa(a,d.URL)},ispixel:function(a){return this.isunit(a,"px")},ispercentage:function(a){return this.isunit(a,"%")},isem:function(a){return this.isunit(a,"em")},isunit:function(a,b){return a instanceof d.Dimension&&a.unit.is(b.value||b)?d.True:d.False},_isa:function(a,b){return a instanceof b?d.True:d.False},tint:function(a,b){return this.mix(this.rgb(255,255,255),a,b)},shade:function(a,b){return this.mix(this.rgb(0,0,0),a,b)},extract:function(a,b){return b=b.value-1,Array.isArray(a.value)?a.value[b]:Array(a)[b]},length:function(a){var b=Array.isArray(a.value)?a.value.length:1;return new d.Dimension(b)},"data-uri":function(b,e){if("undefined"!=typeof a)return new d.URL(e||b,this.currentFileInfo).eval(this.env);var f=b.value,g=e&&e.value,h=c("fs"),i=c("path"),j=!1;if(arguments.length<2&&(g=f),this.env.isPathRelative(g)&&(g=this.currentFileInfo.relativeUrls?i.join(this.currentFileInfo.currentDirectory,g):i.join(this.currentFileInfo.entryPath,g)),arguments.length<2){var k;try{k=c("mime")}catch(l){k=d._mime}f=k.lookup(g);var m=k.charsets.lookup(f);j=["US-ASCII","UTF-8"].indexOf(m)<0,j&&(f+=";base64")}else j=/;base64$/.test(f);var n=h.readFileSync(g),o=32,p=parseInt(n.length/1024,10);if(p>=o&&this.env.ieCompat!==!1)return this.env.silent||console.warn("Skipped data-uri embedding of %s because its size (%dKB) exceeds IE8-safe %dKB!",g,p,o),new d.URL(e||b,this.currentFileInfo).eval(this.env);n=j?n.toString("base64"):encodeURIComponent(n);var q='"data:'+f+","+n+'"';return new d.URL(new d.Anonymous(q))},"svg-gradient":function(a){function e(){throw{type:"Argument",message:"svg-gradient expects direction, start_color [start_position], [color position,]..., end_color [end_position]"}}arguments.length<3&&e();var f,g,h,i,j,k,l,m=Array.prototype.slice.call(arguments,1),n="linear",o='x="0" y="0" width="1" height="1"',p=!0,q={compress:!1},r=a.toCSS(q);switch(r){case"to bottom":f='x1="0%" y1="0%" x2="0%" y2="100%"';break;case"to right":f='x1="0%" y1="0%" x2="100%" y2="0%"';break;case"to bottom right":f='x1="0%" y1="0%" x2="100%" y2="100%"';break;case"to top right":f='x1="0%" y1="100%" x2="100%" y2="0%"';break;case"ellipse":case"ellipse at center":n="radial",f='cx="50%" cy="50%" r="75%"',o='x="-50" y="-50" width="101" height="101"';break;default:throw{type:"Argument",message:"svg-gradient direction must be 'to bottom', 'to right', 'to bottom right', 'to top right' or 'ellipse at center'"}}for(g='<'+n+'Gradient id="gradient" gradientUnits="userSpaceOnUse" '+f+">",h=0;hl?' stop-opacity="'+l+'"':"")+"/>";if(g+="',p)try{g=c("./encoder").encodeBase64(g)}catch(s){p=!1}return g="'data:image/svg+xml"+(p?";base64":"")+","+g+"'",new d.URL(new d.Anonymous(g))}},d._mime={_types:{".htm":"text/html",".html":"text/html",".gif":"image/gif",".jpg":"image/jpeg",".jpeg":"image/jpeg",".png":"image/png"},lookup:function(a){var e=c("path").extname(a),f=d._mime._types[e];if(f===b)throw new Error('Optional dependency "mime" is required for '+e);return f},charsets:{lookup:function(a){return a&&/^text\//.test(a)?"UTF-8":""}}};var l={ceil:null,floor:null,sqrt:null,abs:null,tan:"",sin:"",cos:"",atan:"rad",asin:"rad",acos:"rad"},m={multiply:function(a,b){return a*b},screen:function(a,b){return a+b-a*b},overlay:function(a,b){return a*=2,1>=a?m.multiply(a,b):m.screen(a-1,b)},softlight:function(a,b){var c=1,d=a;return b>.5&&(d=1,c=a>.25?Math.sqrt(a):((16*a-12)*a+4)*a),a-(1-2*b)*d*(c-a)},hardlight:function(a,b){return m.overlay(b,a)},difference:function(a,b){return Math.abs(a-b)},exclusion:function(a,b){return a+b-2*a*b},average:function(a,b){return(a+b)/2},negation:function(a,b){return 1-Math.abs(a+b-1)}};d.defaultFunc={eval:function(){var a=this.value_,b=this.error_;if(b)throw b;return null!=a?a?d.True:d.False:void 0},value:function(a){this.value_=a},error:function(a){this.error_=a},reset:function(){this.value_=this.error_=null}},g(),d.fround=function(a,b){var c;return a&&null!=a.numPrecision?(c=Math.pow(10,a.numPrecision),Math.round(b*c)/c):b},d.functionCall=function(a,b){this.env=a,this.currentFileInfo=b},d.functionCall.prototype=d.functions}(c("./tree")),function(a){a.colors={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgrey:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}}(c("./tree")),function(a){a.debugInfo=function(b,c,d){var e="";if(b.dumpLineNumbers&&!b.compress)switch(b.dumpLineNumbers){case"comments":e=a.debugInfo.asComment(c);break;case"mediaquery":e=a.debugInfo.asMediaQuery(c);break;case"all":e=a.debugInfo.asComment(c)+(d||"")+a.debugInfo.asMediaQuery(c)}return e},a.debugInfo.asComment=function(a){return"/* line "+a.debugInfo.lineNumber+", "+a.debugInfo.fileName+" */\n"},a.debugInfo.asMediaQuery=function(a){return"@media -sass-debug-info{filename{font-family:"+("file://"+a.debugInfo.fileName).replace(/([.:\/\\])/g,function(a){return"\\"==a&&(a="/"),"\\"+a})+"}line{font-family:\\00003"+a.debugInfo.lineNumber+"}}\n"},a.find=function(a,b){for(var c,d=0;d1?"["+a.value.map(function(a){return a.toCSS(!1)}).join(", ")+"]":a.toCSS(!1)},a.toCSS=function(a){var b=[];return this.genCSS(a,{add:function(a){b.push(a)},isEmpty:function(){return 0===b.length}}),b.join("")},a.outputRuleset=function(a,b,c){var d,e=c.length;if(a.tabLevel=(0|a.tabLevel)+1,a.compress){for(b.add("{"),d=0;e>d;d++)c[d].genCSS(a,b);return b.add("}"),void a.tabLevel--}var f="\n"+Array(a.tabLevel).join(" "),g=f+" ";if(e){for(b.add(" {"+g),c[0].genCSS(a,b),d=1;e>d;d++)b.add(g),c[d].genCSS(a,b);b.add(f+"}")}else b.add(" {"+f+"}");a.tabLevel--}}(c("./tree")),function(a){a.Alpha=function(a){this.value=a},a.Alpha.prototype={type:"Alpha",accept:function(a){this.value=a.visit(this.value)},eval:function(b){return this.value.eval?new a.Alpha(this.value.eval(b)):this},genCSS:function(a,b){b.add("alpha(opacity="),this.value.genCSS?this.value.genCSS(a,b):b.add(this.value),b.add(")")},toCSS:a.toCSS}}(c("../tree")),function(a){a.Anonymous=function(a,b,c,d){this.value=a.value||a,this.index=b,this.mapLines=d,this.currentFileInfo=c},a.Anonymous.prototype={type:"Anonymous",eval:function(){return new a.Anonymous(this.value,this.index,this.currentFileInfo,this.mapLines)},compare:function(a){if(!a.toCSS)return-1;var b=this.toCSS(),c=a.toCSS();return b===c?0:c>b?-1:1},genCSS:function(a,b){b.add(this.value,this.currentFileInfo,this.index,this.mapLines)},toCSS:a.toCSS}}(c("../tree")),function(a){a.Assignment=function(a,b){this.key=a,this.value=b},a.Assignment.prototype={type:"Assignment",accept:function(a){this.value=a.visit(this.value)},eval:function(b){return this.value.eval?new a.Assignment(this.key,this.value.eval(b)):this},genCSS:function(a,b){b.add(this.key+"="),this.value.genCSS?this.value.genCSS(a,b):b.add(this.value)},toCSS:a.toCSS}}(c("../tree")),function(a){a.Call=function(a,b,c,d){this.name=a,this.args=b,this.index=c,this.currentFileInfo=d},a.Call.prototype={type:"Call",accept:function(a){this.args&&(this.args=a.visitArray(this.args))},eval:function(b){var c,d,e=this.args.map(function(a){return a.eval(b)}),f=this.name.toLowerCase();if(f in a.functions)try{if(d=new a.functionCall(b,this.currentFileInfo),c=d[f].apply(d,e),null!=c)return c}catch(g){throw{type:g.type||"Runtime",message:"error evaluating function `"+this.name+"`"+(g.message?": "+g.message:""),index:this.index,filename:this.currentFileInfo.filename}}return new a.Call(this.name,e,this.index,this.currentFileInfo)},genCSS:function(a,b){b.add(this.name+"(",this.currentFileInfo,this.index);for(var c=0;ca?"0":"")+a.toString(16)}).join("")}function c(a,b){return Math.min(Math.max(a,0),b)}a.Color=function(a,b){this.rgb=Array.isArray(a)?a:6==a.length?a.match(/.{2}/g).map(function(a){return parseInt(a,16)}):a.split("").map(function(a){return parseInt(a+a,16)}),this.alpha="number"==typeof b?b:1};var d="transparent";a.Color.prototype={type:"Color",eval:function(){return this},luma:function(){return.2126*this.rgb[0]/255+.7152*this.rgb[1]/255+.0722*this.rgb[2]/255},genCSS:function(a,b){b.add(this.toCSS(a))},toCSS:function(b,e){var f=b&&b.compress&&!e,g=a.fround(b,this.alpha);if(1>g)return 0===g&&this.isTransparentKeyword?d:"rgba("+this.rgb.map(function(a){return c(Math.round(a),255)}).concat(c(g,1)).join(","+(f?"":" "))+")";var h=this.toRGB();if(f){var i=h.split("");i[1]===i[2]&&i[3]===i[4]&&i[5]===i[6]&&(h="#"+i[1]+i[3]+i[5])}return h},operate:function(b,c,d){for(var e=[],f=this.alpha*(1-d.alpha)+d.alpha,g=0;3>g;g++)e[g]=a.operate(b,c,this.rgb[g],d.rgb[g]);return new a.Color(e,f)},toRGB:function(){return b(this.rgb)},toHSL:function(){var a,b,c=this.rgb[0]/255,d=this.rgb[1]/255,e=this.rgb[2]/255,f=this.alpha,g=Math.max(c,d,e),h=Math.min(c,d,e),i=(g+h)/2,j=g-h;if(g===h)a=b=0;else{switch(b=i>.5?j/(2-g-h):j/(g+h),g){case c:a=(d-e)/j+(e>d?6:0);break;case d:a=(e-c)/j+2;break;case e:a=(c-d)/j+4}a/=6}return{h:360*a,s:b,l:i,a:f}},toHSV:function(){var a,b,c=this.rgb[0]/255,d=this.rgb[1]/255,e=this.rgb[2]/255,f=this.alpha,g=Math.max(c,d,e),h=Math.min(c,d,e),i=g,j=g-h;if(b=0===g?0:j/g,g===h)a=0;else{switch(g){case c:a=(d-e)/j+(e>d?6:0);break;case d:a=(e-c)/j+2;break;case e:a=(c-d)/j+4}a/=6}return{h:360*a,s:b,v:i,a:f}},toARGB:function(){return b([255*this.alpha].concat(this.rgb))},compare:function(a){return a.rgb?a.rgb[0]===this.rgb[0]&&a.rgb[1]===this.rgb[1]&&a.rgb[2]===this.rgb[2]&&a.alpha===this.alpha?0:-1:-1}},a.Color.fromKeyword=function(b){if(b=b.toLowerCase(),a.colors.hasOwnProperty(b))return new a.Color(a.colors[b].slice(1));if(b===d){var c=new a.Color([0,0,0],0);return c.isTransparentKeyword=!0,c}}}(c("../tree")),function(a){a.Comment=function(a,b,c,d){this.value=a,this.silent=!!b,this.currentFileInfo=d},a.Comment.prototype={type:"Comment",genCSS:function(b,c){this.debugInfo&&c.add(a.debugInfo(b,this),this.currentFileInfo,this.index),c.add(this.value.trim())},toCSS:a.toCSS,isSilent:function(a){var b=this.currentFileInfo&&this.currentFileInfo.reference&&!this.isReferenced,c=a.compress&&!this.value.match(/^\/\*!/);return this.silent||b||c},eval:function(){return this},markReferenced:function(){this.isReferenced=!0}}}(c("../tree")),function(a){a.Condition=function(a,b,c,d,e){this.op=a.trim(),this.lvalue=b,this.rvalue=c,this.index=d,this.negate=e},a.Condition.prototype={type:"Condition",accept:function(a){this.lvalue=a.visit(this.lvalue),this.rvalue=a.visit(this.rvalue)},eval:function(a){var b,c=this.lvalue.eval(a),d=this.rvalue.eval(a),e=this.index;return b=function(a){switch(a){case"and":return c&&d;case"or":return c||d;default:if(c.compare)b=c.compare(d);else{if(!d.compare)throw{type:"Type",message:"Unable to perform comparison",index:e};b=d.compare(c)}switch(b){case-1:return"<"===a||"=<"===a||"<="===a;case 0:return"="===a||">="===a||"=<"===a||"<="===a;case 1:return">"===a||">="===a}}}(this.op),this.negate?!b:b}}}(c("../tree")),function(a){a.Dimension=function(c,d){this.value=parseFloat(c),this.unit=d&&d instanceof a.Unit?d:new a.Unit(d?[d]:b)},a.Dimension.prototype={type:"Dimension",accept:function(a){this.unit=a.visit(this.unit)},eval:function(){return this},toColor:function(){return new a.Color([this.value,this.value,this.value])},genCSS:function(b,c){if(b&&b.strictUnits&&!this.unit.isSingular())throw new Error("Multiple units in dimension. Correct the units or use the unit function. Bad unit: "+this.unit.toString());var d=a.fround(b,this.value),e=String(d);if(0!==d&&1e-6>d&&d>-1e-6&&(e=d.toFixed(20).replace(/0+$/,"")),b&&b.compress){if(0===d&&this.unit.isLength())return void c.add(e);d>0&&1>d&&(e=e.substr(1))}c.add(e),this.unit.genCSS(b,c)},toCSS:a.toCSS,operate:function(b,c,d){var e=a.operate(b,c,this.value,d.value),f=this.unit.clone();if("+"===c||"-"===c)if(0===f.numerator.length&&0===f.denominator.length)f.numerator=d.unit.numerator.slice(0),f.denominator=d.unit.denominator.slice(0);else if(0===d.unit.numerator.length&&0===f.denominator.length);else{if(d=d.convertTo(this.unit.usedUnits()),b.strictUnits&&d.unit.toString()!==f.toString())throw new Error("Incompatible units. Change the units or use the unit function. Bad units: '"+f.toString()+"' and '"+d.unit.toString()+"'.");e=a.operate(b,c,this.value,d.value)}else"*"===c?(f.numerator=f.numerator.concat(d.unit.numerator).sort(),f.denominator=f.denominator.concat(d.unit.denominator).sort(),f.cancel()):"/"===c&&(f.numerator=f.numerator.concat(d.unit.denominator).sort(),f.denominator=f.denominator.concat(d.unit.numerator).sort(),f.cancel());return new a.Dimension(e,f)},compare:function(b){if(b instanceof a.Dimension){var c=this.unify(),d=b.unify(),e=c.value,f=d.value;return f>e?-1:e>f?1:d.unit.isEmpty()||0===c.unit.compare(d.unit)?0:-1}return-1},unify:function(){return this.convertTo({length:"m",duration:"s",angle:"rad"})},convertTo:function(b){var c,d,e,f,g,h=this.value,i=this.unit.clone(),j={};if("string"==typeof b){for(c in a.UnitConversions)a.UnitConversions[c].hasOwnProperty(b)&&(j={},j[c]=b);b=j}g=function(a,b){return e.hasOwnProperty(a)?(b?h/=e[a]/e[f]:h*=e[a]/e[f],f):a};for(d in b)b.hasOwnProperty(d)&&(f=b[d],e=a.UnitConversions[d],i.map(g));return i.cancel(),new a.Dimension(h,i)}},a.UnitConversions={length:{m:1,cm:.01,mm:.001,"in":.0254,pt:.0254/72,pc:.0254/72*12},duration:{s:1,ms:.001},angle:{rad:1/(2*Math.PI),deg:1/360,grad:.0025,turn:1}},a.Unit=function(a,b,c){this.numerator=a?a.slice(0).sort():[],this.denominator=b?b.slice(0).sort():[],this.backupUnit=c},a.Unit.prototype={type:"Unit",clone:function(){return new a.Unit(this.numerator.slice(0),this.denominator.slice(0),this.backupUnit)},genCSS:function(a,b){this.numerator.length>=1?b.add(this.numerator[0]):this.denominator.length>=1?b.add(this.denominator[0]):a&&a.strictUnits||!this.backupUnit||b.add(this.backupUnit)},toCSS:a.toCSS,toString:function(){var a,b=this.numerator.join("*");for(a=0;a0)for(b=0;e>b;b++)this.numerator.push(a);else if(0>e)for(b=0;-e>b;b++)this.denominator.push(a)}0===this.numerator.length&&0===this.denominator.length&&c&&(this.backupUnit=c),this.numerator.sort(),this.denominator.sort()}}}(c("../tree")),function(a){a.Directive=function(b,c,d,e){this.name=b,Array.isArray(c)?(this.rules=[new a.Ruleset(null,c)],this.rules[0].allowImports=!0):this.value=c,this.index=d,this.currentFileInfo=e},a.Directive.prototype={type:"Directive",accept:function(a){this.rules&&(this.rules=a.visitArray(this.rules)),this.value&&(this.value=a.visit(this.value))},genCSS:function(b,c){c.add(this.name,this.currentFileInfo,this.index),this.rules?a.outputRuleset(b,c,this.rules):(c.add(" "),this.value.genCSS(b,c),c.add(";"))},toCSS:a.toCSS,eval:function(b){var c=this;return this.rules&&(b.frames.unshift(this),c=new a.Directive(this.name,null,this.index,this.currentFileInfo),c.rules=[this.rules[0].eval(b)],c.rules[0].root=!0,b.frames.shift()),c},variable:function(b){return a.Ruleset.prototype.variable.call(this.rules[0],b)},find:function(){return a.Ruleset.prototype.find.apply(this.rules[0],arguments)},rulesets:function(){return a.Ruleset.prototype.rulesets.apply(this.rules[0])},markReferenced:function(){var a,b;if(this.isReferenced=!0,this.rules)for(b=this.rules[0].rules,a=0;a":" > ","|":"|","^":" ^ ","^^":" ^^ "},_outputMapCompressed:{"":""," ":" ",":":" :","+":"+","~":"~",">":">","|":"|","^":"^","^^":"^^"},genCSS:function(a,b){b.add((a.compress?this._outputMapCompressed:this._outputMap)[this.value])},toCSS:a.toCSS}}(c("../tree")),function(a){a.Expression=function(a){this.value=a},a.Expression.prototype={type:"Expression",accept:function(a){this.value&&(this.value=a.visitArray(this.value))},eval:function(b){var c,d=this.parens&&!this.parensInOp,e=!1;return d&&b.inParenthesis(),this.value.length>1?c=new a.Expression(this.value.map(function(a){return a.eval(b)})):1===this.value.length?(this.value[0].parens&&!this.value[0].parensInOp&&(e=!0),c=this.value[0].eval(b)):c=this,d&&b.outOfParenthesis(),this.parens&&this.parensInOp&&!b.isMathOn()&&!e&&(c=new a.Paren(c)),c},genCSS:function(a,b){for(var c=0;c0&&c.length&&""===c[0].combinator.value&&(c[0].combinator.value=" "),d=d.concat(a[b].elements);this.selfSelectors=[{elements:d}]}}}(c("../tree")),function(a){a.Import=function(a,c,d,e,f){if(this.options=d,this.index=e,this.path=a,this.features=c,this.currentFileInfo=f,this.options.less!==b||this.options.inline)this.css=!this.options.less||this.options.inline;else{var g=this.getPath();g&&/css([\?;].*)?$/.test(g)&&(this.css=!0)}},a.Import.prototype={type:"Import",accept:function(a){this.features&&(this.features=a.visit(this.features)),this.path=a.visit(this.path),!this.options.inline&&this.root&&(this.root=a.visit(this.root))},genCSS:function(a,b){this.css&&(b.add("@import ",this.currentFileInfo,this.index),this.path.genCSS(a,b),this.features&&(b.add(" "),this.features.genCSS(a,b)),b.add(";"))},toCSS:a.toCSS,getPath:function(){if(this.path instanceof a.Quoted){var c=this.path.value;return this.css!==b||/(\.[a-z]*$)|([\?;].*)$/.test(c)?c:c+".less"}return this.path instanceof a.URL?this.path.value.value:null},evalForImport:function(b){return new a.Import(this.path.eval(b),this.features,this.options,this.index,this.currentFileInfo)},evalPath:function(b){var c=this.path.eval(b),d=this.currentFileInfo&&this.currentFileInfo.rootpath;if(!(c instanceof a.URL)){if(d){var e=c.value;e&&b.isPathRelative(e)&&(c.value=d+e)}c.value=b.normalizePath(c.value)}return c},eval:function(b){var c,d=this.features&&this.features.eval(b);if(this.skip)return[];if(this.options.inline){var e=new a.Anonymous(this.root,0,{filename:this.importedFilename},!0);return this.features?new a.Media([e],this.features.value):[e]}if(this.css){var f=new a.Import(this.evalPath(b),d,this.options,this.index);if(!f.css&&this.error)throw this.error;return f}return c=new a.Ruleset(null,this.root.rules.slice(0)),c.evalImports(b),this.features?new a.Media(c.rules,this.features.value):c.rules}}}(c("../tree")),function(a){a.JavaScript=function(a,b,c){this.escaped=c,this.expression=a,this.index=b},a.JavaScript.prototype={type:"JavaScript",eval:function(b){var c,d=this,e={},f=this.expression.replace(/@\{([\w-]+)\}/g,function(c,e){return a.jsify(new a.Variable("@"+e,d.index).eval(b))});try{f=new Function("return ("+f+")")}catch(g){throw{message:"JavaScript evaluation error: "+g.message+" from `"+f+"`",index:this.index}}var h=b.frames[0].variables();for(var i in h)h.hasOwnProperty(i)&&(e[i.slice(1)]={value:h[i].value,toJS:function(){return this.value.eval(b).toCSS()}});try{c=f.call(e)}catch(g){throw{message:"JavaScript evaluation error: '"+g.name+": "+g.message.replace(/["]/g,"'")+"'",index:this.index}}return"number"==typeof c?new a.Dimension(c):"string"==typeof c?new a.Quoted('"'+c+'"',c,this.escaped,this.index):new a.Anonymous(Array.isArray(c)?c.join(", "):c)}}}(c("../tree")),function(a){a.Keyword=function(a){this.value=a},a.Keyword.prototype={type:"Keyword",eval:function(){return this},genCSS:function(a,b){b.add(this.value)},toCSS:a.toCSS,compare:function(b){return b instanceof a.Keyword?b.value===this.value?0:1:-1}},a.True=new a.Keyword("true"),a.False=new a.Keyword("false")}(c("../tree")),function(a){a.Media=function(b,c,d,e){this.index=d,this.currentFileInfo=e;var f=this.emptySelectors();this.features=new a.Value(c),this.rules=[new a.Ruleset(f,b)],this.rules[0].allowImports=!0},a.Media.prototype={type:"Media",accept:function(a){this.features&&(this.features=a.visit(this.features)),this.rules&&(this.rules=a.visitArray(this.rules))},genCSS:function(b,c){c.add("@media ",this.currentFileInfo,this.index),this.features.genCSS(b,c),a.outputRuleset(b,c,this.rules)},toCSS:a.toCSS,eval:function(b){b.mediaBlocks||(b.mediaBlocks=[],b.mediaPath=[]);var c=new a.Media(null,[],this.index,this.currentFileInfo);this.debugInfo&&(this.rules[0].debugInfo=this.debugInfo,c.debugInfo=this.debugInfo);var d=!1;b.strictMath||(d=!0,b.strictMath=!0);try{c.features=this.features.eval(b)}finally{d&&(b.strictMath=!1)}return b.mediaPath.push(c),b.mediaBlocks.push(c),b.frames.unshift(this.rules[0]),c.rules=[this.rules[0].eval(b)],b.frames.shift(),b.mediaPath.pop(),0===b.mediaPath.length?c.evalTop(b):c.evalNested(b)},variable:function(b){return a.Ruleset.prototype.variable.call(this.rules[0],b)},find:function(){return a.Ruleset.prototype.find.apply(this.rules[0],arguments)},rulesets:function(){return a.Ruleset.prototype.rulesets.apply(this.rules[0])},emptySelectors:function(){var b=new a.Element("","&",this.index,this.currentFileInfo),c=[new a.Selector([b],null,null,this.index,this.currentFileInfo)];return c[0].mediaEmpty=!0,c},markReferenced:function(){var a,b=this.rules[0].rules;for(this.isReferenced=!0,a=0;a1){var d=this.emptySelectors();c=new a.Ruleset(d,b.mediaBlocks),c.multiMedia=!0}return delete b.mediaBlocks,delete b.mediaPath,c},evalNested:function(b){var c,d,e=b.mediaPath.concat([this]);for(c=0;c0;c--)b.splice(c,0,new a.Anonymous("and"));return new a.Expression(b)})),new a.Ruleset([],[])},permute:function(a){if(0===a.length)return[];if(1===a.length)return a[0];for(var b=[],c=this.permute(a.slice(1)),d=0;d0){for(j=!0,g=0;gh;h++)s.value(h),r[h]=d.matchCondition(e,b);(r[0]||r[1])&&(r[0]!=r[1]&&(l.group=r[1]?u:v),q.push(l))}else q.push(l);p=!0}}for(s.reset(),n=[0,0,0],g=0;g0)m=v;else if(m=u,n[u]+n[v]>1)throw{type:"Runtime",message:"Ambiguous use of `default()` found when matching for `"+this.format(e)+"`",index:this.index,filename:this.currentFileInfo.filename};for(g=0;gthis.params.length)return!1}c=Math.min(d,this.arity);for(var e=0;c>e;e++)if(!this.params[e].name&&!this.params[e].variadic&&a[e].value.eval(b).toCSS()!=this.params[e].value.eval(b).toCSS())return!1;return!0}}}(c("../tree")),function(a){a.Negative=function(a){this.value=a},a.Negative.prototype={type:"Negative",accept:function(a){this.value=a.visit(this.value)},genCSS:function(a,b){b.add("-"),this.value.genCSS(a,b)},toCSS:a.toCSS,eval:function(b){return b.isMathOn()?new a.Operation("*",[new a.Dimension(-1),this.value]).eval(b):new a.Negative(this.value.eval(b))}}}(c("../tree")),function(a){a.Operation=function(a,b,c){this.op=a.trim(),this.operands=b,this.isSpaced=c},a.Operation.prototype={type:"Operation",accept:function(a){this.operands=a.visit(this.operands)},eval:function(b){var c=this.operands[0].eval(b),d=this.operands[1].eval(b);if(b.isMathOn()){if(c instanceof a.Dimension&&d instanceof a.Color&&(c=c.toColor()),d instanceof a.Dimension&&c instanceof a.Color&&(d=d.toColor()),!c.operate)throw{type:"Operation",message:"Operation on an invalid type"};return c.operate(b,this.op,d)}return new a.Operation(this.op,[c,d],this.isSpaced)},genCSS:function(a,b){this.operands[0].genCSS(a,b),this.isSpaced&&b.add(" "),b.add(this.op),this.isSpaced&&b.add(" "),this.operands[1].genCSS(a,b)},toCSS:a.toCSS},a.operate=function(a,b,c,d){switch(b){case"+":return c+d;case"-":return c-d;case"*":return c*d;case"/":return c/d}}}(c("../tree")),function(a){a.Paren=function(a){this.value=a},a.Paren.prototype={type:"Paren",accept:function(a){this.value=a.visit(this.value)},genCSS:function(a,b){b.add("("),this.value.genCSS(a,b),b.add(")")},toCSS:a.toCSS,eval:function(b){return new a.Paren(this.value.eval(b))}}}(c("../tree")),function(a){a.Quoted=function(a,b,c,d,e){this.escaped=c,this.value=b||"",this.quote=a.charAt(0),this.index=d,this.currentFileInfo=e},a.Quoted.prototype={type:"Quoted",genCSS:function(a,b){this.escaped||b.add(this.quote,this.currentFileInfo,this.index),b.add(this.value),this.escaped||b.add(this.quote)},toCSS:a.toCSS,eval:function(b){var c=this,d=this.value.replace(/`([^`]+)`/g,function(d,e){return new a.JavaScript(e,c.index,!0).eval(b).value}).replace(/@\{([\w-]+)\}/g,function(d,e){var f=new a.Variable("@"+e,c.index,c.currentFileInfo).eval(b,!0);return f instanceof a.Quoted?f.value:f.toCSS()});return new a.Quoted(this.quote+d+this.quote,d,this.escaped,this.index,this.currentFileInfo)},compare:function(a){if(!a.toCSS)return-1;var b=this.toCSS(),c=a.toCSS();return b===c?0:c>b?-1:1}}}(c("../tree")),function(a){function b(a,b){var c,d="",e=b.length,f={add:function(a){d+=a}};for(c=0;e>c;c++)b[c].eval(a).genCSS(a,f);return d}a.Rule=function(b,c,d,e,f,g,h){this.name=b,this.value=c instanceof a.Value?c:new a.Value([c]),this.important=d?" "+d.trim():"",this.merge=e,this.index=f,this.currentFileInfo=g,this.inline=h||!1,this.variable=b.charAt&&"@"===b.charAt(0)},a.Rule.prototype={type:"Rule",accept:function(a){this.value=a.visit(this.value)},genCSS:function(a,b){b.add(this.name+(a.compress?":":": "),this.currentFileInfo,this.index);try{this.value.genCSS(a,b)}catch(c){throw c.index=this.index,c.filename=this.currentFileInfo.filename,c}b.add(this.important+(this.inline||a.lastRule&&a.compress?"":";"),this.currentFileInfo,this.index)},toCSS:a.toCSS,eval:function(c){var d=!1,e=this.name;"string"!=typeof e&&(e=1===e.length&&e[0]instanceof a.Keyword?e[0].value:b(c,e)),"font"!==e||c.strictMath||(d=!0,c.strictMath=!0);try{return new a.Rule(e,this.value.eval(c),this.important,this.merge,this.index,this.currentFileInfo,this.inline)}catch(f){throw f.index=f.index||this.index,f}finally{d&&(c.strictMath=!1)}},makeImportant:function(){return new a.Rule(this.name,this.value,"!important",this.merge,this.index,this.currentFileInfo,this.inline)}}}(c("../tree")),function(a){a.Ruleset=function(a,b,c){this.selectors=a,this.rules=b,this._lookups={},this.strictImports=c},a.Ruleset.prototype={type:"Ruleset",accept:function(a){this.paths?a.visitArray(this.paths,!0):this.selectors&&(this.selectors=a.visitArray(this.selectors)),this.rules&&this.rules.length&&(this.rules=a.visitArray(this.rules))},eval:function(b){var c,d,e,f=this.selectors,g=a.defaultFunc;if(f&&(d=f.length)){for(c=[],g.error({type:"Syntax",message:"it is currently only allowed in parametric mixin guards,"}),e=0;d>e;e++)c.push(f[e].eval(b));g.reset()}var h,i,j=this.rules?this.rules.slice(0):null,k=new a.Ruleset(c,j,this.strictImports);k.originalRuleset=this,k.root=this.root,k.firstRoot=this.firstRoot,k.allowImports=this.allowImports,this.debugInfo&&(k.debugInfo=this.debugInfo);var l=b.frames;l.unshift(k);var m=b.selectors;m||(b.selectors=m=[]),m.unshift(this.selectors),(k.root||k.allowImports||!k.strictImports)&&k.evalImports(b);var n=k.rules,o=n?n.length:0;for(e=0;o>e;e++)n[e]instanceof a.mixin.Definition&&(n[e].frames=l.slice(0));var p=b.mediaBlocks&&b.mediaBlocks.length||0;for(e=0;o>e;e++)n[e]instanceof a.mixin.Call&&(j=n[e].eval(b).filter(function(b){return b instanceof a.Rule&&b.variable?!k.variable(b.name):!0}),n.splice.apply(n,[e,1].concat(j)),o+=j.length-1,e+=j.length-1,k.resetCache());for(e=0;eb;b++)c=g[b],(c instanceof d||c instanceof e)&&f.push(c);return f},prependRule:function(a){var b=this.rules;b?b.unshift(a):this.rules=[a]},find:function(b,c){c=c||this;var d,e=[],f=b.toCSS();return f in this._lookups?this._lookups[f]:(this.rulesets().forEach(function(f){if(f!==c)for(var g=0;gd?Array.prototype.push.apply(e,f.find(new a.Selector(b.elements.slice(d)),c)):e.push(f);break}}),this._lookups[f]=e,e)},genCSS:function(b,c){var d,e,f,g,h,i,j=[],k=[];b.tabLevel=b.tabLevel||0,this.root||b.tabLevel++;var l,m=b.compress?"":Array(b.tabLevel+1).join(" "),n=b.compress?"":Array(b.tabLevel).join(" ");for(d=0;dd;d++)if(i=p[d],o=i.length)for(d>0&&c.add(l),b.firstSelector=!0,i[0].genCSS(b,c),b.firstSelector=!1,e=1;o>e;e++)i[e].genCSS(b,c);c.add((b.compress?"{":" {\n")+m)}for(d=0;dd;d++)l&&c.add(l),k[d].genCSS(b,c);c.isEmpty()||b.compress||!this.firstRoot||c.add("\n")},toCSS:a.toCSS,markReferenced:function(){for(var a=0;a0&&this.mergeElementsOnToSelectors(r,i),f=0;f0&&(k[0].elements=k[0].elements.slice(0),k[0].elements.push(new a.Element(j.combinator,"",j.index,j.currentFileInfo))),s.push(k);else for(g=0;g0?(m=k.slice(0),q=m.pop(),o=d.createDerived(q.elements.slice(0)),p=!1):o=d.createDerived([]),l.length>1&&(n=n.concat(l.slice(1))),l.length>0&&(p=!1,o.elements.push(new a.Element(j.combinator,l[0].elements[0].value,j.index,j.currentFileInfo)),o.elements=o.elements.concat(l[0].elements.slice(1))),p||m.push(o),m=m.concat(n),s.push(m);i=s,r=[]}for(r.length>0&&this.mergeElementsOnToSelectors(r,i),e=0;e0&&b.push(i[e])}else if(c.length>0)for(e=0;e0?e[e.length-1]=e[e.length-1].createDerived(e[e.length-1].elements.concat(b)):e.push(new a.Selector(b))}}}(c("../tree")),function(a){a.Selector=function(a,b,c,d,e,f){this.elements=a,this.extendList=b,this.condition=c,this.currentFileInfo=e||{},this.isReferenced=f,c||(this.evaldCondition=!0)},a.Selector.prototype={type:"Selector",accept:function(a){this.elements&&(this.elements=a.visitArray(this.elements)),this.extendList&&(this.extendList=a.visitArray(this.extendList)),this.condition&&(this.condition=a.visit(this.condition))},createDerived:function(b,c,d){d=null!=d?d:this.evaldCondition;var e=new a.Selector(b,c||this.extendList,null,this.index,this.currentFileInfo,this.isReferenced);return e.evaldCondition=d,e.mediaEmpty=this.mediaEmpty,e},match:function(a){var b,c,d=this.elements,e=d.length;if(a.CacheElements(),b=a._elements.length,0===b||b>e)return 0;for(c=0;b>c;c++)if(d[c].value!==a._elements[c])return 0;return b},CacheElements:function(){var a,b,c,d="";if(!this._elements){for(a=this.elements.length,c=0;a>c;c++)if(b=this.elements[c],d+=b.combinator.value,b.value.value){if("string"!=typeof b.value.value){d="";break}d+=b.value.value}else d+=b.value;this._elements=d.match(/[,&#\.\w-]([\w-]|(\\.))*/g),this._elements?"&"===this._elements[0]&&this._elements.shift():this._elements=[]}},isJustParentSelector:function(){return!this.mediaEmpty&&1===this.elements.length&&"&"===this.elements[0].value&&(" "===this.elements[0].combinator.value||""===this.elements[0].combinator.value)},eval:function(a){var b=this.condition&&this.condition.eval(a),c=this.elements,d=this.extendList;return c=c&&c.map(function(b){return b.eval(a)}),d=d&&d.map(function(b){return b.eval(a)}),this.createDerived(c,d,b)},genCSS:function(a,b){var c,d;if(a&&a.firstSelector||""!==this.elements[0].combinator.value||b.add(" ",this.currentFileInfo,this.index),!this._css)for(c=0;cc;c++)this.visit(a[c]);return a}var e=[];for(c=0;d>c;c++){var f=this.visit(a[c]);f.splice?f.length&&this.flatten(f,e):e.push(f)}return e},flatten:function(a,b){b||(b=[]);var c,d,e,f,g,h;for(d=0,c=a.length;c>d;d++)if(e=a[d],e.splice)for(g=0,f=e.length;f>g;g++)h=e[g],h.splice?h.length&&this.flatten(h,b):b.push(h);else b.push(e);return b}}}(c("./tree")),function(a){a.importVisitor=function(b,c,d){this._visitor=new a.visitor(this),this._importer=b,this._finish=c,this.env=d||new a.evalEnv,this.importCount=0},a.importVisitor.prototype={isReplacing:!0,run:function(a){var b;try{this._visitor.visit(a)}catch(c){b=c}this.isFinished=!0,0===this.importCount&&this._finish(b)},visitImport:function(b,c){var d,e=this,f=b.options.inline;if(!b.css||f){try{d=b.evalForImport(this.env)}catch(g){g.filename||(g.index=b.index,g.filename=b.currentFileInfo.filename),b.css=!0,b.error=g}if(d&&(!d.css||f)){b=d,this.importCount++;var h=new a.evalEnv(this.env,this.env.frames.slice(0));b.options.multiple&&(h.importMultiple=!0),this._importer.push(b.getPath(),b.currentFileInfo,b.options,function(c,d,g,i){c&&!c.filename&&(c.index=b.index,c.filename=b.currentFileInfo.filename),g&&!h.importMultiple&&(b.skip=g);var j=function(a){e.importCount--,0===e.importCount&&e.isFinished&&e._finish(a)};return!d||(b.root=d,b.importedFilename=i,f||b.skip)?void j():void new a.importVisitor(e._importer,j,h).run(d)})}}return c.visitDeeper=!1,b},visitRule:function(a,b){return b.visitDeeper=!1,a},visitDirective:function(a){return this.env.frames.unshift(a),a},visitDirectiveOut:function(){this.env.frames.shift()},visitMixinDefinition:function(a){return this.env.frames.unshift(a),a},visitMixinDefinitionOut:function(){this.env.frames.shift()},visitRuleset:function(a){return this.env.frames.unshift(a),a},visitRulesetOut:function(){this.env.frames.shift()},visitMedia:function(a){return this.env.frames.unshift(a.ruleset),a},visitMediaOut:function(){this.env.frames.shift()}}}(c("./tree")),function(a){a.joinSelectorVisitor=function(){this.contexts=[[]],this._visitor=new a.visitor(this)},a.joinSelectorVisitor.prototype={run:function(a){return this._visitor.visit(a)},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){var b,c=this.contexts[this.contexts.length-1],d=[];this.contexts.push(d),a.root||(b=a.selectors,b&&(b=b.filter(function(a){return a.getIsOutput()}),a.selectors=b.length?b:b=null,b&&a.joinSelectors(d,c,b)),b||(a.rules=null),a.paths=d)},visitRulesetOut:function(){this.contexts.length=this.contexts.length-1},visitMedia:function(a){var b=this.contexts[this.contexts.length-1];a.rules[0].root=0===b.length||b[0].multiMedia}}}(c("./tree")),function(a){a.toCSSVisitor=function(b){this._visitor=new a.visitor(this),this._env=b},a.toCSSVisitor.prototype={isReplacing:!0,run:function(a){return this._visitor.visit(a)},visitRule:function(a){return a.variable?[]:a},visitMixinDefinition:function(){return[]},visitExtend:function(){return[]},visitComment:function(a){return a.isSilent(this._env)?[]:a},visitMedia:function(a,b){return a.accept(this._visitor),b.visitDeeper=!1,a.rules.length?a:[]},visitDirective:function(b){if(b.currentFileInfo.reference&&!b.isReferenced)return[];if("@charset"===b.name){if(this.charset){if(b.debugInfo){var c=new a.Comment("/* "+b.toCSS(this._env).replace(/\n/g,"")+" */\n");return c.debugInfo=b.debugInfo,this._visitor.visit(c)}return[]}this.charset=!0}return b},checkPropertiesInRoot:function(b){for(var c,d=0;d0)&&e.splice(0,0,b);else{b.paths&&(b.paths=b.paths.filter(function(b){var c;for(" "===b[0].elements[0].combinator.value&&(b[0].elements[0].combinator=new a.Combinator("")),c=0;ch;)d=f[h],d&&d.rules?(e.push(this._visitor.visit(d)),f.splice(h,1),g--):h++;g>0?b.accept(this._visitor):b.rules=null,c.visitDeeper=!1,f=b.rules,f&&(this._mergeRules(f),f=b.rules),f&&(this._removeDuplicateRules(f),f=b.rules),f&&f.length>0&&b.paths.length>0&&e.splice(0,0,b)}return 1===e.length?e[0]:e},_removeDuplicateRules:function(b){if(b){var c,d,e,f={};for(e=b.length-1;e>=0;e--)if(d=b[e],d instanceof a.Rule)if(f[d.name]){c=f[d.name],c instanceof a.Rule&&(c=f[d.name]=[f[d.name].toCSS(this._env)]);var g=d.toCSS(this._env);-1!==c.indexOf(g)?b.splice(e,1):c.push(g)}else f[d.name]=d}},_mergeRules:function(b){if(b){for(var c,d,e,f={},g=0;g1&&(d=c[0],d.value=new a.Value(c.map(function(a){return a.value})))})}}}}(c("./tree")),function(a){a.extendFinderVisitor=function(){this._visitor=new a.visitor(this),this.contexts=[],this.allExtendsStack=[[]]},a.extendFinderVisitor.prototype={run:function(a){return a=this._visitor.visit(a),a.allExtends=this.allExtendsStack[0],a},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitRuleset:function(b){if(!b.root){var c,d,e,f,g=[],h=b.rules,i=h?h.length:0;for(c=0;i>c;c++)b.rules[c]instanceof a.Extend&&(g.push(h[c]),b.extendOnEveryPath=!0);var j=b.paths;for(c=0;c=0||(i=[k.selfSelectors[0]],g=n.findMatch(j,i),g.length&&j.selfSelectors.forEach(function(b){h=n.extendSelector(g,i,b),l=new a.Extend(k.selector,k.option,0),l.selfSelectors=h,h[h.length-1].extendList=[l],m.push(l),l.ruleset=k.ruleset,l.parent_ids=l.parent_ids.concat(k.parent_ids,j.parent_ids),k.firstExtendOnThisSelectorPath&&(l.firstExtendOnThisSelectorPath=!0,k.ruleset.paths.push(h))}));if(m.length){if(this.extendChainCount++,d>100){var o="{unable to calculate}",p="{unable to calculate}";try{o=m[0].selfSelectors[0].toCSS(),p=m[0].selector.toCSS()}catch(q){}throw{message:"extend circular reference detected. One of the circular extends is currently:"+o+":extend("+p+")"}}return m.concat(n.doExtendChaining(m,c,d+1))}return m},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitSelector:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){if(!a.root){var b,c,d,e,f=this.allExtendsStack[this.allExtendsStack.length-1],g=[],h=this;for(d=0;d0&&k[i.matched].combinator.value!==g?i=null:i.matched++,i&&(i.finished=i.matched===k.length,i.finished&&!a.allowAfter&&(e+1j&&k>0&&(l[l.length-1].elements=l[l.length-1].elements.concat(c[j].elements.slice(k)),k=0,j++),i=f.elements.slice(k,h.index).concat([g]).concat(d.elements.slice(1)),j===h.pathIndex&&e>0?l[l.length-1].elements=l[l.length-1].elements.concat(i):(l=l.concat(c.slice(j,h.pathIndex)),l.push(new a.Selector(i))),j=h.endPathIndex,k=h.endPathElementIndex,k>=c[j].elements.length&&(k=0,j++);return j0&&(l[l.length-1].elements=l[l.length-1].elements.concat(c[j].elements.slice(k)),j++),l=l.concat(c.slice(j,c.length))},visitRulesetOut:function(){},visitMedia:function(a){var b=a.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length-1]);b=b.concat(this.doExtendChaining(b,a.allExtends)),this.allExtendsStack.push(b)},visitMediaOut:function(){this.allExtendsStack.length=this.allExtendsStack.length-1},visitDirective:function(a){var b=a.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length-1]);b=b.concat(this.doExtendChaining(b,a.allExtends)),this.allExtendsStack.push(b)},visitDirectiveOut:function(){this.allExtendsStack.length=this.allExtendsStack.length-1}}}(c("./tree")),function(a){a.sourceMapOutput=function(a){this._css=[],this._rootNode=a.rootNode,this._writeSourceMap=a.writeSourceMap,this._contentsMap=a.contentsMap,this._contentsIgnoredCharsMap=a.contentsIgnoredCharsMap,this._sourceMapFilename=a.sourceMapFilename,this._outputFilename=a.outputFilename,this._sourceMapURL=a.sourceMapURL,a.sourceMapBasepath&&(this._sourceMapBasepath=a.sourceMapBasepath.replace(/\\/g,"/")),this._sourceMapRootpath=a.sourceMapRootpath,this._outputSourceFiles=a.outputSourceFiles,this._sourceMapGeneratorConstructor=a.sourceMapGenerator||c("source-map").SourceMapGenerator,this._sourceMapRootpath&&"/"!==this._sourceMapRootpath.charAt(this._sourceMapRootpath.length-1)&&(this._sourceMapRootpath+="/"),this._lineNumber=0,this._column=0},a.sourceMapOutput.prototype.normalizeFilename=function(a){return a=a.replace(/\\/g,"/"),this._sourceMapBasepath&&0===a.indexOf(this._sourceMapBasepath)&&(a=a.substring(this._sourceMapBasepath.length),("\\"===a.charAt(0)||"/"===a.charAt(0))&&(a=a.substring(1))),(this._sourceMapRootpath||"")+a},a.sourceMapOutput.prototype.add=function(a,b,c,d){if(a){var e,f,g,h,i;if(b){var j=this._contentsMap[b.filename];this._contentsIgnoredCharsMap[b.filename]&&(c-=this._contentsIgnoredCharsMap[b.filename],0>c&&(c=0),j=j.slice(this._contentsIgnoredCharsMap[b.filename])),j=j.substring(0,c),f=j.split("\n"),h=f[f.length-1]}if(e=a.split("\n"),g=e[e.length-1],b)if(d)for(i=0;i0){var d,e=JSON.stringify(this._sourceMapGenerator.toJSON());this._sourceMapURL?d=this._sourceMapURL:this._sourceMapFilename&&(d=this.normalizeFilename(this._sourceMapFilename)),this._writeSourceMap?this._writeSourceMap(e):d="data:application/json,"+encodeURIComponent(e),d&&this._css.push("/*# sourceMappingURL="+d+" */")}return this._css.join("") +}}(c("./tree"));var x=/^(file|chrome(-extension)?|resource|qrc|app):/.test(location.protocol);v.env=v.env||("127.0.0.1"==location.hostname||"0.0.0.0"==location.hostname||"localhost"==location.hostname||location.port&&location.port.length>0||x?"development":"production");var y={info:2,errors:1,none:0};if(v.logLevel="undefined"!=typeof v.logLevel?v.logLevel:y.info,v.async=v.async||!1,v.fileAsync=v.fileAsync||!1,v.poll=v.poll||(x?1e3:1500),v.functions)for(var z in v.functions)v.functions.hasOwnProperty(z)&&(v.tree.functions[z]=v.functions[z]);var A=/!dumpLineNumbers:(comments|mediaquery|all)/.exec(location.hash);A&&(v.dumpLineNumbers=A[1]);var B=/^text\/(x-)?less$/,C=null,D={};if(v.watch=function(){return v.watchMode||(v.env="development",u()),this.watchMode=!0,!0},v.unwatch=function(){return clearInterval(v.watchTimer),this.watchMode=!1,!1},/!watch/.test(location.hash)&&v.watch(),"development"!=v.env)try{C="undefined"==typeof a.localStorage?null:a.localStorage}catch(E){}var F=document.getElementsByTagName("link");v.sheets=[];for(var G=0;G + +(c) 2009-2012 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library zlib.js released under the following license : +zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License +*/ +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZip=a():"undefined"!=typeof global?global.JSZip=a():"undefined"!=typeof self&&(self.JSZip=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g>2,g=(3&b)<<4|c>>4,h=(15&c)<<2|e>>6,i=63&e,isNaN(c)?h=i=64:isNaN(e)&&(i=64),j=j+d.charAt(f)+d.charAt(g)+d.charAt(h)+d.charAt(i);return j},c.decode=function(a){var b,c,e,f,g,h,i,j="",k=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");k>4,c=(15&g)<<4|h>>2,e=(3&h)<<6|i,j+=String.fromCharCode(b),64!=h&&(j+=String.fromCharCode(c)),64!=i&&(j+=String.fromCharCode(e));return j}},{}],2:[function(a,b){"use strict";function c(){this.compressedSize=0,this.uncompressedSize=0,this.crc32=0,this.compressionMethod=null,this.compressedContent=null}c.prototype={getContent:function(){return null},getCompressedContent:function(){return null}},b.exports=c},{}],3:[function(a,b,c){"use strict";c.STORE={magic:"\x00\x00",compress:function(a){return a},uncompress:function(a){return a},compressInputType:null,uncompressInputType:null},c.DEFLATE=a("./flate")},{"./flate":6}],4:[function(a,b){"use strict";function c(){this.data=null,this.length=0,this.index=0}var d=a("./utils");c.prototype={checkOffset:function(a){this.checkIndex(this.index+a)},checkIndex:function(a){if(this.lengtha)throw new Error("End of data reached (data length = "+this.length+", asked index = "+a+"). Corrupted zip ?")},setIndex:function(a){this.checkIndex(a),this.index=a},skip:function(a){this.setIndex(this.index+a)},byteAt:function(){},readInt:function(a){var b,c=0;for(this.checkOffset(a),b=this.index+a-1;b>=this.index;b--)c=(c<<8)+this.byteAt(b);return this.index+=a,c},readString:function(a){return d.transformTo("string",this.readData(a))},readData:function(){},lastIndexOfSignature:function(){},readDate:function(){var a=this.readInt(4);return new Date((a>>25&127)+1980,(a>>21&15)-1,a>>16&31,a>>11&31,a>>5&63,(31&a)<<1)}},b.exports=c},{"./utils":14}],5:[function(a,b,c){"use strict";c.base64=!1,c.binary=!1,c.dir=!1,c.date=null,c.compression=null},{}],6:[function(a,b,c){"use strict";var d="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,e=a("zlibjs/bin/rawdeflate.min").Zlib,f=a("zlibjs/bin/rawinflate.min").Zlib;c.uncompressInputType=d?"uint8array":"array",c.compressInputType=d?"uint8array":"array",c.magic="\b\x00",c.compress=function(a){var b=new e.RawDeflate(a);return b.compress()},c.uncompress=function(a){var b=new f.RawInflate(a);return b.decompress()}},{"zlibjs/bin/rawdeflate.min":19,"zlibjs/bin/rawinflate.min":20}],7:[function(a,b){"use strict";function c(a,b){this.files={},this.root="",a&&this.load(a,b),this.clone=function(){var a=new c;for(var b in this)"function"!=typeof this[b]&&(a[b]=this[b]);return a}}c.prototype=a("./object"),c.prototype.load=a("./load"),c.support=a("./support"),c.defaults=a("./defaults"),c.utils=a("./utils"),c.base64=a("./base64"),c.compressions=a("./compressions"),b.exports=c},{"./base64":1,"./compressions":3,"./defaults":5,"./load":8,"./object":9,"./support":12,"./utils":14}],8:[function(a,b){"use strict";var c=a("./base64"),d=a("./zipEntries");b.exports=function(a,b){var e,f,g,h;for(b=b||{},b.base64&&(a=c.decode(a)),f=new d(a,b),e=f.files,g=0;gc;c++)d+=String.fromCharCode(255&a),a>>>=8;return d},r=function(){var a,b,c={};for(a=0;a0?a.substring(0,b):""},v=function(a){return"/"!=a.slice(-1)&&(a+="/"),this.files[a]||t.call(this,a,null,{dir:!0}),this.files[a]},w=function(a,b){var c,d=new k;return a._data instanceof k?(d.uncompressedSize=a._data.uncompressedSize,d.crc32=a._data.crc32,0===d.uncompressedSize||a.options.dir?(b=j.STORE,d.compressedContent="",d.crc32=0):a._data.compressionMethod===b.magic?d.compressedContent=a._data.getCompressedContent():(c=a._data.getContent(),d.compressedContent=b.compress(f.transformTo(b.compressInputType,c)))):(c=n(a),(!c||0===c.length||a.options.dir)&&(b=j.STORE,c=""),d.uncompressedSize=c.length,d.crc32=this.crc32(c),d.compressedContent=b.compress(f.transformTo(b.compressInputType,c))),d.compressedSize=d.compressedContent.length,d.compressionMethod=b.magic,d},x=function(a,b,c,d){var e,f,h=(c.compressedContent,this.utf8encode(b.name)),i=h!==b.name,j=b.options,k="",l="";e=j.date.getHours(),e<<=6,e|=j.date.getMinutes(),e<<=5,e|=j.date.getSeconds()/2,f=j.date.getFullYear()-1980,f<<=4,f|=j.date.getMonth()+1,f<<=5,f|=j.date.getDate(),i&&(l=q(1,1)+q(this.crc32(h),4)+h,k+="up"+q(l.length,2)+l);var m="";m+="\n\x00",m+=i?"\x00\b":"\x00\x00",m+=c.compressionMethod,m+=q(e,2),m+=q(f,2),m+=q(c.crc32,4),m+=q(c.compressedSize,4),m+=q(c.uncompressedSize,4),m+=q(h.length,2),m+=q(k.length,2);var n=g.LOCAL_FILE_HEADER+m+h+k,o=g.CENTRAL_FILE_HEADER+"\x00"+m+"\x00\x00\x00\x00\x00\x00"+(b.options.dir===!0?"\x00\x00\x00":"\x00\x00\x00\x00")+q(d,4)+h+k;return{fileRecord:n,dirRecord:o,compressedObject:c}},y=function(){this.data=[]};y.prototype={append:function(a){a=f.transformTo("string",a),this.data.push(a)},finalize:function(){return this.data.join("")}};var z=function(a){this.data=new Uint8Array(a),this.index=0};z.prototype={append:function(a){0!==a.length&&(a=f.transformTo("uint8array",a),this.data.set(a,this.index),this.index+=a.length)},finalize:function(){return this.data}};var A={load:function(){throw new Error("Load method is not defined. Is the file jszip-load.js included ?")},filter:function(a){var b,c,d,e,f=[];for(b in this.files)this.files.hasOwnProperty(b)&&(d=this.files[b],e=new p(d.name,d._data,r(d.options)),c=b.slice(this.root.length,b.length),b.slice(0,this.root.length)===this.root&&a(c,e)&&f.push(e));return f},file:function(a,b,c){if(1===arguments.length){if(f.isRegExp(a)){var d=a;return this.filter(function(a,b){return!b.options.dir&&d.test(a)})}return this.filter(function(b,c){return!c.options.dir&&b===a})[0]||null}return a=this.root+a,t.call(this,a,b,c),this},folder:function(a){if(!a)return this;if(f.isRegExp(a))return this.filter(function(b,c){return c.options.dir&&a.test(b)});var b=this.root+a,c=v.call(this,b),d=this.clone();return d.root=c.name,d},remove:function(a){a=this.root+a;var b=this.files[a];if(b||("/"!=a.slice(-1)&&(a+="/"),b=this.files[a]),b)if(b.options.dir)for(var c=this.filter(function(b,c){return c.name.slice(0,a.length)===a}),d=0;di;i++)h=c?a[i]:a.charCodeAt(i),g=255&(b^h),e=d[g],b=b>>>8^e;return-1^b},utf8encode:function(a){if(c){var b=c.encode(a);return f.transformTo("string",b)}if(e.nodebuffer)return f.transformTo("string",l(a,"utf-8"));for(var d=[],g=0,h=0;hi?d[g++]=String.fromCharCode(i):i>127&&2048>i?(d[g++]=String.fromCharCode(i>>6|192),d[g++]=String.fromCharCode(63&i|128)):(d[g++]=String.fromCharCode(i>>12|224),d[g++]=String.fromCharCode(i>>6&63|128),d[g++]=String.fromCharCode(63&i|128))}return d.join("")},utf8decode:function(a){var b=[],c=0,g=f.getTypeOf(a),h="string"!==g,i=0,j=0,k=0,l=0;if(d)return d.decode(f.transformTo("uint8array",a));if(e.nodebuffer)return f.transformTo("nodebuffer",a).toString("utf-8");for(;ij?(b[c++]=String.fromCharCode(j),i++):j>191&&224>j?(k=h?a[i+1]:a.charCodeAt(i+1),b[c++]=String.fromCharCode((31&j)<<6|63&k),i+=2):(k=h?a[i+1]:a.charCodeAt(i+1),l=h?a[i+2]:a.charCodeAt(i+2),b[c++]=String.fromCharCode((15&j)<<12|(63&k)<<6|63&l),i+=3);return b.join("")}};b.exports=A},{"./base64":1,"./compressedObject":2,"./compressions":3,"./defaults":5,"./nodeBuffer":17,"./signature":10,"./support":12,"./utils":14}],10:[function(a,b,c){"use strict";c.LOCAL_FILE_HEADER="PK",c.CENTRAL_FILE_HEADER="PK",c.CENTRAL_DIRECTORY_END="PK",c.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",c.ZIP64_CENTRAL_DIRECTORY_END="PK",c.DATA_DESCRIPTOR="PK\b"},{}],11:[function(a,b){"use strict";function c(a,b){this.data=a,b||(this.data=e.string2binary(this.data)),this.length=this.data.length,this.index=0}var d=a("./dataReader"),e=a("./utils");c.prototype=new d,c.prototype.byteAt=function(a){return this.data.charCodeAt(a)},c.prototype.lastIndexOfSignature=function(a){return this.data.lastIndexOf(a)},c.prototype.readData=function(a){this.checkOffset(a);var b=this.data.slice(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./dataReader":4,"./utils":14}],12:[function(a,b,c){var d=a("__browserify_process");if(c.base64=!0,c.array=!0,c.string=!0,c.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,c.nodebuffer=!d.browser,c.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)c.blob=!1;else{var e=new ArrayBuffer(0);try{c.blob=0===new Blob([e],{type:"application/zip"}).size}catch(f){try{var g=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,h=new g;h.append(e),c.blob=0===h.getBlob("application/zip").size}catch(f){c.blob=!1}}}},{__browserify_process:18}],13:[function(a,b){"use strict";function c(a){a&&(this.data=a,this.length=this.data.length,this.index=0)}var d=a("./dataReader");c.prototype=new d,c.prototype.byteAt=function(a){return this.data[a]},c.prototype.lastIndexOfSignature=function(a){for(var b=a.charCodeAt(0),c=a.charCodeAt(1),d=a.charCodeAt(2),e=a.charCodeAt(3),f=this.length-4;f>=0;--f)if(this.data[f]===b&&this.data[f+1]===c&&this.data[f+2]===d&&this.data[f+3]===e)return f;return-1},c.prototype.readData=function(a){this.checkOffset(a);var b=this.data.subarray(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./dataReader":4}],14:[function(a,b,c){"use strict";function d(a){return a}function e(a,b){for(var c=0;cg&&b>1;)try{d.push("array"===f||"nodebuffer"===f?String.fromCharCode.apply(null,a.slice(g,Math.min(g+b,e))):String.fromCharCode.apply(null,a.subarray(g,Math.min(g+b,e)))),g+=b}catch(i){b=Math.floor(b/2)}return d.join("")}function g(a,b){for(var c=0;cb?"0":"")+b.toString(16).toUpperCase();return d},c.findCompression=function(a){for(var b in i)if(i.hasOwnProperty(b)&&i[b].magic===a)return i[b];return null},c.isRegExp=function(a){return"[object RegExp]"===Object.prototype.toString.call(a)}},{"./compressions":3,"./nodeBuffer":17,"./support":12}],15:[function(a,b){"use strict";function c(a,b){this.files=[],this.loadOptions=b,a&&this.load(a)}var d=a("./stringReader"),e=a("./nodeBufferReader"),f=a("./uint8ArrayReader"),g=a("./utils"),h=a("./signature"),i=a("./zipEntry"),j=a("./support");c.prototype={checkSignature:function(a){var b=this.reader.readString(4);if(b!==a)throw new Error("Corrupted zip or bug : unexpected signature ("+g.pretty(b)+", expected "+g.pretty(a)+")")},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2),this.zipComment=this.reader.readString(this.zipCommentLength)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.versionMadeBy=this.reader.readString(2),this.versionNeeded=this.reader.readInt(2),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var a,b,c,d=this.zip64EndOfCentralSize-44,e=0;d>e;)a=this.reader.readInt(2),b=this.reader.readInt(4),c=this.reader.readString(b),this.zip64ExtensibleData[a]={id:a,length:b,value:c}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),this.disksCount>1)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var a,b;for(a=0;a0)){var d=c.shift();d()}},!0),function(a){c.push(a),window.postMessage("process-tick","*")}}return function(a){setTimeout(a,0)}}(),c.title="browser",c.browser=!0,c.env={},c.argv=[],c.binding=function(){throw new Error("process.binding is not supported")},c.cwd=function(){return"/"},c.chdir=function(){throw new Error("process.chdir is not supported")}},{}],19:[function(){/** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */ +(function(){"use strict";function a(a,b){var c=a.split("."),d=n;!(c[0]in d)&&d.execScript&&d.execScript("var "+c[0]);for(var e;c.length&&(e=c.shift());)c.length||b===l?d=d[e]?d[e]:d[e]={}:d[e]=b}function b(a,b){if(this.index="number"==typeof b?b:0,this.d=0,this.buffer=a instanceof(o?Uint8Array:Array)?a:new(o?Uint8Array:Array)(32768),2*this.buffer.length<=this.index)throw Error("invalid index");this.buffer.length<=this.index&&c(this)}function c(a){var b,c=a.buffer,d=c.length,e=new(o?Uint8Array:Array)(d<<1);if(o)e.set(c);else for(b=0;d>b;++b)e[b]=c[b];return a.buffer=e}function d(a){this.buffer=new(o?Uint16Array:Array)(2*a),this.length=0}function e(a,b){this.e=w,this.f=0,this.input=o&&a instanceof Array?new Uint8Array(a):a,this.c=0,b&&(b.lazy&&(this.f=b.lazy),"number"==typeof b.compressionType&&(this.e=b.compressionType),b.outputBuffer&&(this.b=o&&b.outputBuffer instanceof Array?new Uint8Array(b.outputBuffer):b.outputBuffer),"number"==typeof b.outputIndex&&(this.c=b.outputIndex)),this.b||(this.b=new(o?Uint8Array:Array)(32768))}function f(a,b){this.length=a,this.g=b}function g(a,b){function c(a,b){var c,d=a.g,e=[],f=0;c=z[a.length],e[f++]=65535&c,e[f++]=c>>16&255,e[f++]=c>>24;var g;switch(m){case 1===d:g=[0,d-1,0];break;case 2===d:g=[1,d-2,0];break;case 3===d:g=[2,d-3,0];break;case 4===d:g=[3,d-4,0];break;case 6>=d:g=[4,d-5,1];break;case 8>=d:g=[5,d-7,1];break;case 12>=d:g=[6,d-9,2];break;case 16>=d:g=[7,d-13,2];break;case 24>=d:g=[8,d-17,3];break;case 32>=d:g=[9,d-25,3];break;case 48>=d:g=[10,d-33,4];break;case 64>=d:g=[11,d-49,4];break;case 96>=d:g=[12,d-65,5];break;case 128>=d:g=[13,d-97,5];break;case 192>=d:g=[14,d-129,6];break;case 256>=d:g=[15,d-193,6];break;case 384>=d:g=[16,d-257,7];break;case 512>=d:g=[17,d-385,7];break;case 768>=d:g=[18,d-513,8];break;case 1024>=d:g=[19,d-769,8];break;case 1536>=d:g=[20,d-1025,9];break;case 2048>=d:g=[21,d-1537,9];break;case 3072>=d:g=[22,d-2049,10];break;case 4096>=d:g=[23,d-3073,10];break;case 6144>=d:g=[24,d-4097,11];break;case 8192>=d:g=[25,d-6145,11];break;case 12288>=d:g=[26,d-8193,12];break;case 16384>=d:g=[27,d-12289,12];break;case 24576>=d:g=[28,d-16385,13];break;case 32768>=d:g=[29,d-24577,13];break;default:throw"invalid distance"}c=g,e[f++]=c[0],e[f++]=c[1],e[f++]=c[2];var h,i;for(h=0,i=e.length;i>h;++h)r[s++]=e[h];u[e[0]]++,v[e[3]]++,t=a.length+b-1,n=null}var d,e,f,g,i,j,k,n,p,q={},r=o?new Uint16Array(2*b.length):[],s=0,t=0,u=new(o?Uint32Array:Array)(286),v=new(o?Uint32Array:Array)(30),w=a.f;if(!o){for(f=0;285>=f;)u[f++]=0;for(f=0;29>=f;)v[f++]=0}for(u[256]=1,d=0,e=b.length;e>d;++d){for(f=i=0,g=3;g>f&&d+f!==e;++f)i=i<<8|b[d+f];if(q[i]===l&&(q[i]=[]),j=q[i],!(0=e){for(n&&c(n,-1),f=0,g=e-d;g>f;++f)p=b[d+f],r[s++]=p,++u[p];break}0h;h++){if(d=c[j-h-1],g=3,k>3){for(i=k;i>3;i--)if(a[d+i-1]!==a[b+i-1])continue a;g=k}for(;258>g&&l>b+g&&a[d+g]===a[b+g];)++g;if(g>k&&(e=d,k=g),258===g)break}return new f(k,b-e)}function i(a,b){var c,e,f,g,h,i=a.length,k=new d(572),l=new(o?Uint8Array:Array)(i);if(!o)for(g=0;i>g;g++)l[g]=0;for(g=0;i>g;++g)0g;++g)c[g]=k.pop(),e[g]=c[g].value;for(f=j(e,e.length,b),g=0,h=c.length;h>g;++g)l[c[g].index]=f[g];return l}function j(a,b,c){function d(a){var c=n[a][p[a]];c===b?(d(a+1),d(a+1)):--l[c],++p[a]}var e,f,g,h,i,j=new(o?Uint16Array:Array)(c),k=new(o?Uint8Array:Array)(c),l=new(o?Uint8Array:Array)(b),m=Array(c),n=Array(c),p=Array(c),q=(1<f;++f)r>q?k[f]=0:(k[f]=1,q-=r),q<<=1,j[c-2-f]=(j[c-1-f]/2|0)+b;for(j[0]=k[0],m[0]=Array(j[0]),n[0]=Array(j[0]),f=1;c>f;++f)j[f]>2*j[f-1]+k[f]&&(j[f]=2*j[f-1]+k[f]),m[f]=Array(j[f]),n[f]=Array(j[f]);for(e=0;b>e;++e)l[e]=c;for(g=0;ge;++e)p[e]=0;for(1===k[c-1]&&(--l[0],++p[c-1]),f=c-2;f>=0;--f){for(h=e=0,i=p[f+1],g=0;ga[e]?(m[f][g]=h,n[f][g]=b,i+=2):(m[f][g]=a[e],n[f][g]=e,++e);p[f]=0,1===k[f]&&d(f)}return l}function k(a){var b,c,d,e,f=new(o?Uint16Array:Array)(a.length),g=[],h=[],i=0;for(b=0,c=a.length;c>b;b++)g[a[b]]=(0|g[a[b]])+1;for(b=1,c=16;c>=b;b++)h[b]=i,i+=0|g[b],i<<=1;for(b=0,c=a.length;c>b;b++)for(i=h[a[b]],h[a[b]]+=1,d=f[b]=0,e=a[b];e>d;d++)f[b]=f[b]<<1|1&i,i>>>=1;return f}var l=void 0,m=!0,n=this,o="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array;b.prototype.a=function(a,b,d){var e,f=this.buffer,g=this.index,h=this.d,i=f[g];if(d&&b>1&&(a=b>8?(u[255&a]<<24|u[a>>>8&255]<<16|u[a>>>16&255]<<8|u[a>>>24&255])>>32-b:u[a]>>8-b),8>b+h)i=i<e;++e)i=i<<1|a>>b-e-1&1,8===++h&&(h=0,f[g++]=u[i],i=0,g===f.length&&(f=c(this)));f[g]=i,this.buffer=f,this.d=h,this.index=g},b.prototype.finish=function(){var a,b=this.buffer,c=this.index;return 0p;++p){for(var r=p,s=r,t=7,r=r>>>1;r;r>>>=1)s<<=1,s|=1&r,--t;q[p]=(s<>>0}var u=q;d.prototype.getParent=function(a){return 2*((a-2)/4|0)},d.prototype.push=function(a,b){var c,d,e,f=this.buffer;for(c=this.length,f[this.length++]=b,f[this.length++]=a;c>0&&(d=this.getParent(c),f[c]>f[d]);)e=f[c],f[c]=f[d],f[d]=e,e=f[c+1],f[c+1]=f[d+1],f[d+1]=e,c=d;return this.length},d.prototype.pop=function(){var a,b,c,d,e,f=this.buffer;for(b=f[0],a=f[1],this.length-=2,f[0]=f[this.length],f[1]=f[this.length+1],e=0;d=2*e+2,!(d>=this.length)&&(d+2f[d]&&(d+=2),f[d]>f[e]);)c=f[e],f[e]=f[d],f[d]=c,c=f[e+1],f[e+1]=f[d+1],f[d+1]=c,e=d;return{index:a,value:b,length:this.length}};var v,w=2,x=[];for(v=0;288>v;v++)switch(m){case 143>=v:x.push([v+48,8]);break;case 255>=v:x.push([v-144+400,9]);break;case 279>=v:x.push([v-256+0,7]);break;case 287>=v:x.push([v-280+192,8]);break;default:throw"invalid literal: "+v}e.prototype.h=function(){var a,c,d,e,f=this.input;switch(this.e){case 0:for(d=0,e=f.length;e>d;){c=o?f.subarray(d,d+65535):f.slice(d,d+65535),d+=c.length;var h=c,j=d===e,n=l,p=l,q=l,r=l,s=l,t=this.b,u=this.c;if(o){for(t=new Uint8Array(this.b.buffer);t.length<=u+h.length+5;)t=new Uint8Array(t.length<<1);t.set(this.b)}if(n=j?1:0,t[u++]=0|n,p=h.length,q=~p+65536&65535,t[u++]=255&p,t[u++]=p>>>8&255,t[u++]=255&q,t[u++]=q>>>8&255,o)t.set(h,u),u+=h.length,t=t.subarray(0,u);else{for(r=0,s=h.length;s>r;++r)t[u++]=h[r];t.length=u}this.c=u,this.b=t}break;case 1:var v=new b(o?new Uint8Array(this.b.buffer):this.b,this.c);v.a(1,1,m),v.a(1,2,m);var y,z,A,B=g(this,f);for(y=0,z=B.length;z>y;y++)if(A=B[y],b.prototype.a.apply(v,x[A]),A>256)v.a(B[++y],B[++y],m),v.a(B[++y],5),v.a(B[++y],B[++y],m);else if(256===A)break;this.b=v.finish(),this.c=this.b.length;break;case w:var C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R=new b(o?new Uint8Array(this.b.buffer):this.b,this.c),S=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],T=Array(19);for(C=w,R.a(1,1,m),R.a(C,2,m),D=g(this,f),H=i(this.j,15),I=k(H),J=i(this.i,7),K=k(J),E=286;E>257&&0===H[E-1];E--);for(F=30;F>1&&0===J[F-1];F--);var U,V,W,X,Y,Z,$=E,_=F,ab=new(o?Uint32Array:Array)($+_),bb=new(o?Uint32Array:Array)(316),cb=new(o?Uint8Array:Array)(19);for(U=V=0;$>U;U++)ab[V++]=H[U];for(U=0;_>U;U++)ab[V++]=J[U];if(!o)for(U=0,X=cb.length;X>U;++U)cb[U]=0;for(U=Y=0,X=ab.length;X>U;U+=V){for(V=1;X>U+V&&ab[U+V]===ab[U];++V);if(W=V,0===ab[U])if(3>W)for(;00;)Z=138>W?W:138,Z>W-3&&W>Z&&(Z=W-3),10>=Z?(bb[Y++]=17,bb[Y++]=Z-3,cb[17]++):(bb[Y++]=18,bb[Y++]=Z-11,cb[18]++),W-=Z;else if(bb[Y++]=ab[U],cb[ab[U]]++,W--,3>W)for(;00;)Z=6>W?W:6,Z>W-3&&W>Z&&(Z=W-3),bb[Y++]=16,bb[Y++]=Z-3,cb[16]++,W-=Z}for(a=o?bb.subarray(0,Y):bb.slice(0,Y),L=i(cb,7),P=0;19>P;P++)T[P]=L[S[P]];for(G=19;G>4&&0===T[G-1];G--);for(M=k(L),R.a(E-257,5,m),R.a(F-1,5,m),R.a(G-4,4,m),P=0;G>P;P++)R.a(T[P],3,m);for(P=0,Q=a.length;Q>P;P++)if(N=a[P],R.a(M[N],L[N],m),N>=16){switch(P++,N){case 16:O=2;break;case 17:O=3;break;case 18:O=7;break;default:throw"invalid code: "+N}R.a(a[P],O,m)}var db,eb,fb,gb,hb,ib,jb,kb,lb=[I,H],mb=[K,J];for(hb=lb[0],ib=lb[1],jb=mb[0],kb=mb[1],db=0,eb=D.length;eb>db;++db)if(fb=D[db],R.a(hb[fb],ib[fb],m),fb>256)R.a(D[++db],D[++db],m),gb=D[++db],R.a(jb[gb],kb[gb],m),R.a(D[++db],D[++db],m);else if(256===fb)break;this.b=R.finish(),this.c=this.b.length;break;default:throw"invalid compression type"}return this.b};var y=function(){function a(a){switch(m){case 3===a:return[257,a-3,0];case 4===a:return[258,a-4,0];case 5===a:return[259,a-5,0];case 6===a:return[260,a-6,0];case 7===a:return[261,a-7,0];case 8===a:return[262,a-8,0];case 9===a:return[263,a-9,0];case 10===a:return[264,a-10,0];case 12>=a:return[265,a-11,1];case 14>=a:return[266,a-13,1];case 16>=a:return[267,a-15,1];case 18>=a:return[268,a-17,1];case 22>=a:return[269,a-19,2];case 26>=a:return[270,a-23,2];case 30>=a:return[271,a-27,2];case 34>=a:return[272,a-31,2];case 42>=a:return[273,a-35,3];case 50>=a:return[274,a-43,3];case 58>=a:return[275,a-51,3];case 66>=a:return[276,a-59,3];case 82>=a:return[277,a-67,4];case 98>=a:return[278,a-83,4];case 114>=a:return[279,a-99,4];case 130>=a:return[280,a-115,4];case 162>=a:return[281,a-131,5];case 194>=a:return[282,a-163,5];case 226>=a:return[283,a-195,5];case 257>=a:return[284,a-227,5];case 258===a:return[285,a-258,0];default:throw"invalid length: "+a}}var b,c,d=[];for(b=3;258>=b;b++)c=a(b),d[b]=c[2]<<24|c[1]<<16|c[0];return d}(),z=o?new Uint32Array(y):y;a("Zlib.RawDeflate",e),a("Zlib.RawDeflate.prototype.compress",e.prototype.h);var A,B,C,D,E={NONE:0,FIXED:1,DYNAMIC:w};if(Object.keys)A=Object.keys(E);else for(B in A=[],C=0,E)A[C++]=B;for(C=0,D=A.length;D>C;++C)B=A[C],a("Zlib.RawDeflate.CompressionType."+B,E[B])}).call(this)},{}],20:[function(){/** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */ +(function(){"use strict";function a(a,b){var c=a.split("."),d=h;!(c[0]in d)&&d.execScript&&d.execScript("var "+c[0]);for(var e;c.length&&(e=c.shift());)c.length||b===g?d=d[e]?d[e]:d[e]={}:d[e]=b}function b(a){var b,c,d,e,f,g,h,j,k,l=a.length,m=0,n=Number.POSITIVE_INFINITY;for(j=0;l>j;++j)a[j]>m&&(m=a[j]),a[j]=d;){for(j=0;l>j;++j)if(a[j]===d){for(g=0,h=e,k=0;d>k;++k)g=g<<1|1&h,h>>=1;for(k=g;b>k;k+=f)c[k]=d<<16|j;++e}++d,e<<=1,f<<=1}return[c,m,n]}function c(a,b){switch(this.g=[],this.h=32768,this.c=this.f=this.d=this.k=0,this.input=i?new Uint8Array(a):a,this.l=!1,this.i=k,this.p=!1,(b||!(b={}))&&(b.index&&(this.d=b.index),b.bufferSize&&(this.h=b.bufferSize),b.bufferType&&(this.i=b.bufferType),b.resize&&(this.p=b.resize)),this.i){case j:this.a=32768,this.b=new(i?Uint8Array:Array)(32768+this.h+258);break;case k:this.a=0,this.b=new(i?Uint8Array:Array)(this.h),this.e=this.u,this.m=this.r,this.j=this.s;break;default:throw Error("invalid inflate mode")}}function d(a,b){for(var c,d=a.f,e=a.c,f=a.input,h=a.d;b>e;){if(c=f[h++],c===g)throw Error("input buffer is broken");d|=c<>>b,a.c=e-b,a.d=h,c}function e(a,b){for(var c,d,e,f=a.f,h=a.c,i=a.input,j=a.d,k=b[0],l=b[1];l>h&&(c=i[j++],c!==g);)f|=c<>>16,a.f=f>>e,a.c=h-e,a.d=j,65535&d}function f(a){function c(a,b,c){var f,g,h,i;for(i=0;a>i;)switch(f=e(this,b)){case 16:for(h=3+d(this,2);h--;)c[i++]=g;break;case 17:for(h=3+d(this,3);h--;)c[i++]=0;g=0;break;case 18:for(h=11+d(this,7);h--;)c[i++]=0;g=0;break;default:g=c[i++]=f}return c}var f,g,h,j,k=d(a,5)+257,l=d(a,5)+1,m=d(a,4)+4,n=new(i?Uint8Array:Array)(o.length);for(j=0;m>j;++j)n[o[j]]=d(a,3);f=b(n),g=new(i?Uint8Array:Array)(k),h=new(i?Uint8Array:Array)(l),a.j(b(c.call(a,k,f,g)),b(c.call(a,l,f,h)))}var g=void 0,h=this,i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,j=0,k=1;c.prototype.t=function(){for(;!this.l;){var a=d(this,3);switch(1&a&&(this.l=!0),a>>>=1){case 0:var b=this.input,c=this.d,e=this.b,h=this.a,l=g,m=g,n=g,o=e.length,p=g;if(this.c=this.f=0,l=b[c++],l===g)throw Error("invalid uncompressed block header: LEN (first byte)");if(m=l,l=b[c++],l===g)throw Error("invalid uncompressed block header: LEN (second byte)");if(m|=l<<8,l=b[c++],l===g)throw Error("invalid uncompressed block header: NLEN (first byte)");if(n=l,l=b[c++],l===g)throw Error("invalid uncompressed block header: NLEN (second byte)");if(n|=l<<8,m===~n)throw Error("invalid uncompressed block header: length verify");if(c+m>b.length)throw Error("input buffer is broken");switch(this.i){case j:for(;h+m>e.length;){if(p=o-h,m-=p,i)e.set(b.subarray(c,c+p),h),h+=p,c+=p;else for(;p--;)e[h++]=b[c++];this.a=h,e=this.e(),h=this.a}break;case k:for(;h+m>e.length;)e=this.e({o:2});break;default:throw Error("invalid inflate mode")}if(i)e.set(b.subarray(c,c+m),h),h+=m,c+=m;else for(;m--;)e[h++]=b[c++];this.d=c,this.a=h,this.b=e;break;case 1:this.j(A,C);break;case 2:f(this);break;default:throw Error("unknown BTYPE: "+a)}}return this.m()};var l,m,n=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],o=i?new Uint16Array(n):n,p=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,258,258],q=i?new Uint16Array(p):p,r=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0],s=i?new Uint8Array(r):r,t=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577],u=i?new Uint16Array(t):t,v=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],w=i?new Uint8Array(v):v,x=new(i?Uint8Array:Array)(288);for(l=0,m=x.length;m>l;++l)x[l]=143>=l?8:255>=l?9:279>=l?7:8;var y,z,A=b(x),B=new(i?Uint8Array:Array)(30);for(y=0,z=B.length;z>y;++y)B[y]=5;var C=b(B);c.prototype.j=function(a,b){var c=this.b,f=this.a;this.n=a;for(var g,h,i,j,k=c.length-258;256!==(g=e(this,a));)if(256>g)f>=k&&(this.a=f,c=this.e(),f=this.a),c[f++]=g;else for(h=g-257,j=q[h],0=k&&(this.a=f,c=this.e(),f=this.a);j--;)c[f]=c[f++-i];for(;8<=this.c;)this.c-=8,this.d--;this.a=f},c.prototype.s=function(a,b){var c=this.b,f=this.a;this.n=a;for(var g,h,i,j,k=c.length;256!==(g=e(this,a));)if(256>g)f>=k&&(c=this.e(),k=c.length),c[f++]=g;else for(h=g-257,j=q[h],0k&&(c=this.e(),k=c.length);j--;)c[f]=c[f++-i];for(;8<=this.c;)this.c-=8,this.d--;this.a=f},c.prototype.e=function(){var a,b,c=new(i?Uint8Array:Array)(this.a-32768),d=this.a-32768,e=this.b;if(i)c.set(e.subarray(32768,c.length));else for(a=0,b=c.length;b>a;++a)c[a]=e[a+32768];if(this.g.push(c),this.k+=c.length,i)e.set(e.subarray(d,d+32768));else for(a=0;32768>a;++a)e[a]=e[d+a];return this.a=32768,e},c.prototype.u=function(a){var b,c,d,e,f=this.input.length/this.d+1|0,g=this.input,h=this.b;return a&&("number"==typeof a.o&&(f=a.o),"number"==typeof a.q&&(f+=a.q)),2>f?(c=(g.length-this.d)/this.n[2],e=258*(c/2)|0,d=eb;++b)for(a=h[b],d=0,e=a.length;e>d;++d)j[f++]=a[d];for(b=32768,c=this.a;c>b;++b)j[f++]=g[b];return this.g=[],this.buffer=j},c.prototype.r=function(){var a,b=this.a;return i?this.p?(a=new Uint8Array(b),a.set(this.b.subarray(0,b))):a=this.b.subarray(0,b):(this.b.length>b&&(this.b.length=b),a=this.b),this.buffer=a},a("Zlib.RawInflate",c),a("Zlib.RawInflate.prototype.decompress",c.prototype.t);var D,E,F,G,H={ADAPTIVE:k,BLOCK:j};if(Object.keys)D=Object.keys(H);else for(E in D=[],F=0,H)D[F++]=E;for(F=0,G=D.length;G>F;++F)E=D[F],a("Zlib.RawInflate.BufferType."+E,H[E])}).call(this)},{}]},{},[7])(7)}),/*! @license uglifyweb Copyright (c) 2011, The Dojo Foundation All Rights Reserved. + * The parts that are unique to this repo (not much, just some wrapper code) are + * released under the new BSD and MIT licenses. + * + * This file includes UglifyJS and some parts of es5-shim, both which have + * their own licenses: + * + * https://github.com/mishoo/UglifyJS (BSD) + * https://github.com/kriskowal/es5-shim (MIT) + * + * More info on the project: https://github.com/jrburke/uglifyweb + */ +function(){var a=(Object.prototype.toString,"a"!="a"[0]),b=function(b){if(null==b)throw new TypeError;return a&&"string"==typeof b&&b?b.split(""):Object(b)};Array.prototype.forEach||(Array.prototype.forEach=function(a){for(var c=b(this),d=arguments[1],e=0,f=c.length>>>0;f>e;)e in c&&a.call(d,c[e],e,c),e++}),Array.prototype.reduce||(Array.prototype.reduce=function(a){var c=b(this),d=c.length>>>0;if(!d&&1==arguments.length)throw new TypeError;var e,f=0;if(arguments.length<2)for(;;){if(f in c){e=c[f++];break}if(++f>=d)throw new TypeError}else e=arguments[1];for(;d>f;f++)f in c&&(e=a.call(void 0,e,c[f],f,c));return e});var c,d,e;if(function(){function a(a,b){if(a&&"."===a.charAt(0)&&b){b=b.split("/"),b=b.slice(0,b.length-1),a=b.concat(a.split("/"));var c,d;for(c=0;d=a[c];c++)if("."===d)a.splice(c,1),c-=1;else if(".."===d){if(1===c&&(".."===a[2]||".."===a[0]))break;c>0&&(a.splice(c-1,2),c-=2)}a=a.join("/")}return a}function b(a,b){return function(){return j.apply(null,l.call(arguments,0).concat([a,b]))}}function f(b){return function(c){return a(c,b)}}function g(a){return function(b){k[a]=b}}function h(b,c){var d,e,g=b.indexOf("!");return-1!==g?(d=a(b.slice(0,g),c),b=b.slice(g+1),e=k[d],b=e&&e.normalize?e.normalize(b,f(c)):a(b,c)):b=a(b,c),{f:d?d+"!"+b:b,n:b,p:e}}function i(a,c,d,e){var f,i,j,l,m,n,o=[];if(e||(e=a),"function"==typeof d){if(c)for(l=0;l=48&&57>=a}function e(a){return d(a)||c(a)}function f(a){return J.non_spacing_mark.test(a)||J.space_combining_mark.test(a)}function g(a){return J.connector_punctuation.test(a)}function h(a){return"$"==a||"_"==a||c(a)}function i(a){return h(a)||f(a)||d(a)||g(a)||"‌"==a||"‍"==a}function j(a){return C.test(a)?parseInt(a.substr(2),16):D.test(a)?parseInt(a.substr(1),8):E.test(a)?parseFloat(a):void 0}function k(a,b,c,d){this.message=a,this.line=b,this.col=c,this.pos=d,this.stack=(new Error).stack}function l(a,b,c,d){throw new k(a,b,c,d)}function m(a,b,c){return a.type==b&&(null==c||a.value==c)}function n(a){function b(){return O.text.charAt(O.pos)}function c(a,b){var c=O.text.charAt(O.pos++);if(a&&!c)throw K;return"\n"==c?(O.newline_before=O.newline_before||!b,++O.line,O.col=0):++O.col,c}function f(a,b){var c=O.text.indexOf(a,O.pos);if(b&&-1==c)throw K;return c}function g(){O.tokline=O.line,O.tokcol=O.col,O.tokpos=O.pos}function k(a,b,c){O.regex_allowed="operator"==a&&!w(M,b)||"keyword"==a&&w(z,b)||"punc"==a&&w(H,b);var d={type:a,value:b,line:O.tokline,col:O.tokcol,pos:O.tokpos,nlb:O.newline_before};return c||(d.comments_before=O.comments_before,O.comments_before=[]),O.newline_before=!1,d}function m(){for(;w(G,b());)c()}function n(a){for(var d="",e=b(),f=0;e&&a(e,f++);)d+=c(),e=b();return d}function o(a){l(a,O.tokline,O.tokcol,O.tokpos)}function p(a){var b=!1,c=!1,d=!1,f="."==a,g=n(function(g,h){return"x"==g||"X"==g?d?!1:d=!0:d||"E"!=g&&"e"!=g?"-"==g?c||0==h&&!a?!0:!1:"+"==g?c:(c=!1,"."==g?f||d?!1:f=!0:e(g)):b?!1:b=c=!0});a&&(g=a+g);var h=j(g);return isNaN(h)?void o("Invalid syntax: "+g):k("num",h)}function q(a){var b=c(!0,a);switch(b){case"n":return"\n";case"r":return"\r";case"t":return" ";case"b":return"\b";case"v":return" ";case"f":return"\f";case"0":return"\x00";case"x":return String.fromCharCode(r(2));case"u":return String.fromCharCode(r(4));case"\n":return"";default:return b}}function r(a){for(var b=0;a>0;--a){var d=parseInt(c(!0),16);isNaN(d)&&o("Invalid hex-character pattern in string"),b=b<<4|d}return b}function s(){return L("Unterminated string constant",function(){for(var a=c(),b="";;){var d=c(!0);if("\\"==d){var e=0,f=null;d=n(function(a){if(a>="0"&&"7">=a){if(!f)return f=a,++e;if("3">=f&&2>=e)return++e;if(f>="4"&&1>=e)return++e}return!1}),d=e>0?String.fromCharCode(parseInt(d,8)):q(!0)}else if(d==a)break;b+=d}return k("string",b)})}function t(){c();var a,b=f("\n");return-1==b?(a=O.text.substr(O.pos),O.pos=O.text.length):(a=O.text.substring(O.pos,b),O.pos=b),k("comment1",a,!0)}function u(){return c(),L("Unterminated multiline comment",function(){var a=f("*/",!0),b=O.text.substring(O.pos,a),c=k("comment2",b,!0);return O.pos=a+2,O.line+=b.split("\n").length-1,O.newline_before=b.indexOf("\n")>=0,/^@cc_on/i.test(b)&&(R("WARNING: at line "+O.line),R('*** Found "conditional comment": '+b),R("*** UglifyJS DISCARDS ALL COMMENTS. This means your code might no longer work properly in Internet Explorer.")),c})}function v(){for(var a,d=!1,e="";null!=(a=b());)if(d)"u"!=a&&o("Expecting UnicodeEscapeSequence -- uXXXX"),a=q(),i(a)||o("Unicode char: "+a.charCodeAt(0)+" is not valid in identifier"),e+=a,d=!1;else if("\\"==a)d=!0,c();else{if(!i(a))break;e+=c()}return e}function y(a){return L("Unterminated regular expression",function(){for(var b,d=!1,e=!1;b=c(!0);)if(d)a+="\\"+b,d=!1;else if("["==b)e=!0,a+=b;else if("]"==b&&e)e=!1,a+=b;else{if("/"==b&&!e)break;"\\"==b?d=!0:a+=b}var f=v();return k("regexp",[a,f])})}function C(a){function d(a){if(!b())return a;var e=a+b();return w(F,e)?(c(),d(e)):a}return k("operator",d(a||c()))}function D(){c();var a=O.regex_allowed;switch(b()){case"/":return O.comments_before.push(t()),O.regex_allowed=a,N();case"*":return O.comments_before.push(u()),O.regex_allowed=a,N()}return O.regex_allowed?y(""):C("/")}function E(){return c(),d(b())?p("."):k("punc",".")}function J(){var a=v();return w(x,a)?w(F,a)?k("operator",a):w(A,a)?k("atom",a):k("keyword",a):k("name",a)}function L(a,b){try{return b()}catch(c){if(c!==K)throw c;o(a)}}function N(a){if(null!=a)return y(a);m(),g();var e=b();return e?d(e)?p():'"'==e||"'"==e?s():w(I,e)?k("punc",c()):"."==e?E():"/"==e?D():w(B,e)?C():"\\"==e||h(e)?J():void o("Unexpected character '"+e+"'"):k("eof")}var O={text:a.replace(/\r\n?|[\n\u2028\u2029]/g,"\n").replace(/^\uFEFF/,""),pos:0,tokpos:0,line:0,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[]};return N.context=function(a){return a&&(O=a),O},N}function o(a,b,c){this.name=a,this.start=b,this.end=c}function p(a,b,c){function d(a,b){return m(gb.token,a,b)}function e(){return gb.peeked||(gb.peeked=gb.input())}function f(){return gb.prev=gb.token,gb.peeked?(gb.token=gb.peeked,gb.peeked=null):gb.token=gb.input(),gb.token}function g(){return gb.prev}function h(a,b,c,d){var e=gb.input.context();l(a,null!=b?b:e.tokline,null!=c?c:e.tokcol,null!=d?d:e.tokpos)}function i(a,b){h(b,a.line,a.col)}function j(a){null==a&&(a=gb.token),i(a,"Unexpected token: "+a.type+" ("+a.value+")")}function k(a,b){return d(a,b)?f():void i(gb.token,"Unexpected token "+gb.token.type+", expected "+a)}function p(a){return k("punc",a)}function s(){return!b&&(gb.token.nlb||d("eof")||d("punc","}"))}function u(){d("punc",";")?f():s()||j()}function x(){return t(arguments)}function y(){p("(");var a=lb();return p(")"),a}function z(a,b,c){return a instanceof o?a:new o(a,b,c)}function A(a){return c?function(){var b=gb.token,c=a.apply(this,arguments);return c[0]=z(c[0],b,g()),c}:a}function B(a){gb.labels.push(a);var c=gb.token,d=hb();return b&&!w(P,d[0])&&j(c),gb.labels.pop(),x("label",a,d)}function C(){return x("stat",r(lb,u))}function D(a){var b;return s()||(b=d("name")?gb.token.value:null),null!=b?(f(),v(b,gb.labels)||h("Label "+b+" without matching loop or statement")):0==gb.in_loop&&h(a+" not inside a loop or switch"),u(),x(a,b)}function E(){p("(");var a=null;return!d("punc",";")&&(a=d("keyword","var")?(f(),R(!0)):lb(!0,!0),d("operator","in"))?G(a):F(a)}function F(a){p(";");var b=d("punc",";")?null:lb();p(";");var c=d("punc",")")?null:lb();return p(")"),x("for",a,b,c,fb(hb))}function G(a){var b="var"==a[0]?x("name",a[1][0]):a;f();var c=lb();return p(")"),x("for-in",a,b,c,fb(hb))}function H(){var a,b=y(),c=hb();return d("keyword","else")&&(f(),a=hb()),x("if",b,c,a)}function I(){p("{");for(var a=[];!d("punc","}");)d("eof")&&j(),a.push(hb());return f(),a}function J(){var a,b,c=I();if(d("keyword","catch")){f(),p("("),d("name")||h("Name expected");var e=gb.token.value;f(),p(")"),a=[e,I()]}return d("keyword","finally")&&(f(),b=I()),!a&&!b&&h("Missing catch/finally blocks"),x("try",c,a,b)}function K(a){for(var b=[];;){d("name")||j();var c=gb.token.value;if(f(),d("operator","=")?(f(),b.push([c,lb(!1,a)])):b.push([c]),!d("punc",","))break;f()}return b}function R(a){return x("var",K(a))}function S(){return x("const",K())}function T(){var a,b=kb(!1);return d("punc","(")?(f(),a=U(")")):a=[],Z(x("new",b,a),!0)}function U(a,b,c){for(var e=!0,g=[];!d("punc",a)&&(e?e=!1:p(","),!b||!d("punc",a));)g.push(d("punc",",")&&c?["atom","undefined"]:lb(!1));return f(),g}function V(){return x("array",U("]",!b,!0))}function W(){for(var a=!0,c=[];!d("punc","}")&&(a?a=!1:p(","),b||!d("punc","}"));){var e=gb.token.type,g=X();"name"!=e||"get"!=g&&"set"!=g||d("punc",":")?(p(":"),c.push([g,lb(!1)])):c.push([Y(),ib(!1),g])}return f(),x("object",c)}function X(){switch(gb.token.type){case"num":case"string":return r(gb.token.value,f)}return Y()}function Y(){switch(gb.token.type){case"name":case"operator":case"keyword":case"atom":return r(gb.token.value,f);default:j()}}function Z(a,b){return d("punc",".")?(f(),Z(x("dot",a,Y()),b)):d("punc","[")?(f(),Z(x("sub",a,r(lb,q(p,"]"))),b)):b&&d("punc","(")?(f(),Z(x("call",a,U(")")),!0)):a}function $(a){if(d("operator")&&w(L,gb.token.value))return _("unary-prefix",r(gb.token.value,f),$(a));for(var b=kb(a);d("operator")&&w(M,gb.token.value)&&!gb.token.nlb;)b=_("unary-postfix",gb.token.value,b),f();return b}function _(a,b,c){return("++"==b||"--"==b)&&!db(c)&&h("Invalid use of "+b+" operator"),x(a,b,c)}function ab(a,b,c){var e=d("operator")?gb.token.value:null;e&&"in"==e&&c&&(e=null);var g=null!=e?O[e]:null;if(null!=g&&g>b){f();var h=ab($(!0),g,c);return ab(x("binary",e,a,h),b,c)}return a}function bb(a){return ab($(!0),0,a)}function cb(a){var b=bb(a);if(d("operator","?")){f();var c=lb(!1);return p(":"),x("conditional",b,c,lb(!1,a))}return b}function db(a){if(!b)return!0;switch(a[0]+""){case"dot":case"sub":case"new":case"call":return!0;case"name":return"this"!=a[1]}}function eb(a){var b=cb(a),c=gb.token.value;if(d("operator")&&w(N,c)){if(db(b))return f(),x("assign",N[c],b,eb(a));h("Invalid assignment")}return b}function fb(a){try{return++gb.in_loop,a()}finally{--gb.in_loop}}var gb={input:"string"==typeof a?n(a,!0):a,token:null,prev:null,peeked:null,in_function:0,in_loop:0,labels:[]};gb.token=f();var hb=A(function(){switch((d("operator","/")||d("operator","/="))&&(gb.peeked=null,gb.token=gb.input(gb.token.value.substr(1))),gb.token.type){case"num":case"string":case"regexp":case"operator":case"atom":return C();case"name":return m(e(),"punc",":")?B(r(gb.token.value,f,f)):C();case"punc":switch(gb.token.value){case"{":return x("block",I());case"[":case"(":return C();case";":return f(),x("block");default:j()}case"keyword":switch(r(gb.token.value,f)){case"break":return D("break");case"continue":return D("continue");case"debugger":return u(),x("debugger");case"do":return function(a){return k("keyword","while"),x("do",r(y,u),a)}(fb(hb));case"for":return E();case"function":return ib(!0);case"if":return H();case"return":return 0==gb.in_function&&h("'return' outside of function"),x("return",d("punc",";")?(f(),null):s()?null:r(lb,u));case"switch":return x("switch",y(),jb());case"throw":return gb.token.nlb&&h("Illegal newline after 'throw'"),x("throw",r(lb,u));case"try":return J();case"var":return r(R,u);case"const":return r(S,u);case"while":return x("while",y(),fb(hb));case"with":return x("with",y(),hb());default:j()}}}),ib=A(function(a){var b=d("name")?r(gb.token.value,f):null;return a&&!b&&j(),p("("),x(a?"defun":"function",b,function(a,b){for(;!d("punc",")");)a?a=!1:p(","),d("name")||j(),b.push(gb.token.value),f();return f(),b}(!0,[]),function(){++gb.in_function;var a=gb.in_loop;gb.in_loop=0;var b=I();return--gb.in_function,gb.in_loop=a,b}())}),jb=q(fb,function(){p("{");for(var a=[],b=null;!d("punc","}");)d("eof")&&j(),d("keyword","case")?(f(),b=[],a.push([lb(),b]),p(":")):d("keyword","default")?(f(),p(":"),b=[],a.push([null,b])):(b||j(),b.push(hb()));return f(),a}),kb=A(function(a){if(d("operator","new"))return f(),T();if(d("punc")){switch(gb.token.value){case"(":return f(),Z(r(lb,q(p,")")),a);case"[":return f(),Z(V(),a);case"{":return f(),Z(W(),a)}j()}if(d("keyword","function"))return f(),Z(ib(!1),a);if(w(Q,gb.token.type)){var b="regexp"==gb.token.type?x("regexp",gb.token.value[0],gb.token.value[1]):x(gb.token.type,gb.token.value);return Z(r(b,f),a)}j()}),lb=A(function(a,b){0==arguments.length&&(a=!0);var c=eb(b);return a&&d("punc",",")?(f(),x("seq",c,lb(!0,b))):c});return x("toplevel",function(a){for(;!d("eof");)a.push(hb());return a}([]))}function q(a){var b=t(arguments,1);return function(){return a.apply(this,b.concat(t(arguments)))}}function r(a){a instanceof Function&&(a=a());for(var b=1,c=arguments.length;--c>0;++b)arguments[b]();return a}function s(a){for(var b={},c=0;c=0;)if(b[c]===a)return!0;return!1}function w(a,b){return Object.prototype.hasOwnProperty.call(a,b)}var x=s(["break","case","catch","const","continue","default","delete","do","else","finally","for","function","if","in","instanceof","new","return","switch","throw","try","typeof","var","void","while","with"]),y=s(["abstract","boolean","byte","char","class","debugger","double","enum","export","extends","final","float","goto","implements","import","int","interface","long","native","package","private","protected","public","short","static","super","synchronized","throws","transient","volatile"]),z=s(["return","new","delete","throw","else","case"]),A=s(["false","null","true","undefined"]),B=s(u("+-*&%=<>!?|~^")),C=/^0x[0-9a-f]+$/i,D=/^0[0-7]+$/,E=/^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i,F=s(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),G=s(u(" \n\r \f ​᠎              ")),H=s(u("[{}(,.;:")),I=s(u("[]{}(),;:")),J=(s(u("gmsiy")),{letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0523\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0621-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971\\u0972\\u097B-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D28\\u0D2A-\\u0D39\\u0D3D\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC\\u0EDD\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8B\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10D0-\\u10FA\\u10FC\\u1100-\\u1159\\u115F-\\u11A2\\u11A8-\\u11F9\\u1200-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u1676\\u1681-\\u169A\\u16A0-\\u16EA\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19A9\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u2094\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2183\\u2184\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2C6F\\u2C71-\\u2C7D\\u2C80-\\u2CE4\\u2D00-\\u2D25\\u2D30-\\u2D65\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005\\u3006\\u3031-\\u3035\\u303B\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31B7\\u31F0-\\u31FF\\u3400\\u4DB5\\u4E00\\u9FC3\\uA000-\\uA48C\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA65F\\uA662-\\uA66E\\uA67F-\\uA697\\uA717-\\uA71F\\uA722-\\uA788\\uA78B\\uA78C\\uA7FB-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA90A-\\uA925\\uA930-\\uA946\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAC00\\uD7A3\\uF900-\\uFA2D\\uFA30-\\uFA6A\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),non_spacing_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),space_combining_mark:new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]")});k.prototype.toString=function(){return this.message+" (line: "+this.line+", col: "+this.col+", pos: "+this.pos+")\n\n"+this.stack};var K={},L=s(["typeof","void","delete","--","++","!","~","-","+"]),M=s(["--","++"]),N=function(a,b,c){for(;c>=","<<=",">>>=","|=","^=","&="],{"=":!0},0),O=function(a,b){for(var c=0,d=1;c","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),P=s(["for","do","while","switch"]),Q=s(["atom","num","string","regexp","name"]);o.prototype.toString=function(){return this.name};var R=function(){};b.tokenizer=n,b.parse=p,b.slice=t,b.curry=q,b.member=v,b.array_to_hash=s,b.PRECEDENCE=O,b.KEYWORDS_ATOM=A,b.RESERVED_WORDS=y,b.KEYWORDS=x,b.ATOMIC_START_TOKEN=Q,b.OPERATORS=F,b.is_alphanumeric_char=e,b.set_logger=function(a){R=a}}),e("lib/process",["require","exports","module","./parse-js"],function(a,b){function c(){function a(a){return[this[0],F(a,function(a){var b=[a[0]];return a.length>1&&(b[1]=c(a[1])),b})]}function b(a){var b=[this[0]];return null!=a&&b.push(F(a,c)),b}function c(a){if(null==a)return null;try{h.push(a);var b=a[0],c=g[b];if(c){var d=c.apply(a,a.slice(1));if(null!=d)return d}return c=f[b],c.apply(a,a.slice(1))}finally{h.pop()}}function d(a){if(null==a)return null;try{return h.push(a),f[a[0]].apply(a,a.slice(1))}finally{h.pop()}}function e(a,b){var c,d={};for(c in a)y(a,c)&&(d[c]=g[c],g[c]=a[c]);var e=b();for(c in d)y(d,c)&&(d[c]?g[c]=d[c]:delete g[c]);return e}var f={string:function(a){return[this[0],a]},num:function(a){return[this[0],a]},name:function(a){return[this[0],a]},toplevel:function(a){return[this[0],F(a,c)]},block:b,splice:b,"var":a,"const":a,"try":function(a,b,d){return[this[0],F(a,c),null!=b?[b[0],F(b[1],c)]:null,null!=d?F(d,c):null]},"throw":function(a){return[this[0],c(a)]},"new":function(a,b){return[this[0],c(a),F(b,c)]},"switch":function(a,b){return[this[0],c(a),F(b,function(a){return[a[0]?c(a[0]):null,F(a[1],c)]})]},"break":function(a){return[this[0],a]},"continue":function(a){return[this[0],a]},conditional:function(a,b,d){return[this[0],c(a),c(b),c(d)]},assign:function(a,b,d){return[this[0],a,c(b),c(d)]},dot:function(a){return[this[0],c(a)].concat(A(arguments,1))},call:function(a,b){return[this[0],c(a),F(b,c)]},"function":function(a,b,d){return[this[0],a,b.slice(),F(d,c)]},defun:function(a,b,d){return[this[0],a,b.slice(),F(d,c)]},"if":function(a,b,d){return[this[0],c(a),c(b),c(d)]},"for":function(a,b,d,e){return[this[0],c(a),c(b),c(d),c(e)]},"for-in":function(a,b,d,e){return[this[0],c(a),c(b),c(d),c(e)]},"while":function(a,b){return[this[0],c(a),c(b)]},"do":function(a,b){return[this[0],c(a),c(b)]},"return":function(a){return[this[0],c(a)]},binary:function(a,b,d){return[this[0],a,c(b),c(d)]},"unary-prefix":function(a,b){return[this[0],a,c(b)]},"unary-postfix":function(a,b){return[this[0],a,c(b)]},sub:function(a,b){return[this[0],c(a),c(b)]},object:function(a){return[this[0],F(a,function(a){return 2==a.length?[a[0],c(a[1])]:[a[0],c(a[1]),a[2]]})]},regexp:function(a,b){return[this[0],a,b]},array:function(a){return[this[0],F(a,c)]},stat:function(a){return[this[0],c(a)]},seq:function(){return[this[0]].concat(F(A(arguments),c))},label:function(a,b){return[this[0],a,c(b)]},"with":function(a,b){return[this[0],c(a),c(b)]},atom:function(a){return[this[0],a]}},g={},h=[];return{walk:c,dive:d,with_walkers:e,parent:function(){return h[h.length-2]},stack:function(){return h}}}function d(a){this.names={},this.mangled={},this.rev_mangled={},this.cname=-1,this.refs={},this.uses_with=!1,this.uses_eval=!1,this.parent=a,this.children=[],a?(this.level=a.level+1,a.children.push(this)):this.level=0}function e(a){function b(a){i=new d(i);var b=i.body=a();return b.scope=i,i=i.parent,b}function e(a,b){return i.define(a,b)}function f(a){i.refs[a]=!0}function g(a,c,d){var f="defun"==this[0];return[this[0],f?e(a,"defun"):a,c,b(function(){return f||e(a,"lambda"),F(c,function(a){e(a,"arg")}),F(d,k)})]}function h(a){return function(b){F(b,function(b){e(b[0],a),b[1]&&f(b[0])})}}var i=null,j=c(),k=j.walk,l=[];return b(function(){function b(a,c){for(c=a.children.length;--c>=0;)b(a.children[c]);for(c in a.refs)if(y(a.refs,c))for(var d=a.has(c),e=a;e&&(e.refs[c]=d,e!==d);e=e.parent);}var c=j.with_walkers({"function":g,defun:g,label:function(a){e(a,"label")},"break":function(a){a&&f(a)},"continue":function(a){a&&f(a)},"with":function(){for(var a=i;a;a=a.parent)a.uses_with=!0},"var":h("var"),"const":h("const"),"try":function(a,b,c){return null!=b?[this[0],F(a,k),[e(b[0],"catch"),F(b[1],k)],null!=c?F(c,k):null]:void 0},name:function(a){"eval"==a&&l.push(i),f(a)}},function(){return k(a)});return F(l,function(a){if(!a.has("eval"))for(;a;)a.uses_eval=!0,a=a.parent}),b(i),c})}function f(a,b){function d(a,c){return b.toplevel||j.parent?b.except&&B(a,b.except)?a:j.get_mangled(a,c):a}function f(a){return b.defines?!j.has(a)&&y(b.defines,a)?b.defines[a]:null:void 0}function g(a,b,c){var e,f="defun"==this[0];return a&&(f?a=d(a):(e={},j.uses_eval||j.uses_with?e[a]=a:a=e[a]=j.next_mangled())),c=h(c.scope,function(){return b=F(b,function(a){return d(a)}),F(c,l)},e),[this[0],a,b,c]}function h(a,b,c){var e=j;if(j=a,c)for(var f in c)y(c,f)&&a.set_mangle(f,c[f]);for(var f in a.names)y(a.names,f)&&d(f,!0);var g=b();return g.scope=a,j=e,g}function i(a){return[this[0],F(a,function(a){return[d(a[0]),l(a[1])]})]}var j,k=c(),l=k.walk;return b=b||{},k.with_walkers({"function":g,defun:function(){var a=g.apply(this,arguments);switch(k.parent()[0]){case"toplevel":case"function":case"defun":return F.at_top(a)}return a},label:function(a,b){return[this[0],d(a),l(b)]},"break":function(a){return a?[this[0],d(a)]:void 0},"continue":function(a){return a?[this[0],d(a)]:void 0},"var":i,"const":i,name:function(a){return f(a)||[this[0],d(a)]},"try":function(a,b,c){return[this[0],F(a,l),null!=b?[d(b[0]),F(b[1],l)]:null,null!=c?F(c,l):null]},toplevel:function(a){var b=this;return h(b.scope,function(){return[b[0],F(a,l)]})}},function(){return l(e(a))})}function g(a,b){return t(a).length>t("stat"==b[0]?b[1]:b).length?b:a}function h(a){return"block"==a[0]&&a[1]&&a[1].length>0?a[1][a[1].length-1]:a}function i(a){if(a)switch(h(a)[0]){case"return":case"break":case"continue":case"throw":return!0}}function j(a){return"unary-prefix"==a[0]&&B(a[1],["!","delete"])||"binary"==a[0]&&B(a[1],["in","instanceof","==","!=","===","!==","<","<=",">=",">"])||"binary"==a[0]&&B(a[1],["&&","||"])&&j(a[2])&&j(a[3])||"conditional"==a[0]&&j(a[2])&&j(a[3])||"assign"==a[0]&&a[1]===!0&&j(a[3])||"seq"==a[0]&&j(a[a.length-1])}function k(a){return!a||"block"==a[0]&&(!a[1]||0==a[1].length)}function l(a){return"string"==a[0]||"unary-prefix"==a[0]&&"typeof"==a[1]||"binary"==a[0]&&"+"==a[1]&&(l(a[2])||l(a[3]))}function m(a){k(a)||G("Dropping unreachable code: "+t(a,!0))}function n(a){function b(a){a=F(a,g);for(var c=0;c0&&(o(["block",a],function(a,b,c,f){if("assign"==a[0]&&a[1]===!0&&"name"==a[2][0]&&y(d,a[2][1])){for(var g=e.length;--g>=0;)if(e[g][0]==a[2][1]){e[g][1]&&c(),e[g][1]=a[3],e.push(e.splice(g,1)[0]);break}var h=b.parent();if("seq"==h[0]){var i=h[2];i.unshift(0,h.length),h.splice.apply(h,i)}else"stat"==h[0]?h.splice(0,h.length,"block"):c();f()}c()}),a.unshift(["var",e])),g=c,a}function d(a){for(var b=null,c=a.length;--c>=0;){var d=a[c];d[1]&&(d=["assign",!0,["name",d[0]],d[1]],b=null==b?d:["seq",d,b])}return null==b?"for-in"==h.parent()[0]?["name",a[0][0]]:F.skip:["stat",b]}function f(a){return[this[0],b(a,this.scope)]}var g,h=c(),i=h.walk;return h.with_walkers({"function":function(a,c,d){for(var e=c.length;--e>=0&&!d.scope.references(c[e]);)c.pop();return d.scope.references(a)||(a=null),[this[0],a,c,b(d,d.scope)]},defun:function(a,c,d){if(!g.references(a))return F.skip;for(var e=c.length;--e>=0&&!d.scope.references(c[e]);)c.pop();return[this[0],a,c,b(d,d.scope)]},"var":d,toplevel:f},function(){return i(e(a))})}function q(a,b){function d(a){var c=["unary-prefix","!",a]; +switch(a[0]){case"unary-prefix":return"!"==a[1]&&j(a[2])?a[2]:c;case"seq":return a=A(a),a[a.length-1]=d(a[a.length-1]),a;case"conditional":return g(c,["conditional",a[1],d(a[2]),d(a[3])]);case"binary":var e=a[1],f=a[2],h=a[3];if(!b.keep_comps)switch(e){case"<=":return["binary",">",f,h];case"<":return["binary",">=",f,h];case">=":return["binary","<",f,h];case">":return["binary","<=",f,h]}switch(e){case"==":return["binary","!=",f,h];case"!=":return["binary","==",f,h];case"===":return["binary","!==",f,h];case"!==":return["binary","===",f,h];case"&&":return g(c,["binary","||",d(f),d(h)]);case"||":return g(c,["binary","&&",d(f),d(h)])}}return c}function f(a,b,c){var e=function(){return"unary-prefix"==a[0]&&"!"==a[1]?c?["conditional",a[2],c,b]:["binary","||",a[2],b]:c?g(["conditional",a,b,c],["conditional",d(a),c,b]):["binary","&&",a,b]};return H(a,function(a,d){return m(d?c:b),d?b:c},e)}function h(a,b){var c=u;u=a;var d=b();return d.scope=a,u=c,d}function l(a){return null!=a&&"block"==a[0]&&a[1]&&(1==a[1].length?a=a[1][0]:0==a[1].length&&(a=["block"])),a}function o(a,b,c){var d="defun"==this[0];return c=h(c.scope,function(){var b=p(c,"lambda");return!d&&a&&!u.references(a)&&(a=null),b}),[this[0],a,b,c]}function p(a){return a=F(a,y),a=a.reduce(function(a,b){return"block"==b[0]?b[1]&&a.push.apply(a,b[1]):a.push(b),a},[]),a=function(b,c){return a.forEach(function(a){c&&("var"==a[0]&&"var"==c[0]||"const"==a[0]&&"const"==c[0])?c[1]=c[1].concat(a[1]):(b.push(a),c=a)}),b}([]),b.dead_code&&(a=function(c,d){return a.forEach(function(a){d?"function"==a[0]||"defun"==a[0]?c.push(a):"var"==a[0]||"const"==a[0]?(b.no_warnings||G("Variables declared in unreachable code"),a[1]=F(a[1],function(a){return a[1]&&!b.no_warnings&&m(["assign",!0,["name",a[0]],a[1]]),[a[0]]}),c.push(a)):b.no_warnings||m(a):(c.push(a),B(a[0],["return","throw","break","continue"])&&(d=!0))}),c}([])),b.make_seqs&&(a=function(b,c){return a.forEach(function(a){c&&"stat"==c[0]&&"stat"==a[0]?c[1]=["seq",c[1],a[1]]:(b.push(a),c=a)}),b.length>=2&&"stat"==b[b.length-2][0]&&("return"==b[b.length-1][0]||"throw"==b[b.length-1][0])&&b[b.length-1][1]&&b.splice(b.length-2,2,[b[b.length-1][0],["seq",b[b.length-2][1],b[b.length-1][1]]]),b}([])),a}function q(a,b,c){return H(a,function(a,d){return d?(b=y(b),m(c),b||["block"]):(c=y(c),m(b),c||["block"])},function(){return r(a,b,c)})}function r(a,b,c){if(a=y(a),b=y(b),c=y(c),k(b)?(a=d(a),b=c,c=null):k(c)?c=null:function(){var e=t(a),f=d(a),g=t(f);if(g.length0){var e=d[d.length-1];"break"==e[0]&&!e[1]&&d.pop()}return[a[0]?y(a[0]):null,d]})]},"function":o,defun:o,block:function(a){return a?l(["block",p(a)]):void 0},binary:function(a,b,c){return H(["binary",a,y(b),y(c)],function(a){return g(y(a),this)},function(){return function(){if("=="==a||"!="==a){var d=y(b),e=y(c);return d&&"unary-prefix"==d[0]&&"!"==d[1]&&"num"==d[2][0]?b=["num",+!d[2][1]]:e&&"unary-prefix"==e[0]&&"!"==e[1]&&"num"==e[2][0]&&(c=["num",+!e[2][1]]),["binary",a,b,c]}}()||this})},conditional:function(a,b,c){return f(y(a),y(b),y(c))},"try":function(a,b,c){return["try",p(a),null!=b?[b[0],p(b[1])]:null,null!=c?p(c):null]},"unary-prefix":function(a,b){b=y(b);var c=["unary-prefix",a,b];return"!"==a&&(c=g(c,d(b))),H(c,function(a){return y(a)},function(){return c})},name:function(a){switch(a){case"true":return["unary-prefix","!",["num",0]];case"false":return["unary-prefix","!",["num",1]]}},"while":s,assign:function(a,b,c){b=y(b),c=y(c);var d=["+","-","/","*","%",">>","<<",">>>","|","^","&"];return a===!0&&"name"===b[0]&&"binary"===c[0]&&~d.indexOf(c[1])&&"name"===c[2][0]&&c[2][1]===b[1]?[this[0],c[1],b,c[3]]:[this[0],a,b,c]}},function(){for(var b=0;2>b;++b)a=n(a),a=e(a),a=y(a);return a})}function r(a,b){var c=0,d=0;return a=a.replace(/[\\\b\f\n\r\t\x22\x27\u2028\u2029\0]/g,function(a){switch(a){case"\\":return"\\\\";case"\b":return"\\b";case"\f":return"\\f";case"\n":return"\\n";case"\r":return"\\r";case" ":return"\\t";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case'"':return++c,'"';case"'":return++d,"'";case"\x00":return"\\0"}return a}),b&&(a=s(a)),c>d?"'"+a.replace(/\x27/g,"\\'")+"'":'"'+a.replace(/\x22/g,'\\"')+'"'}function s(a){return a.replace(/[\u0080-\uffff]/g,function(a){for(var b=a.charCodeAt(0).toString(16);b.length<4;)b="0"+b;return"\\u"+b})}function t(a,b){function d(a){var c=r(a,b.ascii_only);return b.inline_script&&(c=c.replace(/<\x2fscript([>/\t\n\f\r ])/gi,"<\\/script$1")),c}function e(a){return a=a.toString(),b.ascii_only&&(a=s(a)),a}function f(a){return null==a&&(a=""),H&&(a=v(" ",b.indent_start+K*b.indent_level)+a),a}function g(a,b){null==b&&(b=1),K+=b;try{return a.apply(null,A(arguments,1))}finally{K-=b}}function h(a){if(H)return a.join(" ");for(var b=[],c=0;cb.length?b:a}return l([a[0],l(a.slice(1))])}function m(a){if("function"==a[0]||"object"==a[0])for(var b=A(N.stack()),c=b.pop(),d=b.pop();d;){if("stat"==d[0])return!0;if(("seq"!=d[0]&&"call"!=d[0]&&"dot"!=d[0]&&"sub"!=d[0]&&"conditional"!=d[0]||d[1]!==c)&&("binary"!=d[0]&&"assign"!=d[0]&&"unary-postfix"!=d[0]||d[2]!==c))return!1;c=d,d=b.pop()}return!y(I,a[0])}function n(a){var b,c=a.toString(10),d=[c.replace(/^0\./,".")];return Math.floor(a)===a?(0>a?d.push("-0x"+(-a).toString(16).toLowerCase(),"-0"+(-a).toString(8)):d.push("0x"+a.toString(16).toLowerCase(),"0"+a.toString(8)),(b=/^(.*?)(0+)$/.exec(a))&&d.push(b[1]+"e"+b[2].length)):(b=/^0?\.(0+)(.*)$/.exec(a))&&d.push(b[2]+"e-"+(b[1].length+b[2].length),c.substr(c.indexOf("."))),l(d)}function o(a){if(null==a)return";";if("do"==a[0])return E([a]);for(var b=a;;){var c=b[0];if("if"==c){if(!b[3])return O(["block",[a]]);b=b[3]}else if("while"==c||"do"==c)b=b[2];else{if("for"!=c&&"for-in"!=c)break;b=b[4]}}return O(a)}function p(a,b,c,d){var f=d||"function";return a&&(f+=" "+e(a)),f+="("+i(F(b,e))+")",f=h([f,E(c)]),m(this)?"("+f+")":f}function q(a){switch(a[0]){case"with":case"while":return k(a[2]);case"for":case"for-in":return k(a[4]);case"if":return k(a[2])&&!a[3]?!0:a[3]?k(a[3])?!0:q(a[3]):q(a[2])}}function t(a,b){for(var c=[],d=a.length-1,e=0;d>=e;++e){var g=a[e],h=O(g);";"!=h&&(!H&&e==d&&!q(g)&&(h=h.replace(/;+\s*$/,"")),c.push(h))}return b?c:F(c,f)}function u(a){var b=a.length;return 0==b?"{}":"{"+L+F(a,function(a,c){var d=a[1].length>0,e=g(function(){return f(a[0]?h(["case",O(a[0])+":"]):"default:")},.5)+(d?L+g(function(){return t(a[1]).join(L)}):"");return!H&&d&&b-1>c&&(e+=";"),e}).join(L)+L+f("}")}function E(a){return a?0==a.length?"{}":"{"+L+g(function(){return t(a).join(L)})+L+f("}"):";"}function G(a){var b=a[0],c=a[1];return null!=c&&(b=h([e(b),"=",j(c,"seq")])),b}b=w(b,{indent_start:0,indent_level:4,quote_keys:!1,space_colon:!1,beautify:!1,ascii_only:!1,inline_script:!1});var H=!!b.beautify,K=0,L=H?"\n":"",M=H?" ":"",N=c(),O=N.walk;return N.with_walkers({string:d,num:n,name:e,toplevel:function(a){return t(a).join(L+L)},splice:function(a){var b=N.parent();return y(J,b)?E.apply(this,arguments):F(t(a,!0),function(a,b){return b>0?f(a):a}).join(L)},block:E,"var":function(a){return"var "+i(F(a,G))+";"},"const":function(a){return"const "+i(F(a,G))+";"},"try":function(a,b,c){var d=["try",E(a)];return b&&d.push("catch","("+b[0]+")",E(b[1])),c&&d.push("finally",E(c)),h(d)},"throw":function(a){return h(["throw",O(a)])+";"},"new":function(a,b){return b=b.length>0?"("+i(F(b,function(a){return j(a,"seq")}))+")":"",h(["new",j(a,"seq","binary","conditional","assign",function(a){var b=c(),d={};try{b.with_walkers({call:function(){throw d},"function":function(){return this}},function(){b.walk(a)})}catch(e){if(e===d)return!0;throw e}})+b])},"switch":function(a,b){return h(["switch","("+O(a)+")",u(b)])},"break":function(a){var b="break";return null!=a&&(b+=" "+e(a)),b+";"},"continue":function(a){var b="continue";return null!=a&&(b+=" "+e(a)),b+";"},conditional:function(a,b,c){return h([j(a,"assign","seq","conditional"),"?",j(b,"seq"),":",j(c,"seq")])},assign:function(a,b,c){return a&&a!==!0?a+="=":a="=",h([O(b),a,j(c,"seq")])},dot:function(a){var b=O(a),c=1;for("num"==a[0]?/\./.test(a[1])||(b+="."):m(a)&&(b="("+b+")");cC[c[1]]||"function"==c[0]&&m(this))&&(e="("+e+")"),B(d[0],["assign","conditional","seq"])||"binary"==d[0]&&C[a]>=C[d[1]]&&(d[1]!=a||!B(a,["&&","||","*"]))?f="("+f+")":!H&&b.inline_script&&("<"==a||"<<"==a)&&"regexp"==d[0]&&/^script/i.test(d[1])&&(f=" "+f),h([e,a,f])},"unary-prefix":function(a,b){var c=O(b);return"num"==b[0]||"unary-prefix"==b[0]&&!y(D,a+b[1])||!m(b)||(c="("+c+")"),a+(z.is_alphanumeric_char(a.charAt(0))?" ":"")+c},"unary-postfix":function(a,b){var c=O(b);return"num"==b[0]||"unary-postfix"==b[0]&&!y(D,a+b[1])||!m(b)||(c="("+c+")"),c+a},sub:function(a,b){var c=O(a);return m(a)&&(c="("+c+")"),c+"["+O(b)+"]"},object:function(a){var c=m(this);if(0==a.length)return c?"({})":"{}";var e="{"+L+g(function(){return F(a,function(a){if(3==a.length)return f(p(a[0],a[1][2],a[1][3],a[2]));var c=a[0],e=j(a[1],"seq");return b.quote_keys?c=d(c):("number"==typeof c||!H&&+c+""==c)&&parseFloat(c)>=0?c=n(+c):x(c)||(c=d(c)),f(h(H&&b.space_colon?[c,":",e]:[c+":",e]))}).join(","+L)})+L+f("}");return c?"("+e+")":e},regexp:function(a,b){return"/"+a+"/"+b},array:function(a){return 0==a.length?"[]":h(["[",i(F(a,function(b,c){return H||"atom"!=b[0]||"undefined"!=b[1]?j(b,"seq"):c===a.length-1?",":""})),"]"])},stat:function(a){return O(a).replace(/;*\s*$/,";")},seq:function(){return i(F(A(arguments),O))},label:function(a,b){return h([e(a),":",O(b)])},"with":function(a,b){return h(["with","("+O(a)+")",O(b)])},atom:function(a){return e(a)}},function(){return O(a)})}function u(a,b){var c=[0];return z.parse(function(){function d(a){return a.pos-i}function e(a){i=a.pos,c.push(i)}function f(){var a=h.apply(this,arguments);a:if((!g||"keyword"!=g.type)&&d(a)>b)switch(a.type){case"keyword":case"atom":case"name":case"punc":e(a);break a}return g=a,a}var g,h=z.tokenizer(a),i=0;return f.context=function(){return h.context.apply(this,arguments)},f}()),c.map(function(b,d){return a.substring(b,c[d+1]||a.length)}).join("\n")}function v(a,b){if(b>0){if(1==b)return a;var c=v(a,b>>1);return c+=c,1&b&&(c+=a),c}return""}function w(a,b){var c={};a===!0&&(a={});for(var d in b)y(b,d)&&(c[d]=a&&y(a,d)?a[d]:b[d]);return c}function x(a){return/^[a-z_$][a-z0-9_$]*$/i.test(a)&&"this"!=a&&!y(z.KEYWORDS_ATOM,a)&&!y(z.RESERVED_WORDS,a)&&!y(z.KEYWORDS,a)}function y(a,b){return Object.prototype.hasOwnProperty.call(a,b)}var z=a("./parse-js"),A=z.slice,B=z.member,C=z.PRECEDENCE,D=z.OPERATORS,E=function(){var a="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_";return function(b){var c="";do c=a.charAt(b%54)+c,b=Math.floor(b/54);while(b>0);return c}}();d.prototype={has:function(a){for(var b=this;b;b=b.parent)if(y(b.names,a))return b},has_mangled:function(a){for(var b=this;b;b=b.parent)if(y(b.rev_mangled,a))return b},toJSON:function(){return{names:this.names,uses_eval:this.uses_eval,uses_with:this.uses_with}},next_mangled:function(){for(;;){var a,b=E(++this.cname);if(a=this.has_mangled(b),!(a&&this.refs[a.rev_mangled[b]]===a||(a=this.has(b),a&&a!==this&&this.refs[b]===a&&!a.has_mangled(b)||y(this.refs,b)&&null==this.refs[b]||!x(b))))return b}},set_mangle:function(a,b){return this.rev_mangled[b]=a,this.mangled[a]=b},get_mangled:function(a,b){if(this.uses_eval||this.uses_with)return a;var c=this.has(a);return c?y(c.mangled,a)?c.mangled[a]:b?c.set_mangle(a,c.next_mangled()):a:a},references:function(a){return a&&!this.parent||this.uses_with||this.uses_eval||this.refs[a]},define:function(a,b){return null!=a?("var"!=b&&y(this.names,a)||(this.names[a]=b||"var"),a):void 0}};var F,G=function(){},H=function(){function a(c){switch(c[0]){case"string":case"num":return c[1];case"name":case"atom":switch(c[1]){case"true":return!0;case"false":return!1;case"null":return null}break;case"unary-prefix":switch(c[1]){case"!":return!a(c[2]);case"typeof":return typeof a(c[2]);case"~":return~a(c[2]);case"-":return-a(c[2]);case"+":return+a(c[2])}break;case"binary":var d=c[2],e=c[3];switch(c[1]){case"&&":return a(d)&&a(e);case"||":return a(d)||a(e);case"|":return a(d)|a(e);case"&":return a(d)&a(e);case"^":return a(d)^a(e);case"+":return a(d)+a(e);case"*":return a(d)*a(e);case"/":return a(d)/a(e);case"%":return a(d)%a(e);case"-":return a(d)-a(e);case"<<":return a(d)<>":return a(d)>>a(e);case">>>":return a(d)>>>a(e);case"==":return a(d)==a(e);case"===":return a(d)===a(e);case"!=":return a(d)!=a(e);case"!==":return a(d)!==a(e);case"<":return a(d)":return a(d)>a(e);case">=":return a(d)>=a(e);case"in":return a(d)in a(e);case"instanceof":return a(d)instanceof a(e)}}throw b}var b={};return function(c,d,e){try{var f,g=a(c);switch(typeof g){case"string":f=["string",g];break;case"number":f=["num",g];break;case"boolean":f=["name",String(g)];break;default:throw new Error("Can't handle constant of type: "+typeof g)}return d.call(c,f,g)}catch(h){if(h===b){if("binary"!=c[0]||"==="!=c[1]&&"!=="!=c[1]||!(l(c[2])&&l(c[3])||j(c[2])&&j(c[3]))){if(e&&"binary"==c[0]&&("||"==c[1]||"&&"==c[1]))try{var i=a(c[2]);c="&&"==c[1]&&(i?c[3]:i)||"||"==c[1]&&(i?i:c[3])||c}catch(k){}}else c[1]=c[1].substr(0,2);return e?e.call(c,c):null}throw h}}}(),I=z.array_to_hash(["name","array","object","string","dot","sub","call","regexp","defun"]),J=z.array_to_hash(["if","while","do","for","for-in","with"]);!function(){function a(a){this.v=a}function b(a){this.v=a}F=function(d,e,f){function g(){var g=e.call(f,d[h],h);g instanceof a?(g=g.v,g instanceof b?j.push.apply(j,g.v):j.push(g)):g!=c&&(g instanceof b?i.push.apply(i,g.v):i.push(g))}var h,i=[],j=[];if(d instanceof Array)for(h=0;hi;i++)e+=String.fromCharCode(f[i]);c.push(e)}else if("Blob"===b(a)||"File"===b(a)){if(!g)throw new h("NOT_READABLE_ERR");var k=new g;c.push(k.readAsBinaryString(a))}else a instanceof d?"base64"===a.encoding&&p?c.push(p(a.data)):"URI"===a.encoding?c.push(decodeURIComponent(a.data)):"raw"===a.encoding&&c.push(a.data):("string"!=typeof a&&(a+=""),c.push(unescape(encodeURIComponent(a))))},e.getBlob=function(a){return arguments.length||(a=null),new d(this.data.join(""),a,"raw")},e.toString=function(){return"[object BlobBuilder]"},f.slice=function(a,b,c){var e=arguments.length;return 3>e&&(c=null),new d(this.data.slice(a,e>1?b:this.data.length),c,this.encoding)},f.toString=function(){return"[object Blob]"},c}(a);return function(a,c){var d=c?c.type||"":"",e=new b;if(a)for(var f=0,g=a.length;g>f;f++)e.append(a[f]);return e.getBlob(d)}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content||this);else self.URL=webkitURL;/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */ +var saveAs=saveAs||navigator.msSaveOrOpenBlob&&navigator.msSaveOrOpenBlob.bind(navigator)||function(a){"use strict";if(!/MSIE [1-9]\./.test(navigator.userAgent)){var b=a.document,c=function(){return a.URL||a.webkitURL||a},d=a.URL||a.webkitURL||a,e=b.createElementNS("http://www.w3.org/1999/xhtml","a"),f=!a.externalHost&&"download"in e,g=a.webkitRequestFileSystem,h=a.requestFileSystem||g||a.mozRequestFileSystem,i=function(b){(a.setImmediate||a.setTimeout)(function(){throw b},0)},j="application/octet-stream",k=0,l=[],m=function(){for(var a=l.length;a--;){var b=l[a];"string"==typeof b?d.revokeObjectURL(b):b.remove()}l.length=0},n=function(a,b,c){b=[].concat(b);for(var d=b.length;d--;){var e=a["on"+b[d]];if("function"==typeof e)try{e.call(a,c||a)}catch(f){i(f)}}},o=function(d,i){var m,o,p,q=this,r=d.type,s=!1,t=function(){var a=c().createObjectURL(d);return l.push(a),a},u=function(){n(q,"writestart progress write writeend".split(" "))},v=function(){(s||!m)&&(m=t(d)),o?o.location.href=m:window.open(m,"_blank"),q.readyState=q.DONE,u()},w=function(a){return function(){return q.readyState!==q.DONE?a.apply(this,arguments):void 0}},x={create:!0,exclusive:!1};if(q.readyState=q.INIT,i||(i="download"),f){m=t(d),b=a.document,e=b.createElementNS("http://www.w3.org/1999/xhtml","a"),e.href=m,e.download=i;var y=b.createEvent("MouseEvents");return y.initMouseEvent("click",!0,!1,a,0,0,0,0,0,!1,!1,!1,!1,0,null),e.dispatchEvent(y),q.readyState=q.DONE,void u()}return a.chrome&&r&&r!==j&&(p=d.slice||d.webkitSlice,d=p.call(d,0,d.size,j),s=!0),g&&"download"!==i&&(i+=".download"),(r===j||g)&&(o=a),h?(k+=d.size,void h(a.TEMPORARY,k,w(function(a){a.root.getDirectory("saved",x,w(function(a){var b=function(){a.getFile(i,x,w(function(a){a.createWriter(w(function(b){b.onwriteend=function(b){o.location.href=a.toURL(),l.push(a),q.readyState=q.DONE,n(q,"writeend",b)},b.onerror=function(){var a=b.error;a.code!==a.ABORT_ERR&&v()},"writestart progress write abort".split(" ").forEach(function(a){b["on"+a]=q["on"+a]}),b.write(d),q.abort=function(){b.abort(),q.readyState=q.DONE},q.readyState=q.WRITING}),v)}),v)};a.getFile(i,{create:!1},w(function(a){a.remove(),b()}),w(function(a){a.code===a.NOT_FOUND_ERR?b():v()}))}),v)}),v)):void v()},p=o.prototype,q=function(a,b){return new o(a,b)};return p.abort=function(){var a=this;a.readyState=a.DONE,n(a,"abort")},p.readyState=p.INIT=0,p.WRITING=1,p.DONE=2,p.error=p.onwritestart=p.onprogress=p.onwrite=p.onabort=p.onerror=p.onwriteend=null,a.addEventListener("unload",m,!1),q}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content);"undefined"!=typeof module&&(module.exports=saveAs);/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ +var __js={"fileinput.js":"/* ===========================================================\n * Bootstrap: fileinput.js v3.1.0\n * http://jasny.github.com/bootstrap/javascript/#fileinput\n * ===========================================================\n * Copyright 2012-2014 Jasny BV, Netherlands.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\")\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ========================================================== */\n\n+function ($) { \"use strict\";\n\n var isIE = window.navigator.appName == 'Microsoft Internet Explorer'\n\n // FILEUPLOAD PUBLIC CLASS DEFINITION\n // =================================\n\n var Fileinput = function (element, options) {\n this.$element = $(element)\n \n this.$input = this.$element.find(':file')\n if (this.$input.length === 0) return\n\n this.name = this.$input.attr('name') || options.name\n\n this.$hidden = this.$element.find('input[type=hidden][name=\"' + this.name + '\"]')\n if (this.$hidden.length === 0) {\n this.$hidden = $('')\n this.$element.prepend(this.$hidden)\n }\n\n this.$preview = this.$element.find('.fileinput-preview')\n var height = this.$preview.css('height')\n if (this.$preview.css('display') != 'inline' && height != '0px' && height != 'none') this.$preview.css('line-height', height)\n\n this.original = {\n exists: this.$element.hasClass('fileinput-exists'),\n preview: this.$preview.html(),\n hiddenVal: this.$hidden.val()\n }\n \n this.listen()\n }\n \n Fileinput.prototype.listen = function() {\n this.$input.on('change.bs.fileinput', $.proxy(this.change, this))\n $(this.$input[0].form).on('reset.bs.fileinput', $.proxy(this.reset, this))\n \n this.$element.find('[data-trigger=\"fileinput\"]').on('click.bs.fileinput', $.proxy(this.trigger, this))\n this.$element.find('[data-dismiss=\"fileinput\"]').on('click.bs.fileinput', $.proxy(this.clear, this))\n },\n\n Fileinput.prototype.change = function(e) {\n if (e.target.files === undefined) e.target.files = e.target && e.target.value ? [ {name: e.target.value.replace(/^.+\\\\/, '')} ] : []\n if (e.target.files.length === 0) return\n\n this.$hidden.val('')\n this.$hidden.attr('name', '')\n this.$input.attr('name', this.name)\n\n var file = e.target.files[0]\n\n if (this.$preview.length > 0 && (typeof file.type !== \"undefined\" ? file.type.match('image.*') : file.name.match(/\\.(gif|png|jpe?g)$/i)) && typeof FileReader !== \"undefined\") {\n var reader = new FileReader()\n var preview = this.$preview\n var element = this.$element\n\n reader.onload = function(re) {\n var $img = $('') // .attr('src', re.target.result)\n $img[0].src = re.target.result\n e.target.files[0].result = re.target.result\n \n element.find('.fileinput-filename').text(file.name)\n \n // if parent has max-height, using `(max-)height: 100%` on child doesn't take padding and border into account\n if (preview.css('max-height') != 'none') $img.css('max-height', parseInt(preview.css('max-height'), 10) - parseInt(preview.css('padding-top'), 10) - parseInt(preview.css('padding-bottom'), 10) - parseInt(preview.css('border-top'), 10) - parseInt(preview.css('border-bottom'), 10))\n \n preview.html($img)\n element.addClass('fileinput-exists').removeClass('fileinput-new')\n\n element.trigger('change.bs.fileinput', e.target.files)\n }\n\n reader.readAsDataURL(file)\n } else {\n this.$element.find('.fileinput-filename').text(file.name)\n this.$preview.text(file.name)\n \n this.$element.addClass('fileinput-exists').removeClass('fileinput-new')\n \n this.$element.trigger('change.bs.fileinput')\n }\n },\n\n Fileinput.prototype.clear = function(e) {\n if (e) e.preventDefault()\n \n this.$hidden.val('')\n this.$hidden.attr('name', this.name)\n this.$input.attr('name', '')\n\n //ie8+ doesn't support changing the value of input with type=file so clone instead\n if (isIE) { \n var inputClone = this.$input.clone(true);\n this.$input.after(inputClone);\n this.$input.remove();\n this.$input = inputClone;\n } else {\n this.$input.val('')\n }\n\n this.$preview.html('')\n this.$element.find('.fileinput-filename').text('')\n this.$element.addClass('fileinput-new').removeClass('fileinput-exists')\n \n if (e !== false) {\n this.$input.trigger('change')\n this.$element.trigger('clear.bs.fileinput')\n }\n },\n\n Fileinput.prototype.reset = function() {\n this.clear(false)\n\n this.$hidden.val(this.original.hiddenVal)\n this.$preview.html(this.original.preview)\n this.$element.find('.fileinput-filename').text('')\n\n if (this.original.exists) this.$element.addClass('fileinput-exists').removeClass('fileinput-new')\n else this.$element.addClass('fileinput-new').removeClass('fileinput-exists')\n \n this.$element.trigger('reset.bs.fileinput')\n },\n\n Fileinput.prototype.trigger = function(e) {\n this.$input.trigger('click')\n e.preventDefault()\n }\n\n \n // FILEUPLOAD PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.fileinput\n \n $.fn.fileinput = function (options) {\n return this.each(function () {\n var $this = $(this),\n data = $this.data('fileinput')\n if (!data) $this.data('fileinput', (data = new Fileinput(this, options)))\n if (typeof options == 'string') data[options]()\n })\n }\n\n $.fn.fileinput.Constructor = Fileinput\n\n\n // FILEINPUT NO CONFLICT\n // ====================\n\n $.fn.fileinput.noConflict = function () {\n $.fn.fileinput = old\n return this\n }\n\n\n // FILEUPLOAD DATA-API\n // ==================\n\n $(document).on('click.fileinput.data-api', '[data-provides=\"fileinput\"]', function (e) {\n var $this = $(this)\n if ($this.data('fileinput')) return\n $this.fileinput($this.data())\n \n var $target = $(e.target).closest('[data-dismiss=\"fileinput\"],[data-trigger=\"fileinput\"]');\n if ($target.length > 0) {\n e.preventDefault()\n $target.trigger('click.bs.fileinput')\n }\n })\n\n}(window.jQuery);\n","inputmask.js":'/* ===========================================================\n * Bootstrap: inputmask.js v3.0.0-p7\n * http://jasny.github.io/bootstrap/javascript.html#inputmask\n * Based on Masked Input plugin by Josh Bush (digitalbush.com)\n * ===========================================================\n * Copyright 2012 Jasny BV, Netherlands.\n *\n * Licensed under the Apache License, Version 2.0 (the "License")\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an "AS IS" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ========================================================== */\n\n+function ($) { "use strict";\n\n var isIphone = (window.orientation !== undefined)\n var isAndroid = navigator.userAgent.toLowerCase().indexOf("android") > -1\n var isIE = window.navigator.appName == \'Microsoft Internet Explorer\'\n\n // INPUTMASK PUBLIC CLASS DEFINITION\n // =================================\n\n var Inputmask = function (element, options) {\n if (isAndroid) return // No support because caret positioning doesn\'t work on Android\n \n this.$element = $(element)\n this.options = $.extend({}, Inputmask.DEFAULS, options)\n this.mask = String(this.options.mask)\n \n this.init()\n this.listen()\n \n this.checkVal() //Perform initial check for existing values\n }\n\n Inputmask.DEFAULS = {\n mask: "",\n placeholder: "_",\n definitions: {\n \'9\': "[0-9]",\n \'a\': "[A-Za-z]",\n \'?\': "[A-Za-z0-9]",\n \'*\': "."\n }\n }\n\n Inputmask.prototype.init = function() {\n var defs = this.options.definitions\n var len = this.mask.length\n\n this.tests = [] \n this.partialPosition = this.mask.length\n this.firstNonMaskPos = null\n\n $.each(this.mask.split(""), $.proxy(function(i, c) {\n if (c == \'?\') {\n len--\n this.partialPosition = i\n } else if (defs[c]) {\n this.tests.push(new RegExp(defs[c]))\n if (this.firstNonMaskPos === null)\n this.firstNonMaskPos = this.tests.length - 1\n } else {\n this.tests.push(null)\n }\n }, this))\n\n this.buffer = $.map(this.mask.split(""), $.proxy(function(c, i) {\n if (c != \'?\') return defs[c] ? this.options.placeholder : c\n }, this))\n\n this.focusText = this.$element.val()\n\n this.$element.data("rawMaskFn", $.proxy(function() {\n return $.map(this.buffer, function(c, i) {\n return this.tests[i] && c != this.options.placeholder ? c : null\n }).join(\'\')\n }, this))\n }\n \n Inputmask.prototype.listen = function() {\n if (this.$element.attr("readonly")) return\n\n var pasteEventName = (isIE ? \'paste\' : \'input\') + ".mask"\n\n this.$element\n .on("unmask.bs.inputmask", $.proxy(this.unmask, this))\n\n .on("focus.bs.inputmask", $.proxy(this.focusEvent, this))\n .on("blur.bs.inputmask", $.proxy(this.blurEvent, this))\n\n .on("keydown.bs.inputmask", $.proxy(this.keydownEvent, this))\n .on("keypress.bs.inputmask", $.proxy(this.keypressEvent, this))\n\n .on(pasteEventName, $.proxy(this.pasteEvent, this))\n }\n\n //Helper Function for Caret positioning\n Inputmask.prototype.caret = function(begin, end) {\n if (this.$element.length === 0) return\n if (typeof begin == \'number\') {\n end = (typeof end == \'number\') ? end : begin\n return this.$element.each(function() {\n if (this.setSelectionRange) {\n this.setSelectionRange(begin, end)\n } else if (this.createTextRange) {\n var range = this.createTextRange()\n range.collapse(true)\n range.moveEnd(\'character\', end)\n range.moveStart(\'character\', begin)\n range.select()\n }\n })\n } else {\n if (this.$element[0].setSelectionRange) {\n begin = this.$element[0].selectionStart\n end = this.$element[0].selectionEnd\n } else if (document.selection && document.selection.createRange) {\n var range = document.selection.createRange()\n begin = 0 - range.duplicate().moveStart(\'character\', -100000)\n end = begin + range.text.length\n }\n return {\n begin: begin, \n end: end\n }\n }\n }\n \n Inputmask.prototype.seekNext = function(pos) {\n var len = this.mask.length\n while (++pos <= len && !this.tests[pos]);\n\n return pos\n }\n \n Inputmask.prototype.seekPrev = function(pos) {\n while (--pos >= 0 && !this.tests[pos]);\n\n return pos\n }\n\n Inputmask.prototype.shiftL = function(begin,end) {\n var len = this.mask.length\n\n if (begin < 0) return\n\n for (var i = begin, j = this.seekNext(end); i < len; i++) {\n if (this.tests[i]) {\n if (j < len && this.tests[i].test(this.buffer[j])) {\n this.buffer[i] = this.buffer[j]\n this.buffer[j] = this.options.placeholder\n } else\n break\n j = this.seekNext(j)\n }\n }\n this.writeBuffer()\n this.caret(Math.max(this.firstNonMaskPos, begin))\n }\n\n Inputmask.prototype.shiftR = function(pos) {\n var len = this.mask.length\n\n for (var i = pos, c = this.options.placeholder; i < len; i++) {\n if (this.tests[i]) {\n var j = this.seekNext(i)\n var t = this.buffer[i]\n this.buffer[i] = c\n if (j < len && this.tests[j].test(t))\n c = t\n else\n break\n }\n }\n },\n\n Inputmask.prototype.unmask = function() {\n this.$element\n .unbind(".mask")\n .removeData("inputmask")\n }\n\n Inputmask.prototype.focusEvent = function() {\n this.focusText = this.$element.val()\n var len = this.mask.length \n var pos = this.checkVal()\n this.writeBuffer()\n\n var that = this\n var moveCaret = function() {\n if (pos == len)\n that.caret(0, pos)\n else\n that.caret(pos)\n }\n\n moveCaret()\n setTimeout(moveCaret, 50)\n }\n\n Inputmask.prototype.blurEvent = function() {\n this.checkVal()\n if (this.$element.val() !== this.focusText)\n this.$element.trigger(\'change\')\n }\n\n Inputmask.prototype.keydownEvent = function(e) {\n var k = e.which\n\n //backspace, delete, and escape get special treatment\n if (k == 8 || k == 46 || (isIphone && k == 127)) {\n var pos = this.caret(),\n begin = pos.begin,\n end = pos.end\n\n if (end - begin === 0) {\n begin = k != 46 ? this.seekPrev(begin) : (end = this.seekNext(begin - 1))\n end = k == 46 ? this.seekNext(end) : end\n }\n this.clearBuffer(begin, end)\n this.shiftL(begin, end - 1)\n\n return false\n } else if (k == 27) {//escape\n this.$element.val(this.focusText)\n this.caret(0, this.checkVal())\n return false\n }\n }\n\n Inputmask.prototype.keypressEvent = function(e) {\n var len = this.mask.length\n\n var k = e.which,\n pos = this.caret()\n\n if (e.ctrlKey || e.altKey || e.metaKey || k < 32) {//Ignore\n return true\n } else if (k) {\n if (pos.end - pos.begin !== 0) {\n this.clearBuffer(pos.begin, pos.end)\n this.shiftL(pos.begin, pos.end - 1)\n }\n\n var p = this.seekNext(pos.begin - 1)\n if (p < len) {\n var c = String.fromCharCode(k)\n if (this.tests[p].test(c)) {\n this.shiftR(p)\n this.buffer[p] = c\n this.writeBuffer()\n var next = this.seekNext(p)\n this.caret(next)\n }\n }\n return false\n }\n }\n\n Inputmask.prototype.pasteEvent = function() {\n var that = this\n\n setTimeout(function() {\n that.caret(that.checkVal(true))\n }, 0)\n }\n\n Inputmask.prototype.clearBuffer = function(start, end) {\n var len = this.mask.length\n\n for (var i = start; i < end && i < len; i++) {\n if (this.tests[i])\n this.buffer[i] = this.options.placeholder\n }\n }\n\n Inputmask.prototype.writeBuffer = function() {\n return this.$element.val(this.buffer.join(\'\')).val()\n }\n\n Inputmask.prototype.checkVal = function(allow) {\n var len = this.mask.length\n //try to place characters where they belong\n var test = this.$element.val()\n var lastMatch = -1\n\n for (var i = 0, pos = 0; i < len; i++) {\n if (this.tests[i]) {\n this.buffer[i] = this.options.placeholder\n while (pos++ < test.length) {\n var c = test.charAt(pos - 1)\n if (this.tests[i].test(c)) {\n this.buffer[i] = c\n lastMatch = i\n break\n }\n }\n if (pos > test.length)\n break\n } else if (this.buffer[i] == test.charAt(pos) && i != this.partialPosition) {\n pos++\n lastMatch = i\n }\n }\n if (!allow && lastMatch + 1 < this.partialPosition) {\n this.$element.val("")\n this.clearBuffer(0, len)\n } else if (allow || lastMatch + 1 >= this.partialPosition) {\n this.writeBuffer()\n if (!allow) this.$element.val(this.$element.val().substring(0, lastMatch + 1))\n }\n return (this.partialPosition ? i : this.firstNonMaskPos)\n }\n\n \n // INPUTMASK PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.inputmask\n \n $.fn.inputmask = function (options) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data(\'inputmask\')\n \n if (!data) $this.data(\'inputmask\', (data = new Inputmask(this, options)))\n })\n }\n\n $.fn.inputmask.Constructor = Inputmask\n\n\n // INPUTMASK NO CONFLICT\n // ====================\n\n $.fn.inputmask.noConflict = function () {\n $.fn.inputmask = old\n return this\n }\n\n\n // INPUTMASK DATA-API\n // ==================\n\n $(document).on(\'focus.bs.inputmask.data-api\', \'[data-mask]\', function (e) {\n var $this = $(this)\n if ($this.data(\'inputmask\')) return\n $this.inputmask($this.data())\n })\n\n}(window.jQuery);\n',"offcanvas.js":"/* ========================================================================\n * Bootstrap: offcanvas.js v3.0.3-p7\n * http://jasny.github.io/bootstrap/javascript.html#offcanvas\n * \n * Based on Boostrap collapse.js by Twitter, Inc. \n * ========================================================================\n * Copyright 2013 Jasny, BV.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\")\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n+function ($) { \"use strict\";\n\n // OFFCANVAS PUBLIC CLASS DEFINITION\n // =================================\n\n var OffCanvas = function (element, options) {\n this.$element = $(element)\n this.options = $.extend({}, OffCanvas.DEFAULTS, options)\n this.state = null\n \n if (this.options.recalc) {\n this.calcClone()\n $(window).on('resize', $.proxy(this.recalc, this))\n }\n \n if (this.options.autohide)\n $(document).on('click', $.proxy(this.autohide, this))\n\n if (this.options.toggle) this.toggle()\n }\n\n OffCanvas.DEFAULTS = {\n toggle: true,\n placement: 'left',\n autohide: true,\n recalc: true\n }\n\n OffCanvas.prototype.offset = function () {\n switch (this.options.placement) {\n case 'left':\n case 'right': return this.$element.outerWidth()\n case 'top':\n case 'bottom': return this.$element.outerHeight()\n }\n }\n \n OffCanvas.prototype.calcPlacement = function () {\n var horizontal = $(window).width() / this.$element.width(),\n vertical = $(window).height() / this.$element.height()\n \n if (!this.$element.hasClass('in')) {\n this.$element.css('visiblity', 'hidden !important').addClass('in')\n } \n \n var element = this.$element\n function ab(a, b) {\n if (element.css(b) === 'auto') return a\n if (element.css(a) === 'auto') return b\n \n var size_a = parseInt(element.css(a), 10),\n size_b = parseInt(element.css(b), 10)\n \n return size_a > size_b ? b : a\n }\n \n this.options.placement = horizontal > vertical ? ab('left', 'right') : ab('top', 'bottom')\n \n if (this.$element.css('visibility') === 'hidden !important') {\n this.$element.removeClass('in').css('visiblity', '')\n }\n }\n \n OffCanvas.prototype.opposite = function (placement) {\n switch (placement) {\n case 'top': return 'bottom'\n case 'left': return 'right'\n case 'bottom': return 'top'\n case 'right': return 'left'\n }\n }\n \n OffCanvas.prototype.getCanvasElements = function() {\n // Return a set containing the canvas plus all fixed elements\n var canvas = this.options.canvas ? $(this.options.canvas) : this.$element\n \n var fixed_elements = canvas.find('*').filter(function() {\n return $(this).css('position') === 'fixed'\n }).not(this.options.exclude)\n \n return canvas.add(fixed_elements)\n }\n \n OffCanvas.prototype.slide = function (elements, offset, callback) {\n // Use jQuery animation if CSS transitions aren't supported\n if (!$.support.transition) {\n var anim = {}\n anim[this.options.placement] = \"+=\" + offset\n return elements.animate(anim, 350, callback)\n }\n\n var placement = this.options.placement,\n opposite = this.opposite(placement)\n \n elements.each(function() {\n if ($(this).css(placement) !== 'auto')\n $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset)\n \n if ($(this).css(opposite) !== 'auto')\n $(this).css(opposite, (parseInt($(this).css(opposite), 10) || 0) - offset)\n })\n \n this.$element\n .one($.support.transition.end, callback)\n .emulateTransitionEnd(350)\n }\n\n OffCanvas.prototype.disableScrolling = function() {\n var bodyWidth = $('body').width()\n var prop = 'padding-' + this.opposite(this.options.placement)\n\n if ($('body').data('offcanvas-style') === undefined) $('body').data('offcanvas-style', $('body').attr('style'))\n \n $('body').css('overflow', 'hidden')\n\n if ($('body').width() > bodyWidth) {\n var padding = parseInt($('body').css(prop), 10) + $('body').width() - bodyWidth\n \n setTimeout(function() {\n $('body').css(prop, padding)\n }, 1)\n }\n }\n\n OffCanvas.prototype.show = function () {\n if (this.state) return\n \n var startEvent = $.Event('show.bs.offcanvas')\n this.$element.trigger(startEvent)\n if (startEvent.isDefaultPrevented()) return\n\n if (this.options.placement === 'auto') this.calcPlacement()\n\n this.state = 'sliding'\n\n var elements = this.getCanvasElements()\n var offset = this.offset(),\n placement = this.options.placement,\n opposite = this.opposite(placement)\n\n elements.addClass('canvas-sliding').each(function() {\n $(this).data('offcanvas-style', $(this).attr('style') || '')\n if ($(this).css('position') === 'static') $(this).css('position', 'relative')\n if (($(this).css(placement) === 'auto' || $(this).css(placement) === '0px') &&\n ($(this).css(opposite) === 'auto' || $(this).css(opposite) === '0px')) {\n $(this).css(placement, 0)\n }\n })\n \n if (elements.index(this.$element) !== -1) this.$element.css(placement, -1 * offset)\n\n this.disableScrolling()\n \n var complete = function () {\n this.state = 'slid'\n\n elements.removeClass('canvas-sliding').addClass('canvas-slid')\n this.$element.trigger('shown.bs.offcanvas')\n }\n\n setTimeout($.proxy(function() {\n this.$element.addClass('in')\n this.slide(elements, offset, $.proxy(complete, this))\n }, this), 1)\n }\n\n OffCanvas.prototype.hide = function (fast) {\n if (this.state !== 'slid') return\n\n var startEvent = $.Event('hide.bs.offcanvas')\n this.$element.trigger(startEvent)\n if (startEvent.isDefaultPrevented()) return\n\n this.state = 'sliding'\n\n var elements = $('.canvas-slid')\n var offset = -1 * this.offset()\n\n var complete = function () {\n this.state = null\n\n this.$element.removeClass('in')\n \n elements.removeClass('canvas-sliding')\n elements.add('body').each(function() {\n $(this).attr('style', $(this).data('offcanvas-style')).removeData('offcanvas-style')\n })\n\n this.$element.trigger('hidden.bs.offcanvas')\n }\n\n elements.removeClass('canvas-slid').addClass('canvas-sliding')\n \n setTimeout($.proxy(function() {\n this.slide(elements, offset, $.proxy(complete, this))\n }, this), 1)\n }\n\n OffCanvas.prototype.toggle = function () {\n if (this.state === 'sliding') return\n this[this.state === 'slid' ? 'hide' : 'show']()\n }\n\n OffCanvas.prototype.calcClone = function() {\n this.$calcClone = this.$element.clone()\n .html('')\n .addClass('offcanvas-clone').removeClass('in')\n .appendTo($('body'))\n }\n\n OffCanvas.prototype.recalc = function () {\n if (this.state() !== 'slid' || this.$calcClone.css('display') === 'none') return\n \n var offset = -1 * this.offset()\n \n var placement = this.options.placement\n this.getCanvasElements().each(function() {\n $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset)\n }).removeClass('canvas-slid')\n \n $('body').css('overflow', '')\n this.$element.css(placement, '').removeClass('in canvas-slid')\n }\n \n OffCanvas.prototype.autohide = function (e) {\n if ($(e.target).closest(this.$element).length === 0) this.hide()\n }\n\n // OFFCANVAS PLUGIN DEFINITION\n // ==========================\n\n var old = $.fn.offcanvas\n\n $.fn.offcanvas = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.offcanvas')\n var options = $.extend({}, OffCanvas.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n if (!data) $this.data('bs.offcanvas', (data = new OffCanvas(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.offcanvas.Constructor = OffCanvas\n\n\n // OFFCANVAS NO CONFLICT\n // ====================\n\n $.fn.offcanvas.noConflict = function () {\n $.fn.offcanvas = old\n return this\n }\n\n\n // OFFCANVAS DATA-API\n // =================\n\n $(document).on('click.bs.offcanvas.data-api', '[data-toggle=offcanvas]', function (e) {\n var $this = $(this), href\n var target = $this.attr('data-target')\n || e.preventDefault()\n || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '') //strip for ie7\n var $canvas = $(target)\n var data = $canvas.data('bs.offcanvas')\n var option = data ? 'toggle' : $this.data()\n\n e.stopPropagation()\n\n if (data) data.toggle()\n else $canvas.offcanvas(option)\n })\n\n}(window.jQuery);\n","rowlink.js":"/* ============================================================\n * Bootstrap: rowlink.js v3.0.0-p7\n * http://jasny.github.io/bootstrap/javascript.html#rowlink\n * ============================================================\n * Copyright 2012 Jasny BV, Netherlands.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ============================================================ */\n\n+function ($) { \"use strict\";\n\n var Rowlink = function (element, options) {\n this.$element = $(element)\n this.options = $.extend({}, Rowlink.DEFAULTS, options)\n \n this.$element.on('click.bs.rowlink', 'td:not(.rowlink-skip)', $.proxy(this.click, this))\n }\n\n Rowlink.DEFAULTS = {\n target: \"a\"\n }\n\n Rowlink.prototype.click = function(e) {\n var target = $(e.currentTarget).closest('tr').find(this.options.target)[0]\n if ($(e.target)[0] === target) return\n \n e.preventDefault();\n \n if (target.click) {\n target.click()\n } else if (document.createEvent) {\n var evt = document.createEvent(\"MouseEvents\"); \n evt.initMouseEvent(\"click\", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); \n target.dispatchEvent(evt);\n }\n }\n\n \n // ROWLINK PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.rowlink\n\n $.fn.rowlink = function (options) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('rowlink')\n if (!data) $this.data('rowlink', (data = new Rowlink(this, options)))\n })\n }\n\n $.fn.rowlink.Constructor = Rowlink\n\n\n // ROWLINK NO CONFLICT\n // ====================\n\n $.fn.rowlink.noConflict = function () {\n $.fn.rowlink = old\n return this\n }\n\n\n // ROWLINK DATA-API\n // ==================\n\n $(document).on('click.bs.rowlink.data-api', '[data-link=\"row\"]', function (e) {\n var $this = $(this)\n if ($this.data('rowlink')) return\n $this.rowlink($this.data())\n $(e.target).trigger('click.bs.rowlink')\n })\n \n}(window.jQuery);\n"},__less={"alerts-fixed.less":"// Fixed alerts\n//\n// Position to the top or bottom.\n\n.alert-fixed-top,\n.alert-fixed-bottom {\n position: fixed;\n width: 100%;\n z-index: @zindex-alert-fixed;\n border-radius: 0;\n margin: 0;\n left: 0;\n\n @media (min-width: @alert-fixed-width) {\n width: @alert-fixed-width;\n left: 50%;\n margin-left: (-1 * (@alert-fixed-width / 2));\n }\n}\n\n.alert-fixed-top {\n top: 0;\n border-width: 0 0 1px 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-bottom-radius(@alert-border-radius);\n border-width: 0 1px 1px 1px;\n }\n}\n\n.alert-fixed-bottom {\n bottom: 0;\n border-width: 1px 0 0 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-top-radius(@alert-border-radius);\n border-width: 1px 1px 0 1px;\n }\n}\n","button-labels.less":"// Labels for buttons\n// --------------------------------------------------\n\n.btn-labeled {\n padding-top: 0;\n padding-bottom: 0;\n}\n\n.btn-label {\n position: relative;\n background: transparent;\n background: rgba(0, 0, 0, 0.15);\n display: inline-block;\n .button-label-size(@padding-base-vertical; @padding-base-horizontal; @border-radius-base);\n}\n\n.btn-lg .btn-label {\n .button-label-size(@padding-large-vertical; @padding-large-horizontal; @border-radius-large);\n}\n.btn-sm .btn-label {\n .button-label-size(@padding-small-vertical; @padding-small-horizontal; @border-radius-small);\n}\n.btn-xs .btn-label {\n .button-label-size(1px; 5px; @border-radius-small);\n}\n","fileinput.less":"// Fileinput.less\n// CSS for file upload button and fileinput widget\n// ------------------------------------------------\n\n.btn-file {\n overflow: hidden;\n position: relative;\n vertical-align: middle;\n > input {\n position: absolute;\n top: 0;\n right: 0;\n margin: 0;\n opacity: 0;\n filter: alpha(opacity=0);\n transform: translate(-300px, 0) scale(4);\n font-size: 23px;\n height: 100%;\n direction: ltr;\n cursor: pointer;\n }\n}\n\n.fileinput {\n margin-bottom: 9px;\n display: inline-block;\n .form-control {\n padding-top: 7px;\n padding-bottom: 5px;\n display: inline-block;\n margin-bottom: 0px;\n vertical-align: middle;\n cursor: text;\n }\n .thumbnail {\n overflow: hidden;\n display: inline-block;\n margin-bottom: 5px;\n vertical-align: middle;\n text-align: center;\n > img {\n max-height: 100%;\n }\n }\n .btn {\n vertical-align: middle;\n }\n}\n.fileinput-exists .fileinput-new,\n.fileinput-new .fileinput-exists {\n display: none;\n}\n.fileinput-inline .fileinput-controls {\n display: inline;\n}\n\n.fileinput-filename {\n vertical-align: middle;\n display: inline-block;\n overflow: hidden;\n}\n.form-control .fileinput-filename {\n vertical-align: bottom;\n}\n\n// Not 100% correct, but helps in typical use case\n.fileinput-new .input-group .btn-file {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n}\n.fileinput-new .input-group .btn-file.btn-xs,\n.fileinput-new .input-group .btn-file.btn-sm {\n border-radius: 0 @border-radius-small @border-radius-small 0;\n}\n.fileinput-new .input-group .btn-file.btn-lg {\n border-radius: 0 @border-radius-large @border-radius-large 0;\n}\n\n.form-group.has-warning .fileinput {\n .fileinput-preview {\n color: @state-warning-text;\n }\n .thumbnail {\n border-color: @state-warning-border;\n }\n}\n.form-group.has-error .fileinput {\n .fileinput-preview {\n color: @state-danger-text;\n }\n .thumbnail {\n border-color: @state-danger-border;\n }\n}\n.form-group.has-success .fileinput {\n .fileinput-preview {\n color: @state-success-text;\n }\n .thumbnail {\n border-color: @state-success-border;\n }\n}\n\n\n// Input group fixes\n\n.input-group-addon:not(:first-child) {\n border-left: 0;\n}\n","grid-container-smooth.less":"// Smooth sizing container\n// -------------------------\n\n@media (min-width: 1px) {\n .container-smooth {\n max-width: @container-lg;\n }\n}\n\n","jasny-bootstrap.less":'// Twitter Bootstrap\'s "variables.less" should already be imported\n\n// Core variables and mixins\n@import "variables.less";\n@import "mixins.less";\n\n// Core CSS\n@import "grid-container-smooth.less";\n@import "button-labels.less";\n\n// Components\n@import "nav-tab-alignment.less";\n@import "navmenu.less";\n@import "alerts-fixed.less";\n\n// Components w/ JavaScript\n@import "offcanvas.less";\n@import "rowlink.less";\n@import "fileinput.less";\n',"mixins.less":"//\n// Mixins\n// --------------------------------------------------\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n\n// BUTTONS\n// --------------------------------------------------\n\n.button-label-size(@padding-vertical; @padding-horizontal; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n left: (-1 * @padding-horizontal);\n border-radius: (@border-radius - 1px) 0 0 (@border-radius - 1px);\n\n &.btn-label-right {\n left: auto;\n right: (-1 * @padding-horizontal);\n border-radius: 0 (@border-radius - 1px) (@border-radius - 1px) 0;\n }\n}\n","nav-tab-alignment.less":"// Alignment options\n// -------------------------\n\n// bottom\n.nav-tabs-bottom {\n border-bottom: 0;\n border-top: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-top: -1px;\n\n > a {\n border-radius: 0 0 @border-radius-base @border-radius-base;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-top-color: transparent;\n }\n }\n}\n\n// left\n.nav-tabs-left {\n border-bottom: 0;\n border-right: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-right: -1px;\n float: none;\n\n > a {\n border-radius: @border-radius-base 0 0 @border-radius-base;\n margin-right: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-right-color: transparent;\n }\n }\n\n .row > & {\n padding-right: 0;\n padding-left: (@grid-gutter-width / 2);\n margin-right: -1px;\n position: relative;\n z-index: 1;\n\n & + .tab-content {\n border-left: 1px solid @nav-tabs-active-link-hover-border-color;\n }\n }\n}\n\n// right\n.nav-tabs-right {\n border-bottom: 0;\n border-left: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-left: -1px;\n float: none;\n\n > a {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n margin-left: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-left-color: transparent;\n }\n }\n\n .row > & {\n padding-left: 0;\n padding-right: (@grid-gutter-width / 2);\n }\n}\n","navmenu.less":"//\n// Navmenu and offcanvas navbar\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navmenu from which we expand to create the fixed navmenu\n// variations.\n\n.navmenu,\n.navbar-offcanvas {\n width: @navmenu-width;\n height: 100%;\n border-width: 1px;\n border-style: solid;\n border-radius: @border-radius-base;\n}\n\n.navmenu-fixed-left,\n.navmenu-fixed-right,\n.navbar-offcanvas {\n position: fixed;\n z-index: @zindex-navmenu-fixed;\n top: 0;\n border-radius: 0;\n}\n.navmenu-fixed-left,\n.navbar-offcanvas {\n left: 0;\n border-width: 0 1px 0 0;\n}\n.navmenu-fixed-right {\n right: 0;\n border-width: 0 0 0 1px;\n}\n\n.navmenu-nav {\n margin-bottom: @navmenu-margin-vertical;\n\n &.dropdown-menu {\n position: static;\n margin: 0;\n padding-top: 0;\n float: none;\n border: none;\n .box-shadow(none);\n border-radius: 0;\n }\n}\n\n.navbar-offcanvas {\n .navbar-nav {\n margin: 0;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.offcanvas {\n position: static;\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n // Account for first and last children spacing\n .navbar-nav.navbar-left:first-child {\n margin-left: -@navbar-padding-horizontal;\n }\n .navbar-nav.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n\n .navmenu-brand {\n display: none;\n }\n }\n}\n\n// Brand/project name\n\n.navmenu-brand {\n display: block;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n }\n margin: @navmenu-margin-vertical 0;\n}\n\n// Alternate navmenus\n// --------------------------------------------------\n\n// Default navmenu\n.navmenu-default,\n.navbar-default .navbar-offcanvas {\n background-color: @navmenu-default-bg;\n border-color: @navmenu-default-border;\n\n .navmenu-brand {\n color: @navmenu-default-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-default-brand-hover-color;\n background-color: @navmenu-default-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-default-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-default-link-hover-color;\n border-bottom-color: @navmenu-default-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-default-link-active-bg;\n color: @navmenu-default-link-active-color;\n .caret {\n border-top-color: @navmenu-default-link-active-color;\n border-bottom-color: @navmenu-default-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-default-link-color;\n border-bottom-color: @navmenu-default-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-default-link-active-bg;\n & > .divider {\n background-color: @navmenu-default-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-default-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-default-link-color;\n &:hover,\n &:focus {\n color: @navmenu-default-link-hover-color;\n background-color: @navmenu-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-active-color;\n background-color: @navmenu-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-disabled-color;\n background-color: @navmenu-default-link-disabled-bg;\n }\n }\n }\n}\n\n// Inverse navmenu\n.navmenu-inverse,\n.navbar-inverse .navbar-offcanvas {\n background-color: @navmenu-inverse-bg;\n border-color: @navmenu-inverse-border;\n\n .navmenu-brand {\n color: @navmenu-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-brand-hover-color;\n background-color: @navmenu-inverse-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-inverse-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-inverse-link-hover-color;\n border-bottom-color: @navmenu-inverse-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-inverse-link-active-bg;\n color: @navmenu-inverse-link-active-color;\n .caret {\n border-top-color: @navmenu-inverse-link-active-color;\n border-bottom-color: @navmenu-inverse-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-inverse-link-color;\n border-bottom-color: @navmenu-inverse-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-inverse-link-active-bg;\n & > .divider {\n background-color: @navmenu-inverse-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-inverse-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-inverse-link-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-hover-color;\n background-color: @navmenu-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-active-color;\n background-color: @navmenu-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-disabled-color;\n background-color: @navmenu-inverse-link-disabled-bg;\n }\n }\n }\n}\n","offcanvas.less":"//\n// Off canvas navigation\n// --------------------------------------------------\n\n.offcanvas {\n display: none;\n &.in {\n display: block;\n }\n}\n\n@media (max-width: @screen-xs-max) {\n .offcanvas-xs {\n .offcanvas;\n }\n}\n@media (max-width: @screen-sm-max) {\n .offcanvas-sm {\n .offcanvas;\n }\n}\n@media (max-width: @screen-md-max) {\n .offcanvas-md {\n .offcanvas;\n }\n}\n.offcanvas-lg {\n .offcanvas;\n}\n\n.canvas-sliding {\n -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n}\n\n.offcanvas-clone {\n height: 0px !important;\n width: 0px !important;\n overflow: hidden !important;\n border: none !important;\n margin: 0px !important;\n padding: 0px !important;\n position: absolute !important;\n top: auto !important;\n left: auto !important;\n bottom: 0px !important;\n right: 0px !important;\n opacity: 0 !important;\n}\n","rowlink.less":"//\n// Rowlink\n// --------------------------------------------------\n\n.table.rowlink,\n.table .rowlink {\n td:not(.rowlink-skip) {\n cursor: pointer;\n\n a {\n color: inherit;\n font: inherit;\n text-decoration: inherit;\n }\n }\n}\n\n.table-hover.rowlink,\n.table-hover .rowlink {\n tr:hover td {\n background-color: darken(@table-bg-hover, 15%);\n }\n}\n","variables.less":"//\n// These variables are used when Jasny Bootstrap is built\n// without importing Twitter Bootstrap.\n// --------------------------------------------------------\n\n//-- Colors\n//\n//## Gray colors for use across Bootstrap.\n\n@gray-darker: lighten(#000, 13.5%); // #222\n@gray-dark: lighten(#000, 20%); // #333\n@gray: lighten(#000, 33.5%); // #555\n@gray-light: lighten(#000, 60%); // #999\n@gray-lighter: lighten(#000, 93.5%); // #eee\n\n//-- Typography\n//\n//## Font size and line-height.\n\n@font-size-base: 14px;\n@font-size-large: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-small: ceil((@font-size-base * 0.85)); // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n@line-height-base: 1.428571429; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px\n\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n@padding-base-vertical: 6px;\n@padding-base-horizontal: 12px;\n\n@padding-large-vertical: 10px;\n@padding-large-horizontal: 16px;\n\n@padding-small-vertical: 5px;\n@padding-small-horizontal: 10px;\n\n@padding-xs-vertical: 1px;\n@padding-xs-horizontal: 5px;\n\n@line-height-large: 1.33;\n@line-height-small: 1.5;\n\n@border-radius-base: 4px;\n@border-radius-large: 6px;\n@border-radius-small: 3px;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n//** Background color used for `.table-hover`.\n@table-bg-hover: #f5f5f5;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n@zindex-navmenu-fixed: 1030;\n@zindex-alert-fixed: 1035;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n@screen-xs: 480px;\n\n// Small screen / tablet\n@screen-sm: 768px;\n\n// Medium screen / desktop\n@screen-md: 992px;\n\n// Large screen / wide desktop\n@screen-lg: 1200px;\n\n//-- So media queries don't overlap when required, provide a maximum\n//\n// Note: These variables are not generated into the Customizer.\n@screen-xs-min: @screen-xs;\n@screen-sm-min: @screen-sm;\n@screen-md-min: @screen-md;\n@screen-lg-min: @screen-lg;\n\n@screen-xs-max: (@screen-sm-min - 1);\n@screen-sm-max: (@screen-md-min - 1);\n@screen-md-max: (@screen-lg-min - 1);\n\n//--\n@container-lg: ((1140px + @grid-gutter-width));\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n//** Padding between columns. Gets divided in half for the left and right.\n@grid-gutter-width: 30px;\n//** Point at which the navbar becomes uncollapsed.\n@grid-float-breakpoint: 768px;\n\n//** Maximum with of a smooth container.\n@container-smooth: @container-lg;\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n@navbar-height: 50px;\n@navbar-padding-horizontal: floor((@grid-gutter-width / 2));\n@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);\n\n\n//== Navmenu\n//\n//##\n\n// Basics of a navmenu\n@navmenu-width: 300px;\n@navmenu-margin-vertical: (0.5 * @line-height-computed);\n@navmenu-default-color: #777;\n@navmenu-default-bg: #f8f8f8;\n@navmenu-default-border: darken(@navmenu-default-bg, 6.5%);\n\n// Navmenu links\n@navmenu-default-link-color: #777;\n@navmenu-default-link-hover-color: #333;\n@navmenu-default-link-hover-bg: transparent;\n@navmenu-default-link-active-color: #555;\n@navmenu-default-link-active-bg: darken(@navmenu-default-bg, 6.5%);\n@navmenu-default-link-disabled-color: #ccc;\n@navmenu-default-link-disabled-bg: transparent;\n\n// Navmenu brand label\n@navmenu-default-brand-color: @navmenu-default-link-color;\n@navmenu-default-brand-hover-color: darken(@navmenu-default-link-color, 10%);\n@navmenu-default-brand-hover-bg: transparent;\n\n\n// Inverted navmenu\n//\n// Reset inverted navmenu basics\n@navmenu-inverse-color: @gray-light;\n@navmenu-inverse-bg: #222;\n@navmenu-inverse-border: darken(@navmenu-inverse-bg, 10%);\n\n// Inverted navmenu links\n@navmenu-inverse-link-color: @gray-light;\n@navmenu-inverse-link-hover-color: #fff;\n@navmenu-inverse-link-hover-bg: transparent;\n@navmenu-inverse-link-active-color: @navmenu-inverse-link-hover-color;\n@navmenu-inverse-link-active-bg: darken(@navmenu-inverse-bg, 10%);\n@navmenu-inverse-link-disabled-color: #444;\n@navmenu-inverse-link-disabled-bg: transparent;\n\n// Inverted navmenu brand label\n@navmenu-inverse-brand-color: @navmenu-inverse-link-color;\n@navmenu-inverse-brand-hover-color: #fff;\n@navmenu-inverse-brand-hover-bg: transparent;\n\n// Inverted navmenu search\n// Normal navmenu needs no special styles or vars\n@navmenu-inverse-search-bg: lighten(@navmenu-inverse-bg, 25%);\n@navmenu-inverse-search-bg-focus: #fff;\n@navmenu-inverse-search-border: @navmenu-inverse-bg;\n@navmenu-inverse-search-placeholder-color: #ccc;\n\n\n//== Navs\n//\n//##\n\n@nav-link-padding: 10px 15px;\n@nav-tabs-active-link-hover-border-color: #ddd;\n@nav-tabs-border-color: #ddd;\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n@state-success-text: #3c763d;\n@state-success-bg: #dff0d8;\n@state-success-border: darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text: #31708f;\n@state-info-bg: #d9edf7;\n@state-info-border: darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text: #8a6d3b;\n@state-warning-bg: #fcf8e3;\n@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text: #a94442;\n@state-danger-bg: #f2dede;\n@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n@alert-border-radius: @border-radius-base;\n@alert-fixed-width: @screen-md;\n"}; +/*! + * Bootstrap Customizer (http://getbootstrap.com/customize/) + * Copyright 2011-2014 Twitter, Inc. + * + * Licensed under the Creative Commons Attribution 3.0 Unported License. For + * details, see http://creativecommons.org/licenses/by/3.0/. + */ +window.onload=function(){function a(a,b){throw $('
    ×

    '+a+"

    "+(b.extract?'
    '+b.extract.join("\n")+"
    ":"")+"
    ").appendTo("body").alert(),b}function b(a,b){var c=$('

    Attention!

    '+a+"

    ");b?c.appendTo(".bs-docs-container"):c.insertAfter(".bs-customize-download")}function c(a){a=a.replace(/[*+?^$.\[\]{}()|\\\/]/g,"\\$&");var b=location.search.match(new RegExp("[?&]"+a+"=([^&]+)(&|$)"));return b&&decodeURIComponent(b[1].replace(/\+/g," "))}function d(b){var c={description:"Bootstrap Customizer Config","public":!0,files:{"config.json":{content:b}}};$.ajax({url:"https://api.github.com/gists",type:"POST",dataType:"json",data:JSON.stringify(c)}).success(function(a){var b=window.location.protocol+"//"+window.location.host;history.replaceState(!1,document.title,b+window.location.pathname+"?id="+a.id)}).error(function(b){a("Ruh roh! Could not save gist file, configuration not saved.",b)})}function e(){var a={};$("#less-variables-section input").each(function(){$(this).val()&&(a[$(this).prev().text()]=$(this).val())});var b={vars:a,css:$("#less-section input:checked").map(function(){return this.value}).toArray(),js:$("#plugin-section input:checked").map(function(){return this.value}).toArray()};if(!$.isEmptyObject(b.vars)||b.css.length||b.js.length)return b}function f(){var b=c("id");b&&$.ajax({url:"https://api.github.com/gists/"+b,type:"GET",dataType:"json"}).success(function(a){var b=JSON.parse(a.files["config.json"].content);if(b.js&&$("#plugin-section input").each(function(){$(this).prop("checked",~$.inArray(this.value,b.js))}),b.css&&$("#less-section input").each(function(){$(this).prop("checked",~$.inArray(this.value,b.css))}),b.vars)for(var c in b.vars)$('input[data-var="'+c+'"]').val(b.vars[c])}).error(function(b){a("Error fetching bootstrap config file",b)})}function g(b,c,d,e,f){if(!b&&!c)return a("Ruh roh! No Bootstrap files selected.",new Error("no Bootstrap"));var g=new JSZip;if(b){var h=g.folder("css");for(var i in b)h.file(i,b[i])}if(c){var j=g.folder("js");for(var k in c)j.file(k,c[k])}if(d){var l=g.folder("fonts");for(var m in d)l.file(m,d[m],{base64:!0})}e&&g.file("config.json",e);var n=g.generate({type:"blob"});f(n)}function h(a){var b="";for(var c in a)b+=c+": "+a[c]+";\n";return b+"\n\n"}function i(){return!1}function j(a){for(var b=/^@import \"(.*?)\";$/,c=__less[a].split("\n"),d=0,e=[];dRuh roh! Could not parse less files.",b):(d[c+".css"]=o+e.toCSS(),void(d[c+".min.css"]=o+e.toCSS({compress:!0})))})}function m(){var b=!1,c={};if($("#less-section input").each(function(){var a=$(this),d=a.is(":checked");c[a.val()]=d,b=b||d}),!b)return!1;var d={},e={};$("#less-variables-section input").each(function(){$(this).val()&&(e[$(this).prev().text()]=$(this).val())});var f=k("jasny-bootstrap.less",c,e);try{l(f,"jasny-bootstrap",d)}catch(g){return a("Ruh roh! Could not parse less files.",g)}return d}function n(){var a=$("#plugin-section input:checked");if(!a.length)return!1;var b=a.map(function(){return __js[this.value]}).toArray().join("\n");return{"jasny-bootstrap.js":b,"jasny-bootstrap.min.js":o+uglify(b)}}{var o="/*!\n * Jasny Bootstrap v3.1.0 (http://jasny.github.com/bootstrap)\n * Copyright 2011-2014 Arnold Daniels.\n * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE)\n */\n\n",p=$("#less-section input"),q=$("#plugin-section input");$("#less-variables-section input")}$("#less-section .toggle").on("click",function(a){a.preventDefault(),p.prop("checked",!p.is(":checked"))}),$("#plugin-section .toggle").on("click",function(a){a.preventDefault(),q.prop("checked",!q.is(":checked"))}),$("[data-dependencies]").on("click",function(){if($(this).is(":checked")){var a=this.getAttribute("data-dependencies");if(a){a=a.split(",");for(var b=0;bupgrade to a more modern browser.',!0)):b('Looks like you\'re using safari, which sadly doesn\'t have the best supportfor HTML5 blobs. Because of this your file will be downloaded with the name "untitled".However, if you check your downloads folder, just rename this "untitled" fileto "jasny-bootstrap.zip" and you should be good to go!'),f()}; \ No newline at end of file diff --git a/docs/assets/js/customizer.js b/docs/assets/js/customizer.js new file mode 100644 index 00000000..ccdd7bc2 --- /dev/null +++ b/docs/assets/js/customizer.js @@ -0,0 +1,336 @@ +/*! + * Bootstrap Customizer (http://getbootstrap.com/customize/) + * Copyright 2011-2014 Twitter, Inc. + * + * Licensed under the Creative Commons Attribution 3.0 Unported License. For + * details, see http://creativecommons.org/licenses/by/3.0/. + */ + +window.onload = function () { // wait for load in a dumb way because B-0 + var cw = '/*!\n' + + ' * Jasny Bootstrap v3.1.0 (http://jasny.github.com/bootstrap)\n' + + ' * Copyright 2011-2014 Arnold Daniels.\n' + + ' * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE)\n' + + ' */\n\n' + + function showError(msg, err) { + $('
    ' + + '
    ' + + '×' + + '

    ' + msg + '

    ' + + (err.extract ? '
    ' + err.extract.join('\n') + '
    ' : '') + + '
    ' + + '
    ').appendTo('body').alert() + throw err + } + + function showCallout(msg, showUpTop) { + var callout = $('
    ' + + '

    Attention!

    ' + + '

    ' + msg + '

    ' + + '
    ') + + if (showUpTop) { + callout.appendTo('.bs-docs-container') + } else { + callout.insertAfter('.bs-customize-download') + } + } + + function getQueryParam(key) { + key = key.replace(/[*+?^$.\[\]{}()|\\\/]/g, '\\$&') // escape RegEx meta chars + var match = location.search.match(new RegExp('[?&]' + key + '=([^&]+)(&|$)')) + return match && decodeURIComponent(match[1].replace(/\+/g, ' ')) + } + + function createGist(configJson) { + var data = { + 'description': 'Bootstrap Customizer Config', + 'public': true, + 'files': { + 'config.json': { + 'content': configJson + } + } + } + $.ajax({ + url: 'https://api.github.com/gists', + type: 'POST', + dataType: 'json', + data: JSON.stringify(data) + }) + .success(function (result) { + var origin = window.location.protocol + '//' + window.location.host + history.replaceState(false, document.title, origin + window.location.pathname + '?id=' + result.id) + }) + .error(function (err) { + showError('Ruh roh! Could not save gist file, configuration not saved.', err) + }) + } + + function getCustomizerData() { + var vars = {} + + $('#less-variables-section input') + .each(function () { + $(this).val() && (vars[$(this).prev().text()] = $(this).val()) + }) + + var data = { + vars: vars, + css: $('#less-section input:checked') .map(function () { return this.value }).toArray(), + js: $('#plugin-section input:checked').map(function () { return this.value }).toArray() + } + + if ($.isEmptyObject(data.vars) && !data.css.length && !data.js.length) return + + return data + } + + function parseUrl() { + var id = getQueryParam('id') + + if (!id) return + + $.ajax({ + url: 'https://api.github.com/gists/' + id, + type: 'GET', + dataType: 'json' + }) + .success(function (result) { + var data = JSON.parse(result.files['config.json'].content) + if (data.js) { + $('#plugin-section input').each(function () { + $(this).prop('checked', ~$.inArray(this.value, data.js)) + }) + } + if (data.css) { + $('#less-section input').each(function () { + $(this).prop('checked', ~$.inArray(this.value, data.css)) + }) + } + if (data.vars) { + for (var i in data.vars) { + $('input[data-var="' + i + '"]').val(data.vars[i]) + } + } + }) + .error(function (err) { + showError('Error fetching bootstrap config file', err) + }) + } + + function generateZip(css, js, fonts, config, complete) { + if (!css && !js) return showError('Ruh roh! No Bootstrap files selected.', new Error('no Bootstrap')) + + var zip = new JSZip() + + if (css) { + var cssFolder = zip.folder('css') + for (var fileName in css) { + cssFolder.file(fileName, css[fileName]) + } + } + + if (js) { + var jsFolder = zip.folder('js') + for (var jsFileName in js) { + jsFolder.file(jsFileName, js[jsFileName]) + } + } + + if (fonts) { + var fontsFolder = zip.folder('fonts') + for (var fontsFileName in fonts) { + fontsFolder.file(fontsFileName, fonts[fontsFileName], {base64: true}) + } + } + + if (config) { + zip.file('config.json', config) + } + + var content = zip.generate({ type: 'blob' }) + + complete(content) + } + + function generateCustomCSS(vars) { + var result = '' + + for (var key in vars) { + result += key + ': ' + vars[key] + ';\n' + } + + return result + '\n\n' + } + + function generateFonts() { + return false; + } + + // Returns an Array of @import'd filenames in the order + // in which they appear in the file. + function includedLessFilenames(lessFilename) { + var IMPORT_REGEX = /^@import \"(.*?)\";$/ + var lessLines = __less[lessFilename].split('\n') + + for (var i = 0, imports = []; i < lessLines.length; i++) { + var match = IMPORT_REGEX.exec(lessLines[i]) + if (match) imports.push(match[1]) + } + + return imports + } + + function generateLESS(lessFilename, lessFileIncludes, vars) { + var lessSource = __less[lessFilename] + + $.each(includedLessFilenames(lessFilename), function(index, filename) { + var fileInclude = lessFileIncludes[filename] + + // Files not explicitly unchecked are compiled into the final stylesheet. + // Core stylesheets like 'normalize.less' are not included in the form + // since disabling them would wreck everything, and so their 'fileInclude' + // will be 'undefined'. + if (fileInclude || (fileInclude == null)) lessSource += __less[filename] + + // Custom variables are added after Bootstrap variables so the custom + // ones take precedence. + if (('build/default-variables.less' === filename) && vars) lessSource += generateCustomCSS(vars) + }) + + lessSource = lessSource.replace(/@import[^\n]*/gi, '') //strip any imports + return lessSource + } + + function compileLESS(lessSource, baseFilename, intoResult) { + var parser = new less.Parser({ + paths: ['build/default-variables.less', 'mixins.less'], + optimization: 0, + filename: baseFilename + '.css' + }).parse(lessSource, function (err, tree) { + if (err) { + return showError('Ruh roh! Could not parse less files.', err) + } + intoResult[baseFilename + '.css'] = cw + tree.toCSS() + intoResult[baseFilename + '.min.css'] = cw + tree.toCSS({ compress: true }) + }) + } + + function generateCSS() { + var oneChecked = false + var lessFileIncludes = {} + $('#less-section input').each(function() { + var $this = $(this) + var checked = $this.is(':checked') + lessFileIncludes[$this.val()] = checked + + oneChecked = oneChecked || checked + }) + + if (!oneChecked) return false + + var result = {} + var vars = {} + + $('#less-variables-section input') + .each(function () { + $(this).val() && (vars[$(this).prev().text()] = $(this).val()) + }) + + var bsLessSource = generateLESS('jasny-bootstrap.less', lessFileIncludes, vars) + + try { + compileLESS(bsLessSource, 'jasny-bootstrap', result) + } catch (err) { + return showError('Ruh roh! Could not parse less files.', err) + } + + return result + } + + function generateJavascript() { + var $checked = $('#plugin-section input:checked') + if (!$checked.length) return false + + var js = $checked + .map(function () { return __js[this.value] }) + .toArray() + .join('\n') + + return { + 'jasny-bootstrap.js': js, + 'jasny-bootstrap.min.js': cw + uglify(js) + } + } + + var inputsComponent = $('#less-section input') + var inputsPlugin = $('#plugin-section input') + var inputsVariables = $('#less-variables-section input') + + $('#less-section .toggle').on('click', function (e) { + e.preventDefault() + inputsComponent.prop('checked', !inputsComponent.is(':checked')) + }) + + $('#plugin-section .toggle').on('click', function (e) { + e.preventDefault() + inputsPlugin.prop('checked', !inputsPlugin.is(':checked')) + }) + + $('[data-dependencies]').on('click', function () { + if (!$(this).is(':checked')) return + var dependencies = this.getAttribute('data-dependencies') + if (!dependencies) return + dependencies = dependencies.split(',') + for (var i = 0; i < dependencies.length; i++) { + var dependency = $('[value="' + dependencies[i] + '"]') + dependency && dependency.prop('checked', true) + } + }) + + $('[data-dependents]').on('click', function () { + if ($(this).is(':checked')) return + var dependents = this.getAttribute('data-dependents') + if (!dependents) return + dependents = dependents.split(',') + for (var i = 0; i < dependents.length; i++) { + var dependent = $('[value="' + dependents[i] + '"]') + dependent && dependent.prop('checked', false) + } + }) + + var $compileBtn = $('#btn-compile') + var $downloadBtn = $('#btn-download') + + $compileBtn.on('click', function (e) { + var configData = getCustomizerData() + var configJson = JSON.stringify(configData, null, 2) + + e.preventDefault() + + $compileBtn.attr('disabled', 'disabled') + + generateZip(generateCSS(), generateJavascript(), generateFonts(), configJson, function (blob) { + $compileBtn.removeAttr('disabled') + saveAs(blob, 'jasny-bootstrap.zip') + createGist(configJson) + }) + }) + + // browser support alerts + if (!window.URL && navigator.userAgent.toLowerCase().indexOf('safari') != -1) { + showCallout('Looks like you\'re using safari, which sadly doesn\'t have the best support' + + 'for HTML5 blobs. Because of this your file will be downloaded with the name "untitled".' + + 'However, if you check your downloads folder, just rename this "untitled" file' + + 'to "jasny-bootstrap.zip" and you should be good to go!') + } else if (!window.URL && !window.webkitURL) { + $('.bs-docs-section, .bs-docs-sidebar').css('display', 'none') + + showCallout('Looks like your current browser doesn\'t support the Bootstrap Customizer. Please take a second' + + 'to upgrade to a more modern browser.', true) + } + + parseUrl() +} diff --git a/docs/assets/js/docs.min.js b/docs/assets/js/docs.min.js new file mode 100644 index 00000000..59cd2c9a --- /dev/null +++ b/docs/assets/js/docs.min.js @@ -0,0 +1,16 @@ +/*! + +Holder - 2.3.1 - client side image placeholders +(c) 2012-2014 Ivan Malopinsky / http://imsky.co + +Provided under the MIT License. +Commercial use requires attribution. + +*/ +var Holder=Holder||{};!function(a,b){function c(a,b,c){b=parseInt(b,10),a=parseInt(a,10);var d=Math.max(b,a),e=Math.min(b,a),f=1/12,g=Math.min(.75*e,.75*d*f);return{height:Math.round(Math.max(c.size,g))}}function d(a){var b=[];for(p in a)a.hasOwnProperty(p)&&b.push(p+":"+a[p]);return b.join(";")}function e(a){var b=a.ctx,d=a.dimensions,e=a.template,f=a.ratio,g=a.holder,h="literal"==g.textmode,i="exact"==g.textmode,j=c(d.width,d.height,e),k=j.height,l=d.width*f,m=d.height*f,n=e.font?e.font:"Arial,Helvetica,sans-serif";canvas.width=l,canvas.height=m,b.textAlign="center",b.textBaseline="middle",b.fillStyle=e.background,b.fillRect(0,0,l,m),b.fillStyle=e.foreground,b.font="bold "+k+"px "+n;var o=e.text?e.text:Math.floor(d.width)+"x"+Math.floor(d.height);if(h){var d=g.dimensions;o=d.width+"x"+d.height}else if(i&&g.exact_dimensions){var d=g.exact_dimensions;o=Math.floor(d.width)+"x"+Math.floor(d.height)}var p=b.measureText(o).width;return p/l>=.75&&(k=Math.floor(.75*k*(l/p))),b.font="bold "+k*f+"px "+n,b.fillText(o,l/2,m/2,l),canvas.toDataURL("image/png")}function f(a){var b=a.dimensions,d=a.template,e=a.holder,f="literal"==e.textmode,g="exact"==e.textmode,h=c(b.width,b.height,d),i=h.height,j=b.width,k=b.height,l=d.font?d.font:"Arial,Helvetica,sans-serif",m=d.text?d.text:Math.floor(b.width)+"x"+Math.floor(b.height);if(f){var b=e.dimensions;m=b.width+"x"+b.height}else if(g&&e.exact_dimensions){var b=e.exact_dimensions;m=Math.floor(b.width)+"x"+Math.floor(b.height)}var n=z({text:m,width:j,height:k,text_height:i,font:l,template:d});return"data:image/svg+xml;base64,"+btoa(n)}function g(a){return r.use_canvas&&!r.use_svg?e(a):f(a)}function h(a,b,c,d){var e=c.dimensions,f=c.theme,h=c.text?decodeURIComponent(c.text):c.text,i=e.width+"x"+e.height;f=h?o(f,{text:h}):f,f=c.font?o(f,{font:c.font}):f,b.setAttribute("data-src",d),c.theme=f,b.holder_data=c,"image"==a?(b.setAttribute("alt",h?h:f.text?f.text+" ["+i+"]":i),(r.use_fallback||!c.auto)&&(b.style.width=e.width+"px",b.style.height=e.height+"px"),r.use_fallback?b.style.backgroundColor=f.background:(b.setAttribute("src",g({ctx:w,dimensions:e,template:f,ratio:x,holder:c})),c.textmode&&"exact"==c.textmode&&(v.push(b),k(b)))):"background"==a?r.use_fallback||(b.style.backgroundImage="url("+g({ctx:w,dimensions:e,template:f,ratio:x,holder:c})+")",b.style.backgroundSize=e.width+"px "+e.height+"px"):"fluid"==a&&(b.setAttribute("alt",h?h:f.text?f.text+" ["+i+"]":i),"%"==e.height.slice(-1)?b.style.height=e.height:null!=c.auto&&c.auto||(b.style.height=e.height+"px"),"%"==e.width.slice(-1)?b.style.width=e.width:null!=c.auto&&c.auto||(b.style.width=e.width+"px"),("inline"==b.style.display||""===b.style.display||"none"==b.style.display)&&(b.style.display="block"),j(b),r.use_fallback?b.style.backgroundColor=f.background:(v.push(b),k(b)))}function i(a,b){var c={height:a.clientHeight,width:a.clientWidth};return c.height||c.width?(a.removeAttribute("data-holder-invisible"),c):(a.setAttribute("data-holder-invisible",!0),void b.call(this,a))}function j(b){if(b.holder_data){var c=i(b,a.invisible_error_fn(j));if(c){var d=b.holder_data;d.initial_dimensions=c,d.fluid_data={fluid_height:"%"==d.dimensions.height.slice(-1),fluid_width:"%"==d.dimensions.width.slice(-1),mode:null},d.fluid_data.fluid_width&&!d.fluid_data.fluid_height?(d.fluid_data.mode="width",d.fluid_data.ratio=d.initial_dimensions.width/parseFloat(d.dimensions.height)):!d.fluid_data.fluid_width&&d.fluid_data.fluid_height&&(d.fluid_data.mode="height",d.fluid_data.ratio=parseFloat(d.dimensions.width)/d.initial_dimensions.height)}}}function k(b){var c;c=null==b.nodeType?v:[b];for(var d in c)if(c.hasOwnProperty(d)){var e=c[d];if(e.holder_data){var f=e.holder_data,h=i(e,a.invisible_error_fn(k));if(h){if(f.fluid){if(f.auto)switch(f.fluid_data.mode){case"width":h.height=h.width/f.fluid_data.ratio;break;case"height":h.width=h.height*f.fluid_data.ratio}e.setAttribute("src",g({ctx:w,dimensions:h,template:f.theme,ratio:x,holder:f}))}f.textmode&&"exact"==f.textmode&&(f.exact_dimensions=h,e.setAttribute("src",g({ctx:w,dimensions:f.dimensions,template:f.theme,ratio:x,holder:f})))}}}}function l(b,c){for(var d={theme:o(y.themes.gray,{})},e=!1,f=b.length,g=0;f>g;g++){var h=b[g];a.flags.dimensions.match(h)?(e=!0,d.dimensions=a.flags.dimensions.output(h)):a.flags.fluid.match(h)?(e=!0,d.dimensions=a.flags.fluid.output(h),d.fluid=!0):a.flags.textmode.match(h)?d.textmode=a.flags.textmode.output(h):a.flags.colors.match(h)?d.theme=a.flags.colors.output(h):c.themes[h]?c.themes.hasOwnProperty(h)&&(d.theme=o(c.themes[h],{})):a.flags.font.match(h)?d.font=a.flags.font.output(h):a.flags.auto.match(h)?d.auto=!0:a.flags.text.match(h)&&(d.text=a.flags.text.output(h))}return e?d:!1}function m(a,b){var c="complete",d="readystatechange",e=!1,f=e,g=!0,h=a.document,i=h.documentElement,j=h.addEventListener?"addEventListener":"attachEvent",k=h.addEventListener?"removeEventListener":"detachEvent",l=h.addEventListener?"":"on",m=function(g){(g.type!=d||h.readyState==c)&&(("load"==g.type?a:h)[k](l+g.type,m,e),!f&&(f=!0)&&b.call(a,null))},n=function(){try{i.doScroll("left")}catch(a){return void setTimeout(n,50)}m("poll")};if(h.readyState==c)b.call(a,"lazy");else{if(h.createEventObject&&i.doScroll){try{g=!a.frameElement}catch(o){}g&&n()}h[j](l+"DOMContentLoaded",m,e),h[j](l+d,m,e),a[j](l+"load",m,e)}}function n(a,b){var a=a.match(/^(\W)?(.*)/),b=b||document,c=b["getElement"+(a[1]?"#"==a[1]?"ById":"sByClassName":"sByTagName")],d=c.call(b,a[2]),e=[];return null!==d&&(e=d.length||0===d.length?d:[d]),e}function o(a,b){var c={};for(var d in a)a.hasOwnProperty(d)&&(c[d]=a[d]);for(var d in b)b.hasOwnProperty(d)&&(c[d]=b[d]);return c}var q={use_svg:!1,use_canvas:!1,use_fallback:!1},r={},s=!1;canvas=document.createElement("canvas");var t=1,u=1,v=[];if(canvas.getContext)if(canvas.toDataURL("image/png").indexOf("data:image/png")<0)q.use_fallback=!0;else var w=canvas.getContext("2d");else q.use_fallback=!0;document.createElementNS&&document.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect&&(q.use_svg=!0,q.use_canvas=!1),q.use_fallback||(t=window.devicePixelRatio||1,u=w.webkitBackingStorePixelRatio||w.mozBackingStorePixelRatio||w.msBackingStorePixelRatio||w.oBackingStorePixelRatio||w.backingStorePixelRatio||1);var x=t/u,y={domain:"holder.js",images:"img",bgnodes:".holderjs",themes:{gray:{background:"#eee",foreground:"#aaa",size:12},social:{background:"#3a5a97",foreground:"#fff",size:12},industrial:{background:"#434A52",foreground:"#C2F200",size:12},sky:{background:"#0D8FDB",foreground:"#fff",size:12},vine:{background:"#39DBAC",foreground:"#1E292C",size:12},lava:{background:"#F8591A",foreground:"#1C2846",size:12}},stylesheet:""};a.flags={dimensions:{regex:/^(\d+)x(\d+)$/,output:function(a){var b=this.regex.exec(a);return{width:+b[1],height:+b[2]}}},fluid:{regex:/^([0-9%]+)x([0-9%]+)$/,output:function(a){var b=this.regex.exec(a);return{width:b[1],height:b[2]}}},colors:{regex:/#([0-9a-f]{3,})\:#([0-9a-f]{3,})/i,output:function(a){var b=this.regex.exec(a);return{size:y.themes.gray.size,foreground:"#"+b[2],background:"#"+b[1]}}},text:{regex:/text\:(.*)/,output:function(a){return this.regex.exec(a)[1]}},font:{regex:/font\:(.*)/,output:function(a){return this.regex.exec(a)[1]}},auto:{regex:/^auto$/},textmode:{regex:/textmode\:(.*)/,output:function(a){return this.regex.exec(a)[1]}}};var z=function(){if(window.XMLSerializer){var a=new XMLSerializer,b="http://www.w3.org/2000/svg",c=document.createElementNS(b,"svg");c.webkitMatchesSelector&&c.setAttribute("xmlns","http://www.w3.org/2000/svg");var e=document.createElementNS(b,"rect"),f=document.createElementNS(b,"text"),g=document.createTextNode(null);return f.setAttribute("text-anchor","middle"),f.appendChild(g),c.appendChild(e),c.appendChild(f),function(b){return c.setAttribute("width",b.width),c.setAttribute("height",b.height),e.setAttribute("width",b.width),e.setAttribute("height",b.height),e.setAttribute("fill",b.template.background),f.setAttribute("x",b.width/2),f.setAttribute("y",b.height/2),g.nodeValue=b.text,f.setAttribute("style",d({fill:b.template.foreground,"font-weight":"bold","font-size":b.text_height+"px","font-family":b.font,"dominant-baseline":"central"})),a.serializeToString(c)}}}();for(var A in a.flags)a.flags.hasOwnProperty(A)&&(a.flags[A].match=function(a){return a.match(this.regex)});a.invisible_error_fn=function(){return function(a){if(a.hasAttribute("data-holder-invisible"))throw new Error("Holder: invisible placeholder")}},a.add_theme=function(b,c){return null!=b&&null!=c&&(y.themes[b]=c),a},a.add_image=function(b,c){var d=n(c);if(d.length)for(var e=0,f=d.length;f>e;e++){var g=document.createElement("img");g.setAttribute("data-src",b),d[e].appendChild(g)}return a},a.run=function(b){r=o({},q),s=!0;var c=o(y,b),d=[],e=[],f=[];for(null!=c.use_canvas&&c.use_canvas&&(r.use_canvas=!0,r.use_svg=!1),"string"==typeof c.images?e=n(c.images):window.NodeList&&c.images instanceof window.NodeList?e=c.images:window.Node&&c.images instanceof window.Node?e=[c.images]:window.HTMLCollection&&c.images instanceof window.HTMLCollection&&(e=c.images),"string"==typeof c.bgnodes?f=n(c.bgnodes):window.NodeList&&c.elements instanceof window.NodeList?f=c.bgnodes:window.Node&&c.bgnodes instanceof window.Node&&(f=[c.bgnodes]),k=0,j=e.length;j>k;k++)d.push(e[k]);var g=document.getElementById("holderjs-style");g||(g=document.createElement("style"),g.setAttribute("id","holderjs-style"),g.type="text/css",document.getElementsByTagName("head")[0].appendChild(g)),c.nocss||(g.styleSheet?g.styleSheet.cssText+=c.stylesheet:g.appendChild(document.createTextNode(c.stylesheet)));for(var i=new RegExp(c.domain+'/(.*?)"?\\)'),j=f.length,k=0;j>k;k++){var m=window.getComputedStyle(f[k],null).getPropertyValue("background-image"),p=m.match(i),t=f[k].getAttribute("data-background-src");if(p){var u=l(p[1].split("/"),c);u&&h("background",f[k],u,m)}else if(null!=t){var u=l(t.substr(t.lastIndexOf(c.domain)+c.domain.length+1).split("/"),c);u&&h("background",f[k],u,m)}}for(j=d.length,k=0;j>k;k++){var v,w;w=v=m=null;try{w=d[k].getAttribute("src"),attr_datasrc=d[k].getAttribute("data-src")}catch(x){}if(null==attr_datasrc&&w&&w.indexOf(c.domain)>=0?m=w:attr_datasrc&&attr_datasrc.indexOf(c.domain)>=0&&(m=attr_datasrc),m){var u=l(m.substr(m.lastIndexOf(c.domain)+c.domain.length+1).split("/"),c);u&&(u.fluid?h("fluid",d[k],u,m):h("image",d[k],u,m))}}return a},m(b,function(){window.addEventListener?(window.addEventListener("resize",k,!1),window.addEventListener("orientationchange",k,!1)):window.attachEvent("onresize",k),s||a.run({})}),"function"==typeof define&&define.amd&&define([],function(){return a}),function(){function a(a){this.message=a}var b="undefined"!=typeof exports?exports:this,c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";a.prototype=Error(),a.prototype.name="InvalidCharacterError",b.btoa||(b.btoa=function(b){for(var d,e,f=0,g=c,h="";b.charAt(0|f)||(g="=",f%1);h+=g.charAt(63&d>>8-8*(f%1))){if(e=b.charCodeAt(f+=.75),e>255)throw new a("'btoa' failed");d=d<<8|e}return h}),b.atob||(b.atob=function(b){if(b=b.replace(/=+$/,""),1==b.length%4)throw new a("'atob' failed");for(var d,e,f=0,g=0,h="";e=b.charAt(g++);~e&&(d=f%4?64*d+e:e,f++%4)?h+=String.fromCharCode(255&d>>(6&-2*f)):0)e=c.indexOf(e);return h})}(),document.getElementsByClassName||(document.getElementsByClassName=function(a){var b,c,d,e=document,f=[];if(e.querySelectorAll)return e.querySelectorAll("."+a);if(e.evaluate)for(c=".//*[contains(concat(' ', @class, ' '), ' "+a+" ')]",b=e.evaluate(c,e,null,0,null);d=b.iterateNext();)f.push(d);else for(b=e.getElementsByTagName("*"),c=new RegExp("(^|\\s)"+a+"(\\s|$)"),d=0;d')\n this.$element.prepend(this.$hidden)\n }\n\n this.$preview = this.$element.find('.fileinput-preview')\n var height = this.$preview.css('height')\n if (this.$preview.css('display') != 'inline' && height != '0px' && height != 'none') this.$preview.css('line-height', height)\n\n this.original = {\n exists: this.$element.hasClass('fileinput-exists'),\n preview: this.$preview.html(),\n hiddenVal: this.$hidden.val()\n }\n \n this.listen()\n }\n \n Fileinput.prototype.listen = function() {\n this.$input.on('change.bs.fileinput', $.proxy(this.change, this))\n $(this.$input[0].form).on('reset.bs.fileinput', $.proxy(this.reset, this))\n \n this.$element.find('[data-trigger=\"fileinput\"]').on('click.bs.fileinput', $.proxy(this.trigger, this))\n this.$element.find('[data-dismiss=\"fileinput\"]').on('click.bs.fileinput', $.proxy(this.clear, this))\n },\n\n Fileinput.prototype.change = function(e) {\n if (e.target.files === undefined) e.target.files = e.target && e.target.value ? [ {name: e.target.value.replace(/^.+\\\\/, '')} ] : []\n if (e.target.files.length === 0) return\n\n this.$hidden.val('')\n this.$hidden.attr('name', '')\n this.$input.attr('name', this.name)\n\n var file = e.target.files[0]\n\n if (this.$preview.length > 0 && (typeof file.type !== \"undefined\" ? file.type.match('image.*') : file.name.match(/\\.(gif|png|jpe?g)$/i)) && typeof FileReader !== \"undefined\") {\n var reader = new FileReader()\n var preview = this.$preview\n var element = this.$element\n\n reader.onload = function(re) {\n var $img = $('') // .attr('src', re.target.result)\n $img[0].src = re.target.result\n e.target.files[0].result = re.target.result\n \n element.find('.fileinput-filename').text(file.name)\n \n // if parent has max-height, using `(max-)height: 100%` on child doesn't take padding and border into account\n if (preview.css('max-height') != 'none') $img.css('max-height', parseInt(preview.css('max-height'), 10) - parseInt(preview.css('padding-top'), 10) - parseInt(preview.css('padding-bottom'), 10) - parseInt(preview.css('border-top'), 10) - parseInt(preview.css('border-bottom'), 10))\n \n preview.html($img)\n element.addClass('fileinput-exists').removeClass('fileinput-new')\n\n element.trigger('change.bs.fileinput', e.target.files)\n }\n\n reader.readAsDataURL(file)\n } else {\n this.$element.find('.fileinput-filename').text(file.name)\n this.$preview.text(file.name)\n \n this.$element.addClass('fileinput-exists').removeClass('fileinput-new')\n \n this.$element.trigger('change.bs.fileinput')\n }\n },\n\n Fileinput.prototype.clear = function(e) {\n if (e) e.preventDefault()\n \n this.$hidden.val('')\n this.$hidden.attr('name', this.name)\n this.$input.attr('name', '')\n\n //ie8+ doesn't support changing the value of input with type=file so clone instead\n if (isIE) { \n var inputClone = this.$input.clone(true);\n this.$input.after(inputClone);\n this.$input.remove();\n this.$input = inputClone;\n } else {\n this.$input.val('')\n }\n\n this.$preview.html('')\n this.$element.find('.fileinput-filename').text('')\n this.$element.addClass('fileinput-new').removeClass('fileinput-exists')\n \n if (e !== false) {\n this.$input.trigger('change')\n this.$element.trigger('clear.bs.fileinput')\n }\n },\n\n Fileinput.prototype.reset = function() {\n this.clear(false)\n\n this.$hidden.val(this.original.hiddenVal)\n this.$preview.html(this.original.preview)\n this.$element.find('.fileinput-filename').text('')\n\n if (this.original.exists) this.$element.addClass('fileinput-exists').removeClass('fileinput-new')\n else this.$element.addClass('fileinput-new').removeClass('fileinput-exists')\n \n this.$element.trigger('reset.bs.fileinput')\n },\n\n Fileinput.prototype.trigger = function(e) {\n this.$input.trigger('click')\n e.preventDefault()\n }\n\n \n // FILEUPLOAD PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.fileinput\n \n $.fn.fileinput = function (options) {\n return this.each(function () {\n var $this = $(this),\n data = $this.data('fileinput')\n if (!data) $this.data('fileinput', (data = new Fileinput(this, options)))\n if (typeof options == 'string') data[options]()\n })\n }\n\n $.fn.fileinput.Constructor = Fileinput\n\n\n // FILEINPUT NO CONFLICT\n // ====================\n\n $.fn.fileinput.noConflict = function () {\n $.fn.fileinput = old\n return this\n }\n\n\n // FILEUPLOAD DATA-API\n // ==================\n\n $(document).on('click.fileinput.data-api', '[data-provides=\"fileinput\"]', function (e) {\n var $this = $(this)\n if ($this.data('fileinput')) return\n $this.fileinput($this.data())\n \n var $target = $(e.target).closest('[data-dismiss=\"fileinput\"],[data-trigger=\"fileinput\"]');\n if ($target.length > 0) {\n e.preventDefault()\n $target.trigger('click.bs.fileinput')\n }\n })\n\n}(window.jQuery);\n","inputmask.js":"/* ===========================================================\n * Bootstrap: inputmask.js v3.0.0-p7\n * http://jasny.github.io/bootstrap/javascript.html#inputmask\n * Based on Masked Input plugin by Josh Bush (digitalbush.com)\n * ===========================================================\n * Copyright 2012 Jasny BV, Netherlands.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\")\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ========================================================== */\n\n+function ($) { \"use strict\";\n\n var isIphone = (window.orientation !== undefined)\n var isAndroid = navigator.userAgent.toLowerCase().indexOf(\"android\") > -1\n var isIE = window.navigator.appName == 'Microsoft Internet Explorer'\n\n // INPUTMASK PUBLIC CLASS DEFINITION\n // =================================\n\n var Inputmask = function (element, options) {\n if (isAndroid) return // No support because caret positioning doesn't work on Android\n \n this.$element = $(element)\n this.options = $.extend({}, Inputmask.DEFAULS, options)\n this.mask = String(this.options.mask)\n \n this.init()\n this.listen()\n \n this.checkVal() //Perform initial check for existing values\n }\n\n Inputmask.DEFAULS = {\n mask: \"\",\n placeholder: \"_\",\n definitions: {\n '9': \"[0-9]\",\n 'a': \"[A-Za-z]\",\n '?': \"[A-Za-z0-9]\",\n '*': \".\"\n }\n }\n\n Inputmask.prototype.init = function() {\n var defs = this.options.definitions\n var len = this.mask.length\n\n this.tests = [] \n this.partialPosition = this.mask.length\n this.firstNonMaskPos = null\n\n $.each(this.mask.split(\"\"), $.proxy(function(i, c) {\n if (c == '?') {\n len--\n this.partialPosition = i\n } else if (defs[c]) {\n this.tests.push(new RegExp(defs[c]))\n if (this.firstNonMaskPos === null)\n this.firstNonMaskPos = this.tests.length - 1\n } else {\n this.tests.push(null)\n }\n }, this))\n\n this.buffer = $.map(this.mask.split(\"\"), $.proxy(function(c, i) {\n if (c != '?') return defs[c] ? this.options.placeholder : c\n }, this))\n\n this.focusText = this.$element.val()\n\n this.$element.data(\"rawMaskFn\", $.proxy(function() {\n return $.map(this.buffer, function(c, i) {\n return this.tests[i] && c != this.options.placeholder ? c : null\n }).join('')\n }, this))\n }\n \n Inputmask.prototype.listen = function() {\n if (this.$element.attr(\"readonly\")) return\n\n var pasteEventName = (isIE ? 'paste' : 'input') + \".mask\"\n\n this.$element\n .on(\"unmask.bs.inputmask\", $.proxy(this.unmask, this))\n\n .on(\"focus.bs.inputmask\", $.proxy(this.focusEvent, this))\n .on(\"blur.bs.inputmask\", $.proxy(this.blurEvent, this))\n\n .on(\"keydown.bs.inputmask\", $.proxy(this.keydownEvent, this))\n .on(\"keypress.bs.inputmask\", $.proxy(this.keypressEvent, this))\n\n .on(pasteEventName, $.proxy(this.pasteEvent, this))\n }\n\n //Helper Function for Caret positioning\n Inputmask.prototype.caret = function(begin, end) {\n if (this.$element.length === 0) return\n if (typeof begin == 'number') {\n end = (typeof end == 'number') ? end : begin\n return this.$element.each(function() {\n if (this.setSelectionRange) {\n this.setSelectionRange(begin, end)\n } else if (this.createTextRange) {\n var range = this.createTextRange()\n range.collapse(true)\n range.moveEnd('character', end)\n range.moveStart('character', begin)\n range.select()\n }\n })\n } else {\n if (this.$element[0].setSelectionRange) {\n begin = this.$element[0].selectionStart\n end = this.$element[0].selectionEnd\n } else if (document.selection && document.selection.createRange) {\n var range = document.selection.createRange()\n begin = 0 - range.duplicate().moveStart('character', -100000)\n end = begin + range.text.length\n }\n return {\n begin: begin, \n end: end\n }\n }\n }\n \n Inputmask.prototype.seekNext = function(pos) {\n var len = this.mask.length\n while (++pos <= len && !this.tests[pos]);\n\n return pos\n }\n \n Inputmask.prototype.seekPrev = function(pos) {\n while (--pos >= 0 && !this.tests[pos]);\n\n return pos\n }\n\n Inputmask.prototype.shiftL = function(begin,end) {\n var len = this.mask.length\n\n if (begin < 0) return\n\n for (var i = begin, j = this.seekNext(end); i < len; i++) {\n if (this.tests[i]) {\n if (j < len && this.tests[i].test(this.buffer[j])) {\n this.buffer[i] = this.buffer[j]\n this.buffer[j] = this.options.placeholder\n } else\n break\n j = this.seekNext(j)\n }\n }\n this.writeBuffer()\n this.caret(Math.max(this.firstNonMaskPos, begin))\n }\n\n Inputmask.prototype.shiftR = function(pos) {\n var len = this.mask.length\n\n for (var i = pos, c = this.options.placeholder; i < len; i++) {\n if (this.tests[i]) {\n var j = this.seekNext(i)\n var t = this.buffer[i]\n this.buffer[i] = c\n if (j < len && this.tests[j].test(t))\n c = t\n else\n break\n }\n }\n },\n\n Inputmask.prototype.unmask = function() {\n this.$element\n .unbind(\".mask\")\n .removeData(\"inputmask\")\n }\n\n Inputmask.prototype.focusEvent = function() {\n this.focusText = this.$element.val()\n var len = this.mask.length \n var pos = this.checkVal()\n this.writeBuffer()\n\n var that = this\n var moveCaret = function() {\n if (pos == len)\n that.caret(0, pos)\n else\n that.caret(pos)\n }\n\n moveCaret()\n setTimeout(moveCaret, 50)\n }\n\n Inputmask.prototype.blurEvent = function() {\n this.checkVal()\n if (this.$element.val() !== this.focusText)\n this.$element.trigger('change')\n }\n\n Inputmask.prototype.keydownEvent = function(e) {\n var k = e.which\n\n //backspace, delete, and escape get special treatment\n if (k == 8 || k == 46 || (isIphone && k == 127)) {\n var pos = this.caret(),\n begin = pos.begin,\n end = pos.end\n\n if (end - begin === 0) {\n begin = k != 46 ? this.seekPrev(begin) : (end = this.seekNext(begin - 1))\n end = k == 46 ? this.seekNext(end) : end\n }\n this.clearBuffer(begin, end)\n this.shiftL(begin, end - 1)\n\n return false\n } else if (k == 27) {//escape\n this.$element.val(this.focusText)\n this.caret(0, this.checkVal())\n return false\n }\n }\n\n Inputmask.prototype.keypressEvent = function(e) {\n var len = this.mask.length\n\n var k = e.which,\n pos = this.caret()\n\n if (e.ctrlKey || e.altKey || e.metaKey || k < 32) {//Ignore\n return true\n } else if (k) {\n if (pos.end - pos.begin !== 0) {\n this.clearBuffer(pos.begin, pos.end)\n this.shiftL(pos.begin, pos.end - 1)\n }\n\n var p = this.seekNext(pos.begin - 1)\n if (p < len) {\n var c = String.fromCharCode(k)\n if (this.tests[p].test(c)) {\n this.shiftR(p)\n this.buffer[p] = c\n this.writeBuffer()\n var next = this.seekNext(p)\n this.caret(next)\n }\n }\n return false\n }\n }\n\n Inputmask.prototype.pasteEvent = function() {\n var that = this\n\n setTimeout(function() {\n that.caret(that.checkVal(true))\n }, 0)\n }\n\n Inputmask.prototype.clearBuffer = function(start, end) {\n var len = this.mask.length\n\n for (var i = start; i < end && i < len; i++) {\n if (this.tests[i])\n this.buffer[i] = this.options.placeholder\n }\n }\n\n Inputmask.prototype.writeBuffer = function() {\n return this.$element.val(this.buffer.join('')).val()\n }\n\n Inputmask.prototype.checkVal = function(allow) {\n var len = this.mask.length\n //try to place characters where they belong\n var test = this.$element.val()\n var lastMatch = -1\n\n for (var i = 0, pos = 0; i < len; i++) {\n if (this.tests[i]) {\n this.buffer[i] = this.options.placeholder\n while (pos++ < test.length) {\n var c = test.charAt(pos - 1)\n if (this.tests[i].test(c)) {\n this.buffer[i] = c\n lastMatch = i\n break\n }\n }\n if (pos > test.length)\n break\n } else if (this.buffer[i] == test.charAt(pos) && i != this.partialPosition) {\n pos++\n lastMatch = i\n }\n }\n if (!allow && lastMatch + 1 < this.partialPosition) {\n this.$element.val(\"\")\n this.clearBuffer(0, len)\n } else if (allow || lastMatch + 1 >= this.partialPosition) {\n this.writeBuffer()\n if (!allow) this.$element.val(this.$element.val().substring(0, lastMatch + 1))\n }\n return (this.partialPosition ? i : this.firstNonMaskPos)\n }\n\n \n // INPUTMASK PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.inputmask\n \n $.fn.inputmask = function (options) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('inputmask')\n \n if (!data) $this.data('inputmask', (data = new Inputmask(this, options)))\n })\n }\n\n $.fn.inputmask.Constructor = Inputmask\n\n\n // INPUTMASK NO CONFLICT\n // ====================\n\n $.fn.inputmask.noConflict = function () {\n $.fn.inputmask = old\n return this\n }\n\n\n // INPUTMASK DATA-API\n // ==================\n\n $(document).on('focus.bs.inputmask.data-api', '[data-mask]', function (e) {\n var $this = $(this)\n if ($this.data('inputmask')) return\n $this.inputmask($this.data())\n })\n\n}(window.jQuery);\n","offcanvas.js":"/* ========================================================================\n * Bootstrap: offcanvas.js v3.0.3-p7\n * http://jasny.github.io/bootstrap/javascript.html#offcanvas\n * \n * Based on Boostrap collapse.js by Twitter, Inc. \n * ========================================================================\n * Copyright 2013 Jasny, BV.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\")\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n+function ($) { \"use strict\";\n\n // OFFCANVAS PUBLIC CLASS DEFINITION\n // =================================\n\n var OffCanvas = function (element, options) {\n this.$element = $(element)\n this.options = $.extend({}, OffCanvas.DEFAULTS, options)\n this.state = null\n \n if (this.options.recalc) {\n this.calcClone()\n $(window).on('resize', $.proxy(this.recalc, this))\n }\n \n if (this.options.autohide)\n $(document).on('click', $.proxy(this.autohide, this))\n\n if (this.options.toggle) this.toggle()\n }\n\n OffCanvas.DEFAULTS = {\n toggle: true,\n placement: 'left',\n autohide: true,\n recalc: true\n }\n\n OffCanvas.prototype.offset = function () {\n switch (this.options.placement) {\n case 'left':\n case 'right': return this.$element.outerWidth()\n case 'top':\n case 'bottom': return this.$element.outerHeight()\n }\n }\n \n OffCanvas.prototype.calcPlacement = function () {\n var horizontal = $(window).width() / this.$element.width(),\n vertical = $(window).height() / this.$element.height()\n \n if (!this.$element.hasClass('in')) {\n this.$element.css('visiblity', 'hidden !important').addClass('in')\n } \n \n var element = this.$element\n function ab(a, b) {\n if (element.css(b) === 'auto') return a\n if (element.css(a) === 'auto') return b\n \n var size_a = parseInt(element.css(a), 10),\n size_b = parseInt(element.css(b), 10)\n \n return size_a > size_b ? b : a\n }\n \n this.options.placement = horizontal > vertical ? ab('left', 'right') : ab('top', 'bottom')\n \n if (this.$element.css('visibility') === 'hidden !important') {\n this.$element.removeClass('in').css('visiblity', '')\n }\n }\n \n OffCanvas.prototype.opposite = function (placement) {\n switch (placement) {\n case 'top': return 'bottom'\n case 'left': return 'right'\n case 'bottom': return 'top'\n case 'right': return 'left'\n }\n }\n \n OffCanvas.prototype.getCanvasElements = function() {\n // Return a set containing the canvas plus all fixed elements\n var canvas = this.options.canvas ? $(this.options.canvas) : this.$element\n \n var fixed_elements = canvas.find('*').filter(function() {\n return $(this).css('position') === 'fixed'\n }).not(this.options.exclude)\n \n return canvas.add(fixed_elements)\n }\n \n OffCanvas.prototype.slide = function (elements, offset, callback) {\n // Use jQuery animation if CSS transitions aren't supported\n if (!$.support.transition) {\n var anim = {}\n anim[this.options.placement] = \"+=\" + offset\n return elements.animate(anim, 350, callback)\n }\n\n var placement = this.options.placement,\n opposite = this.opposite(placement)\n \n elements.each(function() {\n if ($(this).css(placement) !== 'auto')\n $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset)\n \n if ($(this).css(opposite) !== 'auto')\n $(this).css(opposite, (parseInt($(this).css(opposite), 10) || 0) - offset)\n })\n \n this.$element\n .one($.support.transition.end, callback)\n .emulateTransitionEnd(350)\n }\n\n OffCanvas.prototype.disableScrolling = function() {\n var bodyWidth = $('body').width()\n var prop = 'padding-' + this.opposite(this.options.placement)\n\n if ($('body').data('offcanvas-style') === undefined) $('body').data('offcanvas-style', $('body').attr('style'))\n \n $('body').css('overflow', 'hidden')\n\n if ($('body').width() > bodyWidth) {\n var padding = parseInt($('body').css(prop), 10) + $('body').width() - bodyWidth\n \n setTimeout(function() {\n $('body').css(prop, padding)\n }, 1)\n }\n }\n\n OffCanvas.prototype.show = function () {\n if (this.state) return\n \n var startEvent = $.Event('show.bs.offcanvas')\n this.$element.trigger(startEvent)\n if (startEvent.isDefaultPrevented()) return\n\n if (this.options.placement === 'auto') this.calcPlacement()\n\n this.state = 'sliding'\n\n var elements = this.getCanvasElements()\n var offset = this.offset(),\n placement = this.options.placement,\n opposite = this.opposite(placement)\n\n elements.addClass('canvas-sliding').each(function() {\n $(this).data('offcanvas-style', $(this).attr('style') || '')\n if ($(this).css('position') === 'static') $(this).css('position', 'relative')\n if (($(this).css(placement) === 'auto' || $(this).css(placement) === '0px') &&\n ($(this).css(opposite) === 'auto' || $(this).css(opposite) === '0px')) {\n $(this).css(placement, 0)\n }\n })\n \n if (elements.index(this.$element) !== -1) this.$element.css(placement, -1 * offset)\n\n this.disableScrolling()\n \n var complete = function () {\n this.state = 'slid'\n\n elements.removeClass('canvas-sliding').addClass('canvas-slid')\n this.$element.trigger('shown.bs.offcanvas')\n }\n\n setTimeout($.proxy(function() {\n this.$element.addClass('in')\n this.slide(elements, offset, $.proxy(complete, this))\n }, this), 1)\n }\n\n OffCanvas.prototype.hide = function (fast) {\n if (this.state !== 'slid') return\n\n var startEvent = $.Event('hide.bs.offcanvas')\n this.$element.trigger(startEvent)\n if (startEvent.isDefaultPrevented()) return\n\n this.state = 'sliding'\n\n var elements = $('.canvas-slid')\n var offset = -1 * this.offset()\n\n var complete = function () {\n this.state = null\n\n this.$element.removeClass('in')\n \n elements.removeClass('canvas-sliding')\n elements.add('body').each(function() {\n $(this).attr('style', $(this).data('offcanvas-style')).removeData('offcanvas-style')\n })\n\n this.$element.trigger('hidden.bs.offcanvas')\n }\n\n elements.removeClass('canvas-slid').addClass('canvas-sliding')\n \n setTimeout($.proxy(function() {\n this.slide(elements, offset, $.proxy(complete, this))\n }, this), 1)\n }\n\n OffCanvas.prototype.toggle = function () {\n if (this.state === 'sliding') return\n this[this.state === 'slid' ? 'hide' : 'show']()\n }\n\n OffCanvas.prototype.calcClone = function() {\n this.$calcClone = this.$element.clone()\n .html('')\n .addClass('offcanvas-clone').removeClass('in')\n .appendTo($('body'))\n }\n\n OffCanvas.prototype.recalc = function () {\n if (this.state() !== 'slid' || this.$calcClone.css('display') === 'none') return\n \n var offset = -1 * this.offset()\n \n var placement = this.options.placement\n this.getCanvasElements().each(function() {\n $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset)\n }).removeClass('canvas-slid')\n \n $('body').css('overflow', '')\n this.$element.css(placement, '').removeClass('in canvas-slid')\n }\n \n OffCanvas.prototype.autohide = function (e) {\n if ($(e.target).closest(this.$element).length === 0) this.hide()\n }\n\n // OFFCANVAS PLUGIN DEFINITION\n // ==========================\n\n var old = $.fn.offcanvas\n\n $.fn.offcanvas = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.offcanvas')\n var options = $.extend({}, OffCanvas.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n if (!data) $this.data('bs.offcanvas', (data = new OffCanvas(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.offcanvas.Constructor = OffCanvas\n\n\n // OFFCANVAS NO CONFLICT\n // ====================\n\n $.fn.offcanvas.noConflict = function () {\n $.fn.offcanvas = old\n return this\n }\n\n\n // OFFCANVAS DATA-API\n // =================\n\n $(document).on('click.bs.offcanvas.data-api', '[data-toggle=offcanvas]', function (e) {\n var $this = $(this), href\n var target = $this.attr('data-target')\n || e.preventDefault()\n || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '') //strip for ie7\n var $canvas = $(target)\n var data = $canvas.data('bs.offcanvas')\n var option = data ? 'toggle' : $this.data()\n\n e.stopPropagation()\n\n if (data) data.toggle()\n else $canvas.offcanvas(option)\n })\n\n}(window.jQuery);\n","rowlink.js":"/* ============================================================\n * Bootstrap: rowlink.js v3.0.0-p7\n * http://jasny.github.io/bootstrap/javascript.html#rowlink\n * ============================================================\n * Copyright 2012 Jasny BV, Netherlands.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ============================================================ */\n\n+function ($) { \"use strict\";\n\n var Rowlink = function (element, options) {\n this.$element = $(element)\n this.options = $.extend({}, Rowlink.DEFAULTS, options)\n \n this.$element.on('click.bs.rowlink', 'td:not(.rowlink-skip)', $.proxy(this.click, this))\n }\n\n Rowlink.DEFAULTS = {\n target: \"a\"\n }\n\n Rowlink.prototype.click = function(e) {\n var target = $(e.currentTarget).closest('tr').find(this.options.target)[0]\n if ($(e.target)[0] === target) return\n \n e.preventDefault();\n \n if (target.click) {\n target.click()\n } else if (document.createEvent) {\n var evt = document.createEvent(\"MouseEvents\"); \n evt.initMouseEvent(\"click\", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); \n target.dispatchEvent(evt);\n }\n }\n\n \n // ROWLINK PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.rowlink\n\n $.fn.rowlink = function (options) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('rowlink')\n if (!data) $this.data('rowlink', (data = new Rowlink(this, options)))\n })\n }\n\n $.fn.rowlink.Constructor = Rowlink\n\n\n // ROWLINK NO CONFLICT\n // ====================\n\n $.fn.rowlink.noConflict = function () {\n $.fn.rowlink = old\n return this\n }\n\n\n // ROWLINK DATA-API\n // ==================\n\n $(document).on('click.bs.rowlink.data-api', '[data-link=\"row\"]', function (e) {\n var $this = $(this)\n if ($this.data('rowlink')) return\n $this.rowlink($this.data())\n $(e.target).trigger('click.bs.rowlink')\n })\n \n}(window.jQuery);\n"} +var __less = {"alerts-fixed.less":"// Fixed alerts\n//\n// Position to the top or bottom.\n\n.alert-fixed-top,\n.alert-fixed-bottom {\n position: fixed;\n width: 100%;\n z-index: @zindex-alert-fixed;\n border-radius: 0;\n margin: 0;\n left: 0;\n\n @media (min-width: @alert-fixed-width) {\n width: @alert-fixed-width;\n left: 50%;\n margin-left: (-1 * (@alert-fixed-width / 2));\n }\n}\n\n.alert-fixed-top {\n top: 0;\n border-width: 0 0 1px 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-bottom-radius(@alert-border-radius);\n border-width: 0 1px 1px 1px;\n }\n}\n\n.alert-fixed-bottom {\n bottom: 0;\n border-width: 1px 0 0 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-top-radius(@alert-border-radius);\n border-width: 1px 1px 0 1px;\n }\n}\n","button-labels.less":"// Labels for buttons\n// --------------------------------------------------\n\n.btn-labeled {\n padding-top: 0;\n padding-bottom: 0;\n}\n\n.btn-label {\n position: relative;\n background: transparent;\n background: rgba(0, 0, 0, 0.15);\n display: inline-block;\n .button-label-size(@padding-base-vertical; @padding-base-horizontal; @border-radius-base);\n}\n\n.btn-lg .btn-label {\n .button-label-size(@padding-large-vertical; @padding-large-horizontal; @border-radius-large);\n}\n.btn-sm .btn-label {\n .button-label-size(@padding-small-vertical; @padding-small-horizontal; @border-radius-small);\n}\n.btn-xs .btn-label {\n .button-label-size(1px; 5px; @border-radius-small);\n}\n","fileinput.less":"// Fileinput.less\n// CSS for file upload button and fileinput widget\n// ------------------------------------------------\n\n.btn-file {\n overflow: hidden;\n position: relative;\n vertical-align: middle;\n > input {\n position: absolute;\n top: 0;\n right: 0;\n margin: 0;\n opacity: 0;\n filter: alpha(opacity=0);\n transform: translate(-300px, 0) scale(4);\n font-size: 23px;\n height: 100%;\n direction: ltr;\n cursor: pointer;\n }\n}\n\n.fileinput {\n margin-bottom: 9px;\n display: inline-block;\n .form-control {\n padding-top: 7px;\n padding-bottom: 5px;\n display: inline-block;\n margin-bottom: 0px;\n vertical-align: middle;\n cursor: text;\n }\n .thumbnail {\n overflow: hidden;\n display: inline-block;\n margin-bottom: 5px;\n vertical-align: middle;\n text-align: center;\n > img {\n max-height: 100%;\n }\n }\n .btn {\n vertical-align: middle;\n }\n}\n.fileinput-exists .fileinput-new,\n.fileinput-new .fileinput-exists {\n display: none;\n}\n.fileinput-inline .fileinput-controls {\n display: inline;\n}\n\n.fileinput-filename {\n vertical-align: middle;\n display: inline-block;\n overflow: hidden;\n}\n.form-control .fileinput-filename {\n vertical-align: bottom;\n}\n\n// Not 100% correct, but helps in typical use case\n.fileinput-new .input-group .btn-file {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n}\n.fileinput-new .input-group .btn-file.btn-xs,\n.fileinput-new .input-group .btn-file.btn-sm {\n border-radius: 0 @border-radius-small @border-radius-small 0;\n}\n.fileinput-new .input-group .btn-file.btn-lg {\n border-radius: 0 @border-radius-large @border-radius-large 0;\n}\n\n.form-group.has-warning .fileinput {\n .fileinput-preview {\n color: @state-warning-text;\n }\n .thumbnail {\n border-color: @state-warning-border;\n }\n}\n.form-group.has-error .fileinput {\n .fileinput-preview {\n color: @state-danger-text;\n }\n .thumbnail {\n border-color: @state-danger-border;\n }\n}\n.form-group.has-success .fileinput {\n .fileinput-preview {\n color: @state-success-text;\n }\n .thumbnail {\n border-color: @state-success-border;\n }\n}\n\n\n// Input group fixes\n\n.input-group-addon:not(:first-child) {\n border-left: 0;\n}\n","grid-container-smooth.less":"// Smooth sizing container\n// -------------------------\n\n@media (min-width: 1px) {\n .container-smooth {\n max-width: @container-lg;\n }\n}\n\n","jasny-bootstrap.less":"// Twitter Bootstrap's \"variables.less\" should already be imported\n\n// Core variables and mixins\n@import \"variables.less\";\n@import \"mixins.less\";\n\n// Core CSS\n@import \"grid-container-smooth.less\";\n@import \"button-labels.less\";\n\n// Components\n@import \"nav-tab-alignment.less\";\n@import \"navmenu.less\";\n@import \"alerts-fixed.less\";\n\n// Components w/ JavaScript\n@import \"offcanvas.less\";\n@import \"rowlink.less\";\n@import \"fileinput.less\";\n","mixins.less":"//\n// Mixins\n// --------------------------------------------------\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n\n// BUTTONS\n// --------------------------------------------------\n\n.button-label-size(@padding-vertical; @padding-horizontal; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n left: (-1 * @padding-horizontal);\n border-radius: (@border-radius - 1px) 0 0 (@border-radius - 1px);\n\n &.btn-label-right {\n left: auto;\n right: (-1 * @padding-horizontal);\n border-radius: 0 (@border-radius - 1px) (@border-radius - 1px) 0;\n }\n}\n","nav-tab-alignment.less":"// Alignment options\n// -------------------------\n\n// bottom\n.nav-tabs-bottom {\n border-bottom: 0;\n border-top: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-top: -1px;\n\n > a {\n border-radius: 0 0 @border-radius-base @border-radius-base;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-top-color: transparent;\n }\n }\n}\n\n// left\n.nav-tabs-left {\n border-bottom: 0;\n border-right: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-right: -1px;\n float: none;\n\n > a {\n border-radius: @border-radius-base 0 0 @border-radius-base;\n margin-right: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-right-color: transparent;\n }\n }\n\n .row > & {\n padding-right: 0;\n padding-left: (@grid-gutter-width / 2);\n margin-right: -1px;\n position: relative;\n z-index: 1;\n\n & + .tab-content {\n border-left: 1px solid @nav-tabs-active-link-hover-border-color;\n }\n }\n}\n\n// right\n.nav-tabs-right {\n border-bottom: 0;\n border-left: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-left: -1px;\n float: none;\n\n > a {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n margin-left: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-left-color: transparent;\n }\n }\n\n .row > & {\n padding-left: 0;\n padding-right: (@grid-gutter-width / 2);\n }\n}\n","navmenu.less":"//\n// Navmenu and offcanvas navbar\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navmenu from which we expand to create the fixed navmenu\n// variations.\n\n.navmenu,\n.navbar-offcanvas {\n width: @navmenu-width;\n height: 100%;\n border-width: 1px;\n border-style: solid;\n border-radius: @border-radius-base;\n}\n\n.navmenu-fixed-left,\n.navmenu-fixed-right,\n.navbar-offcanvas {\n position: fixed;\n z-index: @zindex-navmenu-fixed;\n top: 0;\n border-radius: 0;\n}\n.navmenu-fixed-left,\n.navbar-offcanvas {\n left: 0;\n border-width: 0 1px 0 0;\n}\n.navmenu-fixed-right {\n right: 0;\n border-width: 0 0 0 1px;\n}\n\n.navmenu-nav {\n margin-bottom: @navmenu-margin-vertical;\n\n &.dropdown-menu {\n position: static;\n margin: 0;\n padding-top: 0;\n float: none;\n border: none;\n .box-shadow(none);\n border-radius: 0;\n }\n}\n\n.navbar-offcanvas {\n .navbar-nav {\n margin: 0;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.offcanvas {\n position: static;\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n // Account for first and last children spacing\n .navbar-nav.navbar-left:first-child {\n margin-left: -@navbar-padding-horizontal;\n }\n .navbar-nav.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n\n .navmenu-brand {\n display: none;\n }\n }\n}\n\n// Brand/project name\n\n.navmenu-brand {\n display: block;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n }\n margin: @navmenu-margin-vertical 0;\n}\n\n// Alternate navmenus\n// --------------------------------------------------\n\n// Default navmenu\n.navmenu-default,\n.navbar-default .navbar-offcanvas {\n background-color: @navmenu-default-bg;\n border-color: @navmenu-default-border;\n\n .navmenu-brand {\n color: @navmenu-default-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-default-brand-hover-color;\n background-color: @navmenu-default-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-default-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-default-link-hover-color;\n border-bottom-color: @navmenu-default-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-default-link-active-bg;\n color: @navmenu-default-link-active-color;\n .caret {\n border-top-color: @navmenu-default-link-active-color;\n border-bottom-color: @navmenu-default-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-default-link-color;\n border-bottom-color: @navmenu-default-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-default-link-active-bg;\n & > .divider {\n background-color: @navmenu-default-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-default-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-default-link-color;\n &:hover,\n &:focus {\n color: @navmenu-default-link-hover-color;\n background-color: @navmenu-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-active-color;\n background-color: @navmenu-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-disabled-color;\n background-color: @navmenu-default-link-disabled-bg;\n }\n }\n }\n}\n\n// Inverse navmenu\n.navmenu-inverse,\n.navbar-inverse .navbar-offcanvas {\n background-color: @navmenu-inverse-bg;\n border-color: @navmenu-inverse-border;\n\n .navmenu-brand {\n color: @navmenu-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-brand-hover-color;\n background-color: @navmenu-inverse-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-inverse-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-inverse-link-hover-color;\n border-bottom-color: @navmenu-inverse-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-inverse-link-active-bg;\n color: @navmenu-inverse-link-active-color;\n .caret {\n border-top-color: @navmenu-inverse-link-active-color;\n border-bottom-color: @navmenu-inverse-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-inverse-link-color;\n border-bottom-color: @navmenu-inverse-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-inverse-link-active-bg;\n & > .divider {\n background-color: @navmenu-inverse-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-inverse-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-inverse-link-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-hover-color;\n background-color: @navmenu-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-active-color;\n background-color: @navmenu-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-disabled-color;\n background-color: @navmenu-inverse-link-disabled-bg;\n }\n }\n }\n}\n","offcanvas.less":"//\n// Off canvas navigation\n// --------------------------------------------------\n\n.offcanvas {\n display: none;\n &.in {\n display: block;\n }\n}\n\n@media (max-width: @screen-xs-max) {\n .offcanvas-xs {\n .offcanvas;\n }\n}\n@media (max-width: @screen-sm-max) {\n .offcanvas-sm {\n .offcanvas;\n }\n}\n@media (max-width: @screen-md-max) {\n .offcanvas-md {\n .offcanvas;\n }\n}\n.offcanvas-lg {\n .offcanvas;\n}\n\n.canvas-sliding {\n -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n}\n\n.offcanvas-clone {\n height: 0px !important;\n width: 0px !important;\n overflow: hidden !important;\n border: none !important;\n margin: 0px !important;\n padding: 0px !important;\n position: absolute !important;\n top: auto !important;\n left: auto !important;\n bottom: 0px !important;\n right: 0px !important;\n opacity: 0 !important;\n}\n","rowlink.less":"//\n// Rowlink\n// --------------------------------------------------\n\n.table.rowlink,\n.table .rowlink {\n td:not(.rowlink-skip) {\n cursor: pointer;\n\n a {\n color: inherit;\n font: inherit;\n text-decoration: inherit;\n }\n }\n}\n\n.table-hover.rowlink,\n.table-hover .rowlink {\n tr:hover td {\n background-color: darken(@table-bg-hover, 15%);\n }\n}\n","variables.less":"//\n// These variables are used when Jasny Bootstrap is built\n// without importing Twitter Bootstrap.\n// --------------------------------------------------------\n\n//-- Colors\n//\n//## Gray colors for use across Bootstrap.\n\n@gray-darker: lighten(#000, 13.5%); // #222\n@gray-dark: lighten(#000, 20%); // #333\n@gray: lighten(#000, 33.5%); // #555\n@gray-light: lighten(#000, 60%); // #999\n@gray-lighter: lighten(#000, 93.5%); // #eee\n\n//-- Typography\n//\n//## Font size and line-height.\n\n@font-size-base: 14px;\n@font-size-large: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-small: ceil((@font-size-base * 0.85)); // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n@line-height-base: 1.428571429; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px\n\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n@padding-base-vertical: 6px;\n@padding-base-horizontal: 12px;\n\n@padding-large-vertical: 10px;\n@padding-large-horizontal: 16px;\n\n@padding-small-vertical: 5px;\n@padding-small-horizontal: 10px;\n\n@padding-xs-vertical: 1px;\n@padding-xs-horizontal: 5px;\n\n@line-height-large: 1.33;\n@line-height-small: 1.5;\n\n@border-radius-base: 4px;\n@border-radius-large: 6px;\n@border-radius-small: 3px;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n//** Background color used for `.table-hover`.\n@table-bg-hover: #f5f5f5;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n@zindex-navmenu-fixed: 1030;\n@zindex-alert-fixed: 1035;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n@screen-xs: 480px;\n\n// Small screen / tablet\n@screen-sm: 768px;\n\n// Medium screen / desktop\n@screen-md: 992px;\n\n// Large screen / wide desktop\n@screen-lg: 1200px;\n\n//-- So media queries don't overlap when required, provide a maximum\n//\n// Note: These variables are not generated into the Customizer.\n@screen-xs-min: @screen-xs;\n@screen-sm-min: @screen-sm;\n@screen-md-min: @screen-md;\n@screen-lg-min: @screen-lg;\n\n@screen-xs-max: (@screen-sm-min - 1);\n@screen-sm-max: (@screen-md-min - 1);\n@screen-md-max: (@screen-lg-min - 1);\n\n//--\n@container-lg: ((1140px + @grid-gutter-width));\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n//** Padding between columns. Gets divided in half for the left and right.\n@grid-gutter-width: 30px;\n//** Point at which the navbar becomes uncollapsed.\n@grid-float-breakpoint: 768px;\n\n//** Maximum with of a smooth container.\n@container-smooth: @container-lg;\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n@navbar-height: 50px;\n@navbar-padding-horizontal: floor((@grid-gutter-width / 2));\n@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);\n\n\n//== Navmenu\n//\n//##\n\n// Basics of a navmenu\n@navmenu-width: 300px;\n@navmenu-margin-vertical: (0.5 * @line-height-computed);\n@navmenu-default-color: #777;\n@navmenu-default-bg: #f8f8f8;\n@navmenu-default-border: darken(@navmenu-default-bg, 6.5%);\n\n// Navmenu links\n@navmenu-default-link-color: #777;\n@navmenu-default-link-hover-color: #333;\n@navmenu-default-link-hover-bg: transparent;\n@navmenu-default-link-active-color: #555;\n@navmenu-default-link-active-bg: darken(@navmenu-default-bg, 6.5%);\n@navmenu-default-link-disabled-color: #ccc;\n@navmenu-default-link-disabled-bg: transparent;\n\n// Navmenu brand label\n@navmenu-default-brand-color: @navmenu-default-link-color;\n@navmenu-default-brand-hover-color: darken(@navmenu-default-link-color, 10%);\n@navmenu-default-brand-hover-bg: transparent;\n\n\n// Inverted navmenu\n//\n// Reset inverted navmenu basics\n@navmenu-inverse-color: @gray-light;\n@navmenu-inverse-bg: #222;\n@navmenu-inverse-border: darken(@navmenu-inverse-bg, 10%);\n\n// Inverted navmenu links\n@navmenu-inverse-link-color: @gray-light;\n@navmenu-inverse-link-hover-color: #fff;\n@navmenu-inverse-link-hover-bg: transparent;\n@navmenu-inverse-link-active-color: @navmenu-inverse-link-hover-color;\n@navmenu-inverse-link-active-bg: darken(@navmenu-inverse-bg, 10%);\n@navmenu-inverse-link-disabled-color: #444;\n@navmenu-inverse-link-disabled-bg: transparent;\n\n// Inverted navmenu brand label\n@navmenu-inverse-brand-color: @navmenu-inverse-link-color;\n@navmenu-inverse-brand-hover-color: #fff;\n@navmenu-inverse-brand-hover-bg: transparent;\n\n// Inverted navmenu search\n// Normal navmenu needs no special styles or vars\n@navmenu-inverse-search-bg: lighten(@navmenu-inverse-bg, 25%);\n@navmenu-inverse-search-bg-focus: #fff;\n@navmenu-inverse-search-border: @navmenu-inverse-bg;\n@navmenu-inverse-search-placeholder-color: #ccc;\n\n\n//== Navs\n//\n//##\n\n@nav-link-padding: 10px 15px;\n@nav-tabs-active-link-hover-border-color: #ddd;\n@nav-tabs-border-color: #ddd;\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n@state-success-text: #3c763d;\n@state-success-bg: #dff0d8;\n@state-success-border: darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text: #31708f;\n@state-info-bg: #d9edf7;\n@state-info-border: darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text: #8a6d3b;\n@state-warning-bg: #fcf8e3;\n@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text: #a94442;\n@state-danger-bg: #f2dede;\n@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n@alert-border-radius: @border-radius-base;\n@alert-fixed-width: @screen-md;\n"} diff --git a/docs/assets/js/vendor/blob.js b/docs/assets/js/vendor/blob.js new file mode 100644 index 00000000..307b3afd --- /dev/null +++ b/docs/assets/js/vendor/blob.js @@ -0,0 +1,166 @@ +/* Blob.js + * A Blob implementation. + * 2013-12-27 + * + * By Eli Grey, http://eligrey.com + * By Devin Samarin, https://github.com/eboyjr + * License: X11/MIT + * See LICENSE.md + */ + +/*global self, unescape */ +/*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true, + plusplus: true */ + +/*! @source http://purl.eligrey.com/github/Blob.js/blob/master/Blob.js */ + +if (!(typeof Blob === "function" || typeof Blob === "object") || typeof URL === "undefined") +if ((typeof Blob === "function" || typeof Blob === "object") && typeof webkitURL !== "undefined") self.URL = webkitURL; +else var Blob = (function (view) { + "use strict"; + + var BlobBuilder = view.BlobBuilder || view.WebKitBlobBuilder || view.MozBlobBuilder || view.MSBlobBuilder || (function(view) { + var + get_class = function(object) { + return Object.prototype.toString.call(object).match(/^\[object\s(.*)\]$/)[1]; + } + , FakeBlobBuilder = function BlobBuilder() { + this.data = []; + } + , FakeBlob = function Blob(data, type, encoding) { + this.data = data; + this.size = data.length; + this.type = type; + this.encoding = encoding; + } + , FBB_proto = FakeBlobBuilder.prototype + , FB_proto = FakeBlob.prototype + , FileReaderSync = view.FileReaderSync + , FileException = function(type) { + this.code = this[this.name = type]; + } + , file_ex_codes = ( + "NOT_FOUND_ERR SECURITY_ERR ABORT_ERR NOT_READABLE_ERR ENCODING_ERR " + + "NO_MODIFICATION_ALLOWED_ERR INVALID_STATE_ERR SYNTAX_ERR" + ).split(" ") + , file_ex_code = file_ex_codes.length + , real_URL = view.URL || view.webkitURL || view + , real_create_object_URL = real_URL.createObjectURL + , real_revoke_object_URL = real_URL.revokeObjectURL + , URL = real_URL + , btoa = view.btoa + , atob = view.atob + + , ArrayBuffer = view.ArrayBuffer + , Uint8Array = view.Uint8Array + ; + FakeBlob.fake = FB_proto.fake = true; + while (file_ex_code--) { + FileException.prototype[file_ex_codes[file_ex_code]] = file_ex_code + 1; + } + if (!real_URL.createObjectURL) { + URL = view.URL = {}; + } + URL.createObjectURL = function(blob) { + var + type = blob.type + , data_URI_header + ; + if (type === null) { + type = "application/octet-stream"; + } + if (blob instanceof FakeBlob) { + data_URI_header = "data:" + type; + if (blob.encoding === "base64") { + return data_URI_header + ";base64," + blob.data; + } else if (blob.encoding === "URI") { + return data_URI_header + "," + decodeURIComponent(blob.data); + } if (btoa) { + return data_URI_header + ";base64," + btoa(blob.data); + } else { + return data_URI_header + "," + encodeURIComponent(blob.data); + } + } else if (real_create_object_URL) { + return real_create_object_URL.call(real_URL, blob); + } + }; + URL.revokeObjectURL = function(object_URL) { + if (object_URL.substring(0, 5) !== "data:" && real_revoke_object_URL) { + real_revoke_object_URL.call(real_URL, object_URL); + } + }; + FBB_proto.append = function(data/*, endings*/) { + var bb = this.data; + // decode data to a binary string + if (Uint8Array && (data instanceof ArrayBuffer || data instanceof Uint8Array)) { + var + str = "" + , buf = new Uint8Array(data) + , i = 0 + , buf_len = buf.length + ; + for (; i < buf_len; i++) { + str += String.fromCharCode(buf[i]); + } + bb.push(str); + } else if (get_class(data) === "Blob" || get_class(data) === "File") { + if (FileReaderSync) { + var fr = new FileReaderSync; + bb.push(fr.readAsBinaryString(data)); + } else { + // async FileReader won't work as BlobBuilder is sync + throw new FileException("NOT_READABLE_ERR"); + } + } else if (data instanceof FakeBlob) { + if (data.encoding === "base64" && atob) { + bb.push(atob(data.data)); + } else if (data.encoding === "URI") { + bb.push(decodeURIComponent(data.data)); + } else if (data.encoding === "raw") { + bb.push(data.data); + } + } else { + if (typeof data !== "string") { + data += ""; // convert unsupported types to strings + } + // decode UTF-16 to binary string + bb.push(unescape(encodeURIComponent(data))); + } + }; + FBB_proto.getBlob = function(type) { + if (!arguments.length) { + type = null; + } + return new FakeBlob(this.data.join(""), type, "raw"); + }; + FBB_proto.toString = function() { + return "[object BlobBuilder]"; + }; + FB_proto.slice = function(start, end, type) { + var args = arguments.length; + if (args < 3) { + type = null; + } + return new FakeBlob( + this.data.slice(start, args > 1 ? end : this.data.length) + , type + , this.encoding + ); + }; + FB_proto.toString = function() { + return "[object Blob]"; + }; + return FakeBlobBuilder; + }(view)); + + return function Blob(blobParts, options) { + var type = options ? (options.type || "") : ""; + var builder = new BlobBuilder(); + if (blobParts) { + for (var i = 0, len = blobParts.length; i < len; i++) { + builder.append(blobParts[i]); + } + } + return builder.getBlob(type); + }; +}(typeof self !== "undefined" && self || typeof window !== "undefined" && window || this.content || this)); diff --git a/docs/assets/js/vendor/filesaver.js b/docs/assets/js/vendor/filesaver.js new file mode 100644 index 00000000..8a61f988 --- /dev/null +++ b/docs/assets/js/vendor/filesaver.js @@ -0,0 +1,242 @@ +/* FileSaver.js + * A saveAs() FileSaver implementation. + * 2014-01-24 + * + * By Eli Grey, http://eligrey.com + * License: X11/MIT + * See LICENSE.md + */ + +/*global self */ +/*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true, + plusplus: true */ + +/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */ + +var saveAs = saveAs + // IE 10+ (native saveAs) + || (navigator.msSaveOrOpenBlob && navigator.msSaveOrOpenBlob.bind(navigator)) + // Everyone else + || (function(view) { + "use strict"; + // IE <10 is explicitly unsupported + if (/MSIE [1-9]\./.test(navigator.userAgent)) { + return; + } + var + doc = view.document + // only get URL when necessary in case BlobBuilder.js hasn't overridden it yet + , get_URL = function() { + return view.URL || view.webkitURL || view; + } + , URL = view.URL || view.webkitURL || view + , save_link = doc.createElementNS("http://www.w3.org/1999/xhtml", "a") + , can_use_save_link = !view.externalHost && "download" in save_link + , click = function(node) { + var event = doc.createEvent("MouseEvents"); + event.initMouseEvent( + "click", true, false, view, 0, 0, 0, 0, 0 + , false, false, false, false, 0, null + ); + node.dispatchEvent(event); + } + , webkit_req_fs = view.webkitRequestFileSystem + , req_fs = view.requestFileSystem || webkit_req_fs || view.mozRequestFileSystem + , throw_outside = function (ex) { + (view.setImmediate || view.setTimeout)(function() { + throw ex; + }, 0); + } + , force_saveable_type = "application/octet-stream" + , fs_min_size = 0 + , deletion_queue = [] + , process_deletion_queue = function() { + var i = deletion_queue.length; + while (i--) { + var file = deletion_queue[i]; + if (typeof file === "string") { // file is an object URL + URL.revokeObjectURL(file); + } else { // file is a File + file.remove(); + } + } + deletion_queue.length = 0; // clear queue + } + , dispatch = function(filesaver, event_types, event) { + event_types = [].concat(event_types); + var i = event_types.length; + while (i--) { + var listener = filesaver["on" + event_types[i]]; + if (typeof listener === "function") { + try { + listener.call(filesaver, event || filesaver); + } catch (ex) { + throw_outside(ex); + } + } + } + } + , FileSaver = function(blob, name) { + // First try a.download, then web filesystem, then object URLs + var + filesaver = this + , type = blob.type + , blob_changed = false + , object_url + , target_view + , get_object_url = function() { + var object_url = get_URL().createObjectURL(blob); + deletion_queue.push(object_url); + return object_url; + } + , dispatch_all = function() { + dispatch(filesaver, "writestart progress write writeend".split(" ")); + } + // on any filesys errors revert to saving with object URLs + , fs_error = function() { + // don't create more object URLs than needed + if (blob_changed || !object_url) { + object_url = get_object_url(blob); + } + if (target_view) { + target_view.location.href = object_url; + } else { + window.open(object_url, "_blank"); + } + filesaver.readyState = filesaver.DONE; + dispatch_all(); + } + , abortable = function(func) { + return function() { + if (filesaver.readyState !== filesaver.DONE) { + return func.apply(this, arguments); + } + }; + } + , create_if_not_found = {create: true, exclusive: false} + , slice + ; + filesaver.readyState = filesaver.INIT; + if (!name) { + name = "download"; + } + if (can_use_save_link) { + object_url = get_object_url(blob); + // FF for Android has a nasty garbage collection mechanism + // that turns all objects that are not pure javascript into 'deadObject' + // this means `doc` and `save_link` are unusable and need to be recreated + // `view` is usable though: + doc = view.document; + save_link = doc.createElementNS("http://www.w3.org/1999/xhtml", "a"); + save_link.href = object_url; + save_link.download = name; + var event = doc.createEvent("MouseEvents"); + event.initMouseEvent( + "click", true, false, view, 0, 0, 0, 0, 0 + , false, false, false, false, 0, null + ); + save_link.dispatchEvent(event); + filesaver.readyState = filesaver.DONE; + dispatch_all(); + return; + } + // Object and web filesystem URLs have a problem saving in Google Chrome when + // viewed in a tab, so I force save with application/octet-stream + // http://code.google.com/p/chromium/issues/detail?id=91158 + if (view.chrome && type && type !== force_saveable_type) { + slice = blob.slice || blob.webkitSlice; + blob = slice.call(blob, 0, blob.size, force_saveable_type); + blob_changed = true; + } + // Since I can't be sure that the guessed media type will trigger a download + // in WebKit, I append .download to the filename. + // https://bugs.webkit.org/show_bug.cgi?id=65440 + if (webkit_req_fs && name !== "download") { + name += ".download"; + } + if (type === force_saveable_type || webkit_req_fs) { + target_view = view; + } + if (!req_fs) { + fs_error(); + return; + } + fs_min_size += blob.size; + req_fs(view.TEMPORARY, fs_min_size, abortable(function(fs) { + fs.root.getDirectory("saved", create_if_not_found, abortable(function(dir) { + var save = function() { + dir.getFile(name, create_if_not_found, abortable(function(file) { + file.createWriter(abortable(function(writer) { + writer.onwriteend = function(event) { + target_view.location.href = file.toURL(); + deletion_queue.push(file); + filesaver.readyState = filesaver.DONE; + dispatch(filesaver, "writeend", event); + }; + writer.onerror = function() { + var error = writer.error; + if (error.code !== error.ABORT_ERR) { + fs_error(); + } + }; + "writestart progress write abort".split(" ").forEach(function(event) { + writer["on" + event] = filesaver["on" + event]; + }); + writer.write(blob); + filesaver.abort = function() { + writer.abort(); + filesaver.readyState = filesaver.DONE; + }; + filesaver.readyState = filesaver.WRITING; + }), fs_error); + }), fs_error); + }; + dir.getFile(name, {create: false}, abortable(function(file) { + // delete file if it already exists + file.remove(); + save(); + }), abortable(function(ex) { + if (ex.code === ex.NOT_FOUND_ERR) { + save(); + } else { + fs_error(); + } + })); + }), fs_error); + }), fs_error); + } + , FS_proto = FileSaver.prototype + , saveAs = function(blob, name) { + return new FileSaver(blob, name); + } + ; + FS_proto.abort = function() { + var filesaver = this; + filesaver.readyState = filesaver.DONE; + dispatch(filesaver, "abort"); + }; + FS_proto.readyState = FS_proto.INIT = 0; + FS_proto.WRITING = 1; + FS_proto.DONE = 2; + + FS_proto.error = + FS_proto.onwritestart = + FS_proto.onprogress = + FS_proto.onwrite = + FS_proto.onabort = + FS_proto.onerror = + FS_proto.onwriteend = + null; + + view.addEventListener("unload", process_deletion_queue, false); + return saveAs; +}( + typeof self !== "undefined" && self + || typeof window !== "undefined" && window + || this.content +)); +// `self` is undefined in Firefox for Android content script context +// while `this` is nsIContentFrameMessageManager +// with an attribute `content` that corresponds to the window + +if (typeof module !== "undefined") module.exports = saveAs; diff --git a/docs/assets/js/vendor/holder.js b/docs/assets/js/vendor/holder.js new file mode 100644 index 00000000..b291f20f --- /dev/null +++ b/docs/assets/js/vendor/holder.js @@ -0,0 +1,648 @@ +/*! + +Holder - 2.3.1 - client side image placeholders +(c) 2012-2014 Ivan Malopinsky / http://imsky.co + +Provided under the MIT License. +Commercial use requires attribution. + +*/ +var Holder = Holder || {}; +(function (app, win) { +var system_config = { + use_svg: false, + use_canvas: false, + use_fallback: false +}; +var instance_config = {}; +var preempted = false; +canvas = document.createElement('canvas'); +var dpr = 1, bsr = 1; +var resizable_images = []; + +if (!canvas.getContext) { + system_config.use_fallback = true; +} else { + if (canvas.toDataURL("image/png") + .indexOf("data:image/png") < 0) { + //Android doesn't support data URI + system_config.use_fallback = true; + } else { + var ctx = canvas.getContext("2d"); + } +} + +if(!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect){ + system_config.use_svg = true; + system_config.use_canvas = false; +} + +if(!system_config.use_fallback){ + dpr = window.devicePixelRatio || 1, + bsr = ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1; +} + +var ratio = dpr / bsr; + +var settings = { + domain: "holder.js", + images: "img", + bgnodes: ".holderjs", + themes: { + "gray": { + background: "#eee", + foreground: "#aaa", + size: 12 + }, + "social": { + background: "#3a5a97", + foreground: "#fff", + size: 12 + }, + "industrial": { + background: "#434A52", + foreground: "#C2F200", + size: 12 + }, + "sky": { + background: "#0D8FDB", + foreground: "#fff", + size: 12 + }, + "vine": { + background: "#39DBAC", + foreground: "#1E292C", + size: 12 + }, + "lava": { + background: "#F8591A", + foreground: "#1C2846", + size: 12 + } + }, + stylesheet: "" +}; +app.flags = { + dimensions: { + regex: /^(\d+)x(\d+)$/, + output: function (val) { + var exec = this.regex.exec(val); + return { + width: +exec[1], + height: +exec[2] + } + } + }, + fluid: { + regex: /^([0-9%]+)x([0-9%]+)$/, + output: function (val) { + var exec = this.regex.exec(val); + return { + width: exec[1], + height: exec[2] + } + } + }, + colors: { + regex: /#([0-9a-f]{3,})\:#([0-9a-f]{3,})/i, + output: function (val) { + var exec = this.regex.exec(val); + return { + size: settings.themes.gray.size, + foreground: "#" + exec[2], + background: "#" + exec[1] + } + } + }, + text: { + regex: /text\:(.*)/, + output: function (val) { + return this.regex.exec(val)[1]; + } + }, + font: { + regex: /font\:(.*)/, + output: function (val) { + return this.regex.exec(val)[1]; + } + }, + auto: { + regex: /^auto$/ + }, + textmode: { + regex: /textmode\:(.*)/, + output: function(val){ + return this.regex.exec(val)[1]; + } + } +} + +function text_size(width, height, template) { + height = parseInt(height, 10); + width = parseInt(width, 10); + var bigSide = Math.max(height, width) + var smallSide = Math.min(height, width) + var scale = 1 / 12; + var newHeight = Math.min(smallSide * 0.75, 0.75 * bigSide * scale); + return { + height: Math.round(Math.max(template.size, newHeight)) + } +} + +var svg_el = (function(){ + //Prevent IE <9 from initializing SVG renderer + if(!window.XMLSerializer) return; + var serializer = new XMLSerializer(); + var svg_ns = "http://www.w3.org/2000/svg" + var svg = document.createElementNS(svg_ns, "svg"); + //IE throws an exception if this is set and Chrome requires it to be set + if(svg.webkitMatchesSelector){ + svg.setAttribute("xmlns", "http://www.w3.org/2000/svg") + } + var bg_el = document.createElementNS(svg_ns, "rect") + var text_el = document.createElementNS(svg_ns, "text") + var textnode_el = document.createTextNode(null) + text_el.setAttribute("text-anchor", "middle") + text_el.appendChild(textnode_el) + svg.appendChild(bg_el) + svg.appendChild(text_el) + + return function(props){ + svg.setAttribute("width",props.width); + svg.setAttribute("height", props.height); + bg_el.setAttribute("width", props.width); + bg_el.setAttribute("height", props.height); + bg_el.setAttribute("fill", props.template.background); + text_el.setAttribute("x", props.width/2) + text_el.setAttribute("y", props.height/2) + textnode_el.nodeValue=props.text + text_el.setAttribute("style", css_properties({ + "fill": props.template.foreground, + "font-weight": "bold", + "font-size": props.text_height+"px", + "font-family":props.font, + "dominant-baseline":"central" + })) + return serializer.serializeToString(svg) + } +})() + +function css_properties(props){ + var ret = []; + for(p in props){ + if(props.hasOwnProperty(p)){ + ret.push(p+":"+props[p]) + } + } + return ret.join(";") +} + +function draw_canvas(args) { + var ctx = args.ctx, + dimensions = args.dimensions, + template = args.template, + ratio = args.ratio, + holder = args.holder, + literal = holder.textmode == "literal", + exact = holder.textmode == "exact"; + + var ts = text_size(dimensions.width, dimensions.height, template); + var text_height = ts.height; + var width = dimensions.width * ratio, + height = dimensions.height * ratio; + var font = template.font ? template.font : "Arial,Helvetica,sans-serif"; + canvas.width = width; + canvas.height = height; + ctx.textAlign = "center"; + ctx.textBaseline = "middle"; + ctx.fillStyle = template.background; + ctx.fillRect(0, 0, width, height); + ctx.fillStyle = template.foreground; + ctx.font = "bold " + text_height + "px " + font; + var text = template.text ? template.text : (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height)); + if (literal) { + var dimensions = holder.dimensions; + text = dimensions.width + "x" + dimensions.height; + } + else if(exact && holder.exact_dimensions){ + var dimensions = holder.exact_dimensions; + text = (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height)); + } + var text_width = ctx.measureText(text).width; + if (text_width / width >= 0.75) { + text_height = Math.floor(text_height * 0.75 * (width / text_width)); + } + //Resetting font size if necessary + ctx.font = "bold " + (text_height * ratio) + "px " + font; + ctx.fillText(text, (width / 2), (height / 2), width); + return canvas.toDataURL("image/png"); +} + +function draw_svg(args){ + var dimensions = args.dimensions, + template = args.template, + holder = args.holder, + literal = holder.textmode == "literal", + exact = holder.textmode == "exact"; + + var ts = text_size(dimensions.width, dimensions.height, template); + var text_height = ts.height; + var width = dimensions.width, + height = dimensions.height; + + var font = template.font ? template.font : "Arial,Helvetica,sans-serif"; + var text = template.text ? template.text : (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height)); + + if (literal) { + var dimensions = holder.dimensions; + text = dimensions.width + "x" + dimensions.height; + } + else if(exact && holder.exact_dimensions){ + var dimensions = holder.exact_dimensions; + text = (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height)); + } + var string = svg_el({ + text: text, + width:width, + height:height, + text_height:text_height, + font:font, + template:template + }) + return "data:image/svg+xml;base64,"+btoa(string); +} + +function draw(args) { + if(instance_config.use_canvas && !instance_config.use_svg){ + return draw_canvas(args); + } + else{ + return draw_svg(args); + } +} + +function render(mode, el, holder, src) { + var dimensions = holder.dimensions, + theme = holder.theme, + text = holder.text ? decodeURIComponent(holder.text) : holder.text; + var dimensions_caption = dimensions.width + "x" + dimensions.height; + theme = (text ? extend(theme, { + text: text + }) : theme); + theme = (holder.font ? extend(theme, { + font: holder.font + }) : theme); + el.setAttribute("data-src", src); + holder.theme = theme; + el.holder_data = holder; + + if (mode == "image") { + el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption); + if (instance_config.use_fallback || !holder.auto) { + el.style.width = dimensions.width + "px"; + el.style.height = dimensions.height + "px"; + } + if (instance_config.use_fallback) { + el.style.backgroundColor = theme.background; + } else { + el.setAttribute("src", draw({ctx: ctx, dimensions: dimensions, template: theme, ratio:ratio, holder: holder})); + + if(holder.textmode && holder.textmode == "exact"){ + resizable_images.push(el); + resizable_update(el); + } + + } + } else if (mode == "background") { + if (!instance_config.use_fallback) { + el.style.backgroundImage = "url(" + draw({ctx:ctx, dimensions: dimensions, template: theme, ratio: ratio, holder: holder}) + ")"; + el.style.backgroundSize = dimensions.width + "px " + dimensions.height + "px"; + } + } else if (mode == "fluid") { + el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption); + if (dimensions.height.slice(-1) == "%") { + el.style.height = dimensions.height + } else if(holder.auto == null || !holder.auto){ + el.style.height = dimensions.height + "px" + } + if (dimensions.width.slice(-1) == "%") { + el.style.width = dimensions.width + } else if(holder.auto == null || !holder.auto){ + el.style.width = dimensions.width + "px" + } + if (el.style.display == "inline" || el.style.display === "" || el.style.display == "none") { + el.style.display = "block"; + } + + set_initial_dimensions(el) + + if (instance_config.use_fallback) { + el.style.backgroundColor = theme.background; + } else { + resizable_images.push(el); + resizable_update(el); + } + } +} + +function dimension_check(el, callback) { + var dimensions = { + height: el.clientHeight, + width: el.clientWidth + }; + if (!dimensions.height && !dimensions.width) { + el.setAttribute("data-holder-invisible", true) + callback.call(this, el) + } + else{ + el.removeAttribute("data-holder-invisible") + return dimensions; + } +} + +function set_initial_dimensions(el){ + if(el.holder_data){ + var dimensions = dimension_check(el, app.invisible_error_fn( set_initial_dimensions)) + if(dimensions){ + var holder = el.holder_data; + holder.initial_dimensions = dimensions; + holder.fluid_data = { + fluid_height: holder.dimensions.height.slice(-1) == "%", + fluid_width: holder.dimensions.width.slice(-1) == "%", + mode: null + } + if(holder.fluid_data.fluid_width && !holder.fluid_data.fluid_height){ + holder.fluid_data.mode = "width" + holder.fluid_data.ratio = holder.initial_dimensions.width / parseFloat(holder.dimensions.height) + } + else if(!holder.fluid_data.fluid_width && holder.fluid_data.fluid_height){ + holder.fluid_data.mode = "height"; + holder.fluid_data.ratio = parseFloat(holder.dimensions.width) / holder.initial_dimensions.height + } + } + } +} + +function resizable_update(element) { + var images; + if (element.nodeType == null) { + images = resizable_images; + } else { + images = [element] + } + for (var i in images) { + if (!images.hasOwnProperty(i)) { + continue; + } + var el = images[i] + if (el.holder_data) { + var holder = el.holder_data; + var dimensions = dimension_check(el, app.invisible_error_fn( resizable_update)) + if(dimensions){ + if(holder.fluid){ + if(holder.auto){ + switch(holder.fluid_data.mode){ + case "width": + dimensions.height = dimensions.width / holder.fluid_data.ratio; + break; + case "height": + dimensions.width = dimensions.height * holder.fluid_data.ratio; + break; + } + } + el.setAttribute("src", draw({ + ctx: ctx, + dimensions: dimensions, + template: holder.theme, + ratio: ratio, + holder: holder + })) + } + if(holder.textmode && holder.textmode == "exact"){ + holder.exact_dimensions = dimensions; + el.setAttribute("src", draw({ + ctx: ctx, + dimensions: holder.dimensions, + template: holder.theme, + ratio: ratio, + holder: holder + })) + } + } + } + } +} + +function parse_flags(flags, options) { + var ret = { + theme: extend(settings.themes.gray, {}) + }; + var render = false; + for (var fl = flags.length, j = 0; j < fl; j++) { + var flag = flags[j]; + if (app.flags.dimensions.match(flag)) { + render = true; + ret.dimensions = app.flags.dimensions.output(flag); + } else if (app.flags.fluid.match(flag)) { + render = true; + ret.dimensions = app.flags.fluid.output(flag); + ret.fluid = true; + } else if (app.flags.textmode.match(flag)) { + ret.textmode = app.flags.textmode.output(flag) + } else if (app.flags.colors.match(flag)) { + ret.theme = app.flags.colors.output(flag); + } else if (options.themes[flag]) { + //If a theme is specified, it will override custom colors + if(options.themes.hasOwnProperty(flag)){ + ret.theme = extend(options.themes[flag], {}); + } + } else if (app.flags.font.match(flag)) { + ret.font = app.flags.font.output(flag); + } else if (app.flags.auto.match(flag)) { + ret.auto = true; + } else if (app.flags.text.match(flag)) { + ret.text = app.flags.text.output(flag); + } + } + return render ? ret : false; +} + +for (var flag in app.flags) { + if (!app.flags.hasOwnProperty(flag)) continue; + app.flags[flag].match = function (val) { + return val.match(this.regex) + } +} + +app.invisible_error_fn = function(fn){ + return function(el){ + if(el.hasAttribute("data-holder-invisible")){ + throw new Error("Holder: invisible placeholder") + } + } +} + +app.add_theme = function (name, theme) { + name != null && theme != null && (settings.themes[name] = theme); + return app; +}; + +app.add_image = function (src, el) { + var node = selector(el); + if (node.length) { + for (var i = 0, l = node.length; i < l; i++) { + var img = document.createElement("img") + img.setAttribute("data-src", src); + node[i].appendChild(img); + } + } + return app; +}; + +app.run = function (o) { + instance_config = extend({}, system_config) + preempted = true; + + var options = extend(settings, o), + images = [], + imageNodes = [], + bgnodes = []; + + if(options.use_canvas != null && options.use_canvas){ + instance_config.use_canvas = true; + instance_config.use_svg = false; + } + + if (typeof (options.images) == "string") { + imageNodes = selector(options.images); + } else if (window.NodeList && options.images instanceof window.NodeList) { + imageNodes = options.images; + } else if (window.Node && options.images instanceof window.Node) { + imageNodes = [options.images]; + } else if(window.HTMLCollection && options.images instanceof window.HTMLCollection){ + imageNodes = options.images + } + + if (typeof (options.bgnodes) == "string") { + bgnodes = selector(options.bgnodes); + } else if (window.NodeList && options.elements instanceof window.NodeList) { + bgnodes = options.bgnodes; + } else if (window.Node && options.bgnodes instanceof window.Node) { + bgnodes = [options.bgnodes]; + } + for (i = 0, l = imageNodes.length; i < l; i++) images.push(imageNodes[i]); + var holdercss = document.getElementById("holderjs-style"); + if (!holdercss) { + holdercss = document.createElement("style"); + holdercss.setAttribute("id", "holderjs-style"); + holdercss.type = "text/css"; + document.getElementsByTagName("head")[0].appendChild(holdercss); + } + if (!options.nocss) { + if (holdercss.styleSheet) { + holdercss.styleSheet.cssText += options.stylesheet; + } else { + holdercss.appendChild(document.createTextNode(options.stylesheet)); + } + } + var cssregex = new RegExp(options.domain + "\/(.*?)\"?\\)"); + for (var l = bgnodes.length, i = 0; i < l; i++) { + var src = window.getComputedStyle(bgnodes[i], null) + .getPropertyValue("background-image"); + var flags = src.match(cssregex); + var bgsrc = bgnodes[i].getAttribute("data-background-src"); + if (flags) { + var holder = parse_flags(flags[1].split("/"), options); + if (holder) { + render("background", bgnodes[i], holder, src); + } + } else if (bgsrc != null) { + var holder = parse_flags(bgsrc.substr(bgsrc.lastIndexOf(options.domain) + options.domain.length + 1) + .split("/"), options); + if (holder) { + render("background", bgnodes[i], holder, src); + } + } + } + for (l = images.length, i = 0; i < l; i++) { + var attr_data_src, attr_src; + attr_src = attr_data_src = src = null; + try { + attr_src = images[i].getAttribute("src"); + attr_datasrc = images[i].getAttribute("data-src"); + } catch (e) {} + if (attr_datasrc == null && !! attr_src && attr_src.indexOf(options.domain) >= 0) { + src = attr_src; + } else if ( !! attr_datasrc && attr_datasrc.indexOf(options.domain) >= 0) { + src = attr_datasrc; + } + if (src) { + var holder = parse_flags(src.substr(src.lastIndexOf(options.domain) + options.domain.length + 1).split("/"), options); + if (holder) { + if (holder.fluid) { + render("fluid", images[i], holder, src) + } else { + render("image", images[i], holder, src); + } + } + } + } + return app; +}; + +contentLoaded(win, function () { + if (window.addEventListener) { + window.addEventListener("resize", resizable_update, false); + window.addEventListener("orientationchange", resizable_update, false); + } else { + window.attachEvent("onresize", resizable_update) + } + preempted || app.run({}); +}); +if (typeof define === "function" && define.amd) { + define([], function () { + return app; + }); +} + +//github.com/davidchambers/Base64.js +(function(){function t(t){this.message=t}var e="undefined"!=typeof exports?exports:this,r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";t.prototype=Error(),t.prototype.name="InvalidCharacterError",e.btoa||(e.btoa=function(e){for(var o,n,a=0,i=r,c="";e.charAt(0|a)||(i="=",a%1);c+=i.charAt(63&o>>8-8*(a%1))){if(n=e.charCodeAt(a+=.75),n>255)throw new t("'btoa' failed");o=o<<8|n}return c}),e.atob||(e.atob=function(e){if(e=e.replace(/=+$/,""),1==e.length%4)throw new t("'atob' failed");for(var o,n,a=0,i=0,c="";n=e.charAt(i++);~n&&(o=a%4?64*o+n:n,a++%4)?c+=String.fromCharCode(255&o>>(6&-2*a)):0)n=r.indexOf(n);return c})})(); + +//getElementsByClassName polyfill +document.getElementsByClassName||(document.getElementsByClassName=function(e){var t=document,n,r,i,s=[];if(t.querySelectorAll)return t.querySelectorAll("."+e);if(t.evaluate){r=".//*[contains(concat(' ', @class, ' '), ' "+e+" ')]",n=t.evaluate(r,t,null,0,null);while(i=n.iterateNext())s.push(i)}else{n=t.getElementsByTagName("*"),r=new RegExp("(^|\\s)"+e+"(\\s|$)");for(i=0;i + +(c) 2009-2012 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library zlib.js released under the following license : +zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License +*/ +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZip=a():"undefined"!=typeof global?global.JSZip=a():"undefined"!=typeof self&&(self.JSZip=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g>2,g=(3&b)<<4|c>>4,h=(15&c)<<2|e>>6,i=63&e,isNaN(c)?h=i=64:isNaN(e)&&(i=64),j=j+d.charAt(f)+d.charAt(g)+d.charAt(h)+d.charAt(i);return j},c.decode=function(a){var b,c,e,f,g,h,i,j="",k=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");k>4,c=(15&g)<<4|h>>2,e=(3&h)<<6|i,j+=String.fromCharCode(b),64!=h&&(j+=String.fromCharCode(c)),64!=i&&(j+=String.fromCharCode(e));return j}},{}],2:[function(a,b){"use strict";function c(){this.compressedSize=0,this.uncompressedSize=0,this.crc32=0,this.compressionMethod=null,this.compressedContent=null}c.prototype={getContent:function(){return null},getCompressedContent:function(){return null}},b.exports=c},{}],3:[function(a,b,c){"use strict";c.STORE={magic:"\x00\x00",compress:function(a){return a},uncompress:function(a){return a},compressInputType:null,uncompressInputType:null},c.DEFLATE=a("./flate")},{"./flate":6}],4:[function(a,b){"use strict";function c(){this.data=null,this.length=0,this.index=0}var d=a("./utils");c.prototype={checkOffset:function(a){this.checkIndex(this.index+a)},checkIndex:function(a){if(this.lengtha)throw new Error("End of data reached (data length = "+this.length+", asked index = "+a+"). Corrupted zip ?")},setIndex:function(a){this.checkIndex(a),this.index=a},skip:function(a){this.setIndex(this.index+a)},byteAt:function(){},readInt:function(a){var b,c=0;for(this.checkOffset(a),b=this.index+a-1;b>=this.index;b--)c=(c<<8)+this.byteAt(b);return this.index+=a,c},readString:function(a){return d.transformTo("string",this.readData(a))},readData:function(){},lastIndexOfSignature:function(){},readDate:function(){var a=this.readInt(4);return new Date((a>>25&127)+1980,(a>>21&15)-1,a>>16&31,a>>11&31,a>>5&63,(31&a)<<1)}},b.exports=c},{"./utils":14}],5:[function(a,b,c){"use strict";c.base64=!1,c.binary=!1,c.dir=!1,c.date=null,c.compression=null},{}],6:[function(a,b,c){"use strict";var d="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,e=a("zlibjs/bin/rawdeflate.min").Zlib,f=a("zlibjs/bin/rawinflate.min").Zlib;c.uncompressInputType=d?"uint8array":"array",c.compressInputType=d?"uint8array":"array",c.magic="\b\x00",c.compress=function(a){var b=new e.RawDeflate(a);return b.compress()},c.uncompress=function(a){var b=new f.RawInflate(a);return b.decompress()}},{"zlibjs/bin/rawdeflate.min":19,"zlibjs/bin/rawinflate.min":20}],7:[function(a,b){"use strict";function c(a,b){this.files={},this.root="",a&&this.load(a,b),this.clone=function(){var a=new c;for(var b in this)"function"!=typeof this[b]&&(a[b]=this[b]);return a}}c.prototype=a("./object"),c.prototype.load=a("./load"),c.support=a("./support"),c.defaults=a("./defaults"),c.utils=a("./utils"),c.base64=a("./base64"),c.compressions=a("./compressions"),b.exports=c},{"./base64":1,"./compressions":3,"./defaults":5,"./load":8,"./object":9,"./support":12,"./utils":14}],8:[function(a,b){"use strict";var c=a("./base64"),d=a("./zipEntries");b.exports=function(a,b){var e,f,g,h;for(b=b||{},b.base64&&(a=c.decode(a)),f=new d(a,b),e=f.files,g=0;gc;c++)d+=String.fromCharCode(255&a),a>>>=8;return d},r=function(){var a,b,c={};for(a=0;a0?a.substring(0,b):""},v=function(a){return"/"!=a.slice(-1)&&(a+="/"),this.files[a]||t.call(this,a,null,{dir:!0}),this.files[a]},w=function(a,b){var c,d=new k;return a._data instanceof k?(d.uncompressedSize=a._data.uncompressedSize,d.crc32=a._data.crc32,0===d.uncompressedSize||a.options.dir?(b=j.STORE,d.compressedContent="",d.crc32=0):a._data.compressionMethod===b.magic?d.compressedContent=a._data.getCompressedContent():(c=a._data.getContent(),d.compressedContent=b.compress(f.transformTo(b.compressInputType,c)))):(c=n(a),(!c||0===c.length||a.options.dir)&&(b=j.STORE,c=""),d.uncompressedSize=c.length,d.crc32=this.crc32(c),d.compressedContent=b.compress(f.transformTo(b.compressInputType,c))),d.compressedSize=d.compressedContent.length,d.compressionMethod=b.magic,d},x=function(a,b,c,d){var e,f,h=(c.compressedContent,this.utf8encode(b.name)),i=h!==b.name,j=b.options,k="",l="";e=j.date.getHours(),e<<=6,e|=j.date.getMinutes(),e<<=5,e|=j.date.getSeconds()/2,f=j.date.getFullYear()-1980,f<<=4,f|=j.date.getMonth()+1,f<<=5,f|=j.date.getDate(),i&&(l=q(1,1)+q(this.crc32(h),4)+h,k+="up"+q(l.length,2)+l);var m="";m+="\n\x00",m+=i?"\x00\b":"\x00\x00",m+=c.compressionMethod,m+=q(e,2),m+=q(f,2),m+=q(c.crc32,4),m+=q(c.compressedSize,4),m+=q(c.uncompressedSize,4),m+=q(h.length,2),m+=q(k.length,2);var n=g.LOCAL_FILE_HEADER+m+h+k,o=g.CENTRAL_FILE_HEADER+"\x00"+m+"\x00\x00\x00\x00\x00\x00"+(b.options.dir===!0?"\x00\x00\x00":"\x00\x00\x00\x00")+q(d,4)+h+k;return{fileRecord:n,dirRecord:o,compressedObject:c}},y=function(){this.data=[]};y.prototype={append:function(a){a=f.transformTo("string",a),this.data.push(a)},finalize:function(){return this.data.join("")}};var z=function(a){this.data=new Uint8Array(a),this.index=0};z.prototype={append:function(a){0!==a.length&&(a=f.transformTo("uint8array",a),this.data.set(a,this.index),this.index+=a.length)},finalize:function(){return this.data}};var A={load:function(){throw new Error("Load method is not defined. Is the file jszip-load.js included ?")},filter:function(a){var b,c,d,e,f=[];for(b in this.files)this.files.hasOwnProperty(b)&&(d=this.files[b],e=new p(d.name,d._data,r(d.options)),c=b.slice(this.root.length,b.length),b.slice(0,this.root.length)===this.root&&a(c,e)&&f.push(e));return f},file:function(a,b,c){if(1===arguments.length){if(f.isRegExp(a)){var d=a;return this.filter(function(a,b){return!b.options.dir&&d.test(a)})}return this.filter(function(b,c){return!c.options.dir&&b===a})[0]||null}return a=this.root+a,t.call(this,a,b,c),this},folder:function(a){if(!a)return this;if(f.isRegExp(a))return this.filter(function(b,c){return c.options.dir&&a.test(b)});var b=this.root+a,c=v.call(this,b),d=this.clone();return d.root=c.name,d},remove:function(a){a=this.root+a;var b=this.files[a];if(b||("/"!=a.slice(-1)&&(a+="/"),b=this.files[a]),b)if(b.options.dir)for(var c=this.filter(function(b,c){return c.name.slice(0,a.length)===a}),d=0;di;i++)h=c?a[i]:a.charCodeAt(i),g=255&(b^h),e=d[g],b=b>>>8^e;return-1^b},utf8encode:function(a){if(c){var b=c.encode(a);return f.transformTo("string",b)}if(e.nodebuffer)return f.transformTo("string",l(a,"utf-8"));for(var d=[],g=0,h=0;hi?d[g++]=String.fromCharCode(i):i>127&&2048>i?(d[g++]=String.fromCharCode(i>>6|192),d[g++]=String.fromCharCode(63&i|128)):(d[g++]=String.fromCharCode(i>>12|224),d[g++]=String.fromCharCode(i>>6&63|128),d[g++]=String.fromCharCode(63&i|128))}return d.join("")},utf8decode:function(a){var b=[],c=0,g=f.getTypeOf(a),h="string"!==g,i=0,j=0,k=0,l=0;if(d)return d.decode(f.transformTo("uint8array",a));if(e.nodebuffer)return f.transformTo("nodebuffer",a).toString("utf-8");for(;ij?(b[c++]=String.fromCharCode(j),i++):j>191&&224>j?(k=h?a[i+1]:a.charCodeAt(i+1),b[c++]=String.fromCharCode((31&j)<<6|63&k),i+=2):(k=h?a[i+1]:a.charCodeAt(i+1),l=h?a[i+2]:a.charCodeAt(i+2),b[c++]=String.fromCharCode((15&j)<<12|(63&k)<<6|63&l),i+=3);return b.join("")}};b.exports=A},{"./base64":1,"./compressedObject":2,"./compressions":3,"./defaults":5,"./nodeBuffer":17,"./signature":10,"./support":12,"./utils":14}],10:[function(a,b,c){"use strict";c.LOCAL_FILE_HEADER="PK",c.CENTRAL_FILE_HEADER="PK",c.CENTRAL_DIRECTORY_END="PK",c.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",c.ZIP64_CENTRAL_DIRECTORY_END="PK",c.DATA_DESCRIPTOR="PK\b"},{}],11:[function(a,b){"use strict";function c(a,b){this.data=a,b||(this.data=e.string2binary(this.data)),this.length=this.data.length,this.index=0}var d=a("./dataReader"),e=a("./utils");c.prototype=new d,c.prototype.byteAt=function(a){return this.data.charCodeAt(a)},c.prototype.lastIndexOfSignature=function(a){return this.data.lastIndexOf(a)},c.prototype.readData=function(a){this.checkOffset(a);var b=this.data.slice(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./dataReader":4,"./utils":14}],12:[function(a,b,c){var d=a("__browserify_process");if(c.base64=!0,c.array=!0,c.string=!0,c.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,c.nodebuffer=!d.browser,c.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)c.blob=!1;else{var e=new ArrayBuffer(0);try{c.blob=0===new Blob([e],{type:"application/zip"}).size}catch(f){try{var g=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,h=new g;h.append(e),c.blob=0===h.getBlob("application/zip").size}catch(f){c.blob=!1}}}},{__browserify_process:18}],13:[function(a,b){"use strict";function c(a){a&&(this.data=a,this.length=this.data.length,this.index=0)}var d=a("./dataReader");c.prototype=new d,c.prototype.byteAt=function(a){return this.data[a]},c.prototype.lastIndexOfSignature=function(a){for(var b=a.charCodeAt(0),c=a.charCodeAt(1),d=a.charCodeAt(2),e=a.charCodeAt(3),f=this.length-4;f>=0;--f)if(this.data[f]===b&&this.data[f+1]===c&&this.data[f+2]===d&&this.data[f+3]===e)return f;return-1},c.prototype.readData=function(a){this.checkOffset(a);var b=this.data.subarray(this.index,this.index+a);return this.index+=a,b},b.exports=c},{"./dataReader":4}],14:[function(a,b,c){"use strict";function d(a){return a}function e(a,b){for(var c=0;cg&&b>1;)try{d.push("array"===f||"nodebuffer"===f?String.fromCharCode.apply(null,a.slice(g,Math.min(g+b,e))):String.fromCharCode.apply(null,a.subarray(g,Math.min(g+b,e)))),g+=b}catch(i){b=Math.floor(b/2)}return d.join("")}function g(a,b){for(var c=0;cb?"0":"")+b.toString(16).toUpperCase();return d},c.findCompression=function(a){for(var b in i)if(i.hasOwnProperty(b)&&i[b].magic===a)return i[b];return null},c.isRegExp=function(a){return"[object RegExp]"===Object.prototype.toString.call(a)}},{"./compressions":3,"./nodeBuffer":17,"./support":12}],15:[function(a,b){"use strict";function c(a,b){this.files=[],this.loadOptions=b,a&&this.load(a)}var d=a("./stringReader"),e=a("./nodeBufferReader"),f=a("./uint8ArrayReader"),g=a("./utils"),h=a("./signature"),i=a("./zipEntry"),j=a("./support");c.prototype={checkSignature:function(a){var b=this.reader.readString(4);if(b!==a)throw new Error("Corrupted zip or bug : unexpected signature ("+g.pretty(b)+", expected "+g.pretty(a)+")")},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2),this.zipComment=this.reader.readString(this.zipCommentLength)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.versionMadeBy=this.reader.readString(2),this.versionNeeded=this.reader.readInt(2),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var a,b,c,d=this.zip64EndOfCentralSize-44,e=0;d>e;)a=this.reader.readInt(2),b=this.reader.readInt(4),c=this.reader.readString(b),this.zip64ExtensibleData[a]={id:a,length:b,value:c}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),this.disksCount>1)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var a,b;for(a=0;a0)){var d=c.shift();d()}},!0),function(a){c.push(a),window.postMessage("process-tick","*")}}return function(a){setTimeout(a,0)}}(),c.title="browser",c.browser=!0,c.env={},c.argv=[],c.binding=function(){throw new Error("process.binding is not supported")},c.cwd=function(){return"/"},c.chdir=function(){throw new Error("process.chdir is not supported")}},{}],19:[function(){/** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */ +(function(){"use strict";function a(a,b){var c=a.split("."),d=n;!(c[0]in d)&&d.execScript&&d.execScript("var "+c[0]);for(var e;c.length&&(e=c.shift());)c.length||b===l?d=d[e]?d[e]:d[e]={}:d[e]=b}function b(a,b){if(this.index="number"==typeof b?b:0,this.d=0,this.buffer=a instanceof(o?Uint8Array:Array)?a:new(o?Uint8Array:Array)(32768),2*this.buffer.length<=this.index)throw Error("invalid index");this.buffer.length<=this.index&&c(this)}function c(a){var b,c=a.buffer,d=c.length,e=new(o?Uint8Array:Array)(d<<1);if(o)e.set(c);else for(b=0;d>b;++b)e[b]=c[b];return a.buffer=e}function d(a){this.buffer=new(o?Uint16Array:Array)(2*a),this.length=0}function e(a,b){this.e=w,this.f=0,this.input=o&&a instanceof Array?new Uint8Array(a):a,this.c=0,b&&(b.lazy&&(this.f=b.lazy),"number"==typeof b.compressionType&&(this.e=b.compressionType),b.outputBuffer&&(this.b=o&&b.outputBuffer instanceof Array?new Uint8Array(b.outputBuffer):b.outputBuffer),"number"==typeof b.outputIndex&&(this.c=b.outputIndex)),this.b||(this.b=new(o?Uint8Array:Array)(32768))}function f(a,b){this.length=a,this.g=b}function g(a,b){function c(a,b){var c,d=a.g,e=[],f=0;c=z[a.length],e[f++]=65535&c,e[f++]=c>>16&255,e[f++]=c>>24;var g;switch(m){case 1===d:g=[0,d-1,0];break;case 2===d:g=[1,d-2,0];break;case 3===d:g=[2,d-3,0];break;case 4===d:g=[3,d-4,0];break;case 6>=d:g=[4,d-5,1];break;case 8>=d:g=[5,d-7,1];break;case 12>=d:g=[6,d-9,2];break;case 16>=d:g=[7,d-13,2];break;case 24>=d:g=[8,d-17,3];break;case 32>=d:g=[9,d-25,3];break;case 48>=d:g=[10,d-33,4];break;case 64>=d:g=[11,d-49,4];break;case 96>=d:g=[12,d-65,5];break;case 128>=d:g=[13,d-97,5];break;case 192>=d:g=[14,d-129,6];break;case 256>=d:g=[15,d-193,6];break;case 384>=d:g=[16,d-257,7];break;case 512>=d:g=[17,d-385,7];break;case 768>=d:g=[18,d-513,8];break;case 1024>=d:g=[19,d-769,8];break;case 1536>=d:g=[20,d-1025,9];break;case 2048>=d:g=[21,d-1537,9];break;case 3072>=d:g=[22,d-2049,10];break;case 4096>=d:g=[23,d-3073,10];break;case 6144>=d:g=[24,d-4097,11];break;case 8192>=d:g=[25,d-6145,11];break;case 12288>=d:g=[26,d-8193,12];break;case 16384>=d:g=[27,d-12289,12];break;case 24576>=d:g=[28,d-16385,13];break;case 32768>=d:g=[29,d-24577,13];break;default:throw"invalid distance"}c=g,e[f++]=c[0],e[f++]=c[1],e[f++]=c[2];var h,i;for(h=0,i=e.length;i>h;++h)r[s++]=e[h];u[e[0]]++,v[e[3]]++,t=a.length+b-1,n=null}var d,e,f,g,i,j,k,n,p,q={},r=o?new Uint16Array(2*b.length):[],s=0,t=0,u=new(o?Uint32Array:Array)(286),v=new(o?Uint32Array:Array)(30),w=a.f;if(!o){for(f=0;285>=f;)u[f++]=0;for(f=0;29>=f;)v[f++]=0}for(u[256]=1,d=0,e=b.length;e>d;++d){for(f=i=0,g=3;g>f&&d+f!==e;++f)i=i<<8|b[d+f];if(q[i]===l&&(q[i]=[]),j=q[i],!(0=e){for(n&&c(n,-1),f=0,g=e-d;g>f;++f)p=b[d+f],r[s++]=p,++u[p];break}0h;h++){if(d=c[j-h-1],g=3,k>3){for(i=k;i>3;i--)if(a[d+i-1]!==a[b+i-1])continue a;g=k}for(;258>g&&l>b+g&&a[d+g]===a[b+g];)++g;if(g>k&&(e=d,k=g),258===g)break}return new f(k,b-e)}function i(a,b){var c,e,f,g,h,i=a.length,k=new d(572),l=new(o?Uint8Array:Array)(i);if(!o)for(g=0;i>g;g++)l[g]=0;for(g=0;i>g;++g)0g;++g)c[g]=k.pop(),e[g]=c[g].value;for(f=j(e,e.length,b),g=0,h=c.length;h>g;++g)l[c[g].index]=f[g];return l}function j(a,b,c){function d(a){var c=n[a][p[a]];c===b?(d(a+1),d(a+1)):--l[c],++p[a]}var e,f,g,h,i,j=new(o?Uint16Array:Array)(c),k=new(o?Uint8Array:Array)(c),l=new(o?Uint8Array:Array)(b),m=Array(c),n=Array(c),p=Array(c),q=(1<f;++f)r>q?k[f]=0:(k[f]=1,q-=r),q<<=1,j[c-2-f]=(j[c-1-f]/2|0)+b;for(j[0]=k[0],m[0]=Array(j[0]),n[0]=Array(j[0]),f=1;c>f;++f)j[f]>2*j[f-1]+k[f]&&(j[f]=2*j[f-1]+k[f]),m[f]=Array(j[f]),n[f]=Array(j[f]);for(e=0;b>e;++e)l[e]=c;for(g=0;ge;++e)p[e]=0;for(1===k[c-1]&&(--l[0],++p[c-1]),f=c-2;f>=0;--f){for(h=e=0,i=p[f+1],g=0;ga[e]?(m[f][g]=h,n[f][g]=b,i+=2):(m[f][g]=a[e],n[f][g]=e,++e);p[f]=0,1===k[f]&&d(f)}return l}function k(a){var b,c,d,e,f=new(o?Uint16Array:Array)(a.length),g=[],h=[],i=0;for(b=0,c=a.length;c>b;b++)g[a[b]]=(0|g[a[b]])+1;for(b=1,c=16;c>=b;b++)h[b]=i,i+=0|g[b],i<<=1;for(b=0,c=a.length;c>b;b++)for(i=h[a[b]],h[a[b]]+=1,d=f[b]=0,e=a[b];e>d;d++)f[b]=f[b]<<1|1&i,i>>>=1;return f}var l=void 0,m=!0,n=this,o="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array;b.prototype.a=function(a,b,d){var e,f=this.buffer,g=this.index,h=this.d,i=f[g];if(d&&b>1&&(a=b>8?(u[255&a]<<24|u[a>>>8&255]<<16|u[a>>>16&255]<<8|u[a>>>24&255])>>32-b:u[a]>>8-b),8>b+h)i=i<e;++e)i=i<<1|a>>b-e-1&1,8===++h&&(h=0,f[g++]=u[i],i=0,g===f.length&&(f=c(this)));f[g]=i,this.buffer=f,this.d=h,this.index=g},b.prototype.finish=function(){var a,b=this.buffer,c=this.index;return 0p;++p){for(var r=p,s=r,t=7,r=r>>>1;r;r>>>=1)s<<=1,s|=1&r,--t;q[p]=(s<>>0}var u=q;d.prototype.getParent=function(a){return 2*((a-2)/4|0)},d.prototype.push=function(a,b){var c,d,e,f=this.buffer;for(c=this.length,f[this.length++]=b,f[this.length++]=a;c>0&&(d=this.getParent(c),f[c]>f[d]);)e=f[c],f[c]=f[d],f[d]=e,e=f[c+1],f[c+1]=f[d+1],f[d+1]=e,c=d;return this.length},d.prototype.pop=function(){var a,b,c,d,e,f=this.buffer;for(b=f[0],a=f[1],this.length-=2,f[0]=f[this.length],f[1]=f[this.length+1],e=0;(d=2*e+2,!(d>=this.length))&&(d+2f[d]&&(d+=2),f[d]>f[e]);)c=f[e],f[e]=f[d],f[d]=c,c=f[e+1],f[e+1]=f[d+1],f[d+1]=c,e=d;return{index:a,value:b,length:this.length}};var v,w=2,x=[];for(v=0;288>v;v++)switch(m){case 143>=v:x.push([v+48,8]);break;case 255>=v:x.push([v-144+400,9]);break;case 279>=v:x.push([v-256+0,7]);break;case 287>=v:x.push([v-280+192,8]);break;default:throw"invalid literal: "+v}e.prototype.h=function(){var a,c,d,e,f=this.input;switch(this.e){case 0:for(d=0,e=f.length;e>d;){c=o?f.subarray(d,d+65535):f.slice(d,d+65535),d+=c.length;var h=c,j=d===e,n=l,p=l,q=l,r=l,s=l,t=this.b,u=this.c;if(o){for(t=new Uint8Array(this.b.buffer);t.length<=u+h.length+5;)t=new Uint8Array(t.length<<1);t.set(this.b)}if(n=j?1:0,t[u++]=0|n,p=h.length,q=~p+65536&65535,t[u++]=255&p,t[u++]=p>>>8&255,t[u++]=255&q,t[u++]=q>>>8&255,o)t.set(h,u),u+=h.length,t=t.subarray(0,u);else{for(r=0,s=h.length;s>r;++r)t[u++]=h[r];t.length=u}this.c=u,this.b=t}break;case 1:var v=new b(o?new Uint8Array(this.b.buffer):this.b,this.c);v.a(1,1,m),v.a(1,2,m);var y,z,A,B=g(this,f);for(y=0,z=B.length;z>y;y++)if(A=B[y],b.prototype.a.apply(v,x[A]),A>256)v.a(B[++y],B[++y],m),v.a(B[++y],5),v.a(B[++y],B[++y],m);else if(256===A)break;this.b=v.finish(),this.c=this.b.length;break;case w:var C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R=new b(o?new Uint8Array(this.b.buffer):this.b,this.c),S=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],T=Array(19);for(C=w,R.a(1,1,m),R.a(C,2,m),D=g(this,f),H=i(this.j,15),I=k(H),J=i(this.i,7),K=k(J),E=286;E>257&&0===H[E-1];E--);for(F=30;F>1&&0===J[F-1];F--);var U,V,W,X,Y,Z,$=E,_=F,ab=new(o?Uint32Array:Array)($+_),bb=new(o?Uint32Array:Array)(316),cb=new(o?Uint8Array:Array)(19);for(U=V=0;$>U;U++)ab[V++]=H[U];for(U=0;_>U;U++)ab[V++]=J[U];if(!o)for(U=0,X=cb.length;X>U;++U)cb[U]=0;for(U=Y=0,X=ab.length;X>U;U+=V){for(V=1;X>U+V&&ab[U+V]===ab[U];++V);if(W=V,0===ab[U])if(3>W)for(;00;)Z=138>W?W:138,Z>W-3&&W>Z&&(Z=W-3),10>=Z?(bb[Y++]=17,bb[Y++]=Z-3,cb[17]++):(bb[Y++]=18,bb[Y++]=Z-11,cb[18]++),W-=Z;else if(bb[Y++]=ab[U],cb[ab[U]]++,W--,3>W)for(;00;)Z=6>W?W:6,Z>W-3&&W>Z&&(Z=W-3),bb[Y++]=16,bb[Y++]=Z-3,cb[16]++,W-=Z}for(a=o?bb.subarray(0,Y):bb.slice(0,Y),L=i(cb,7),P=0;19>P;P++)T[P]=L[S[P]];for(G=19;G>4&&0===T[G-1];G--);for(M=k(L),R.a(E-257,5,m),R.a(F-1,5,m),R.a(G-4,4,m),P=0;G>P;P++)R.a(T[P],3,m);for(P=0,Q=a.length;Q>P;P++)if(N=a[P],R.a(M[N],L[N],m),N>=16){switch(P++,N){case 16:O=2;break;case 17:O=3;break;case 18:O=7;break;default:throw"invalid code: "+N}R.a(a[P],O,m)}var db,eb,fb,gb,hb,ib,jb,kb,lb=[I,H],mb=[K,J];for(hb=lb[0],ib=lb[1],jb=mb[0],kb=mb[1],db=0,eb=D.length;eb>db;++db)if(fb=D[db],R.a(hb[fb],ib[fb],m),fb>256)R.a(D[++db],D[++db],m),gb=D[++db],R.a(jb[gb],kb[gb],m),R.a(D[++db],D[++db],m);else if(256===fb)break;this.b=R.finish(),this.c=this.b.length;break;default:throw"invalid compression type"}return this.b};var y=function(){function a(a){switch(m){case 3===a:return[257,a-3,0];case 4===a:return[258,a-4,0];case 5===a:return[259,a-5,0];case 6===a:return[260,a-6,0];case 7===a:return[261,a-7,0];case 8===a:return[262,a-8,0];case 9===a:return[263,a-9,0];case 10===a:return[264,a-10,0];case 12>=a:return[265,a-11,1];case 14>=a:return[266,a-13,1];case 16>=a:return[267,a-15,1];case 18>=a:return[268,a-17,1];case 22>=a:return[269,a-19,2];case 26>=a:return[270,a-23,2];case 30>=a:return[271,a-27,2];case 34>=a:return[272,a-31,2];case 42>=a:return[273,a-35,3];case 50>=a:return[274,a-43,3];case 58>=a:return[275,a-51,3];case 66>=a:return[276,a-59,3];case 82>=a:return[277,a-67,4];case 98>=a:return[278,a-83,4];case 114>=a:return[279,a-99,4];case 130>=a:return[280,a-115,4];case 162>=a:return[281,a-131,5];case 194>=a:return[282,a-163,5];case 226>=a:return[283,a-195,5];case 257>=a:return[284,a-227,5];case 258===a:return[285,a-258,0];default:throw"invalid length: "+a}}var b,c,d=[];for(b=3;258>=b;b++)c=a(b),d[b]=c[2]<<24|c[1]<<16|c[0];return d}(),z=o?new Uint32Array(y):y;a("Zlib.RawDeflate",e),a("Zlib.RawDeflate.prototype.compress",e.prototype.h);var A,B,C,D,E={NONE:0,FIXED:1,DYNAMIC:w};if(Object.keys)A=Object.keys(E);else for(B in A=[],C=0,E)A[C++]=B;for(C=0,D=A.length;D>C;++C)B=A[C],a("Zlib.RawDeflate.CompressionType."+B,E[B])}).call(this)},{}],20:[function(){/** @license zlib.js 2012 - imaya [ https://github.com/imaya/zlib.js ] The MIT License */ +(function(){"use strict";function a(a,b){var c=a.split("."),d=h;!(c[0]in d)&&d.execScript&&d.execScript("var "+c[0]);for(var e;c.length&&(e=c.shift());)c.length||b===g?d=d[e]?d[e]:d[e]={}:d[e]=b}function b(a){var b,c,d,e,f,g,h,j,k,l=a.length,m=0,n=Number.POSITIVE_INFINITY;for(j=0;l>j;++j)a[j]>m&&(m=a[j]),a[j]=d;){for(j=0;l>j;++j)if(a[j]===d){for(g=0,h=e,k=0;d>k;++k)g=g<<1|1&h,h>>=1;for(k=g;b>k;k+=f)c[k]=d<<16|j;++e}++d,e<<=1,f<<=1}return[c,m,n]}function c(a,b){switch(this.g=[],this.h=32768,this.c=this.f=this.d=this.k=0,this.input=i?new Uint8Array(a):a,this.l=!1,this.i=k,this.p=!1,(b||!(b={}))&&(b.index&&(this.d=b.index),b.bufferSize&&(this.h=b.bufferSize),b.bufferType&&(this.i=b.bufferType),b.resize&&(this.p=b.resize)),this.i){case j:this.a=32768,this.b=new(i?Uint8Array:Array)(32768+this.h+258);break;case k:this.a=0,this.b=new(i?Uint8Array:Array)(this.h),this.e=this.u,this.m=this.r,this.j=this.s;break;default:throw Error("invalid inflate mode")}}function d(a,b){for(var c,d=a.f,e=a.c,f=a.input,h=a.d;b>e;){if(c=f[h++],c===g)throw Error("input buffer is broken");d|=c<>>b,a.c=e-b,a.d=h,c}function e(a,b){for(var c,d,e,f=a.f,h=a.c,i=a.input,j=a.d,k=b[0],l=b[1];l>h&&(c=i[j++],c!==g);)f|=c<>>16,a.f=f>>e,a.c=h-e,a.d=j,65535&d}function f(a){function c(a,b,c){var f,g,h,i;for(i=0;a>i;)switch(f=e(this,b)){case 16:for(h=3+d(this,2);h--;)c[i++]=g;break;case 17:for(h=3+d(this,3);h--;)c[i++]=0;g=0;break;case 18:for(h=11+d(this,7);h--;)c[i++]=0;g=0;break;default:g=c[i++]=f}return c}var f,g,h,j,k=d(a,5)+257,l=d(a,5)+1,m=d(a,4)+4,n=new(i?Uint8Array:Array)(o.length);for(j=0;m>j;++j)n[o[j]]=d(a,3);f=b(n),g=new(i?Uint8Array:Array)(k),h=new(i?Uint8Array:Array)(l),a.j(b(c.call(a,k,f,g)),b(c.call(a,l,f,h)))}var g=void 0,h=this,i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,j=0,k=1;c.prototype.t=function(){for(;!this.l;){var a=d(this,3);switch(1&a&&(this.l=!0),a>>>=1){case 0:var b=this.input,c=this.d,e=this.b,h=this.a,l=g,m=g,n=g,o=e.length,p=g;if(this.c=this.f=0,l=b[c++],l===g)throw Error("invalid uncompressed block header: LEN (first byte)");if(m=l,l=b[c++],l===g)throw Error("invalid uncompressed block header: LEN (second byte)");if(m|=l<<8,l=b[c++],l===g)throw Error("invalid uncompressed block header: NLEN (first byte)");if(n=l,l=b[c++],l===g)throw Error("invalid uncompressed block header: NLEN (second byte)");if(n|=l<<8,m===~n)throw Error("invalid uncompressed block header: length verify");if(c+m>b.length)throw Error("input buffer is broken");switch(this.i){case j:for(;h+m>e.length;){if(p=o-h,m-=p,i)e.set(b.subarray(c,c+p),h),h+=p,c+=p;else for(;p--;)e[h++]=b[c++];this.a=h,e=this.e(),h=this.a}break;case k:for(;h+m>e.length;)e=this.e({o:2});break;default:throw Error("invalid inflate mode")}if(i)e.set(b.subarray(c,c+m),h),h+=m,c+=m;else for(;m--;)e[h++]=b[c++];this.d=c,this.a=h,this.b=e;break;case 1:this.j(A,C);break;case 2:f(this);break;default:throw Error("unknown BTYPE: "+a)}}return this.m()};var l,m,n=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],o=i?new Uint16Array(n):n,p=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,258,258],q=i?new Uint16Array(p):p,r=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0],s=i?new Uint8Array(r):r,t=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577],u=i?new Uint16Array(t):t,v=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],w=i?new Uint8Array(v):v,x=new(i?Uint8Array:Array)(288);for(l=0,m=x.length;m>l;++l)x[l]=143>=l?8:255>=l?9:279>=l?7:8;var y,z,A=b(x),B=new(i?Uint8Array:Array)(30);for(y=0,z=B.length;z>y;++y)B[y]=5;var C=b(B);c.prototype.j=function(a,b){var c=this.b,f=this.a;this.n=a;for(var g,h,i,j,k=c.length-258;256!==(g=e(this,a));)if(256>g)f>=k&&(this.a=f,c=this.e(),f=this.a),c[f++]=g;else for(h=g-257,j=q[h],0=k&&(this.a=f,c=this.e(),f=this.a);j--;)c[f]=c[f++-i];for(;8<=this.c;)this.c-=8,this.d--;this.a=f},c.prototype.s=function(a,b){var c=this.b,f=this.a;this.n=a;for(var g,h,i,j,k=c.length;256!==(g=e(this,a));)if(256>g)f>=k&&(c=this.e(),k=c.length),c[f++]=g;else for(h=g-257,j=q[h],0k&&(c=this.e(),k=c.length);j--;)c[f]=c[f++-i];for(;8<=this.c;)this.c-=8,this.d--;this.a=f},c.prototype.e=function(){var a,b,c=new(i?Uint8Array:Array)(this.a-32768),d=this.a-32768,e=this.b;if(i)c.set(e.subarray(32768,c.length));else for(a=0,b=c.length;b>a;++a)c[a]=e[a+32768];if(this.g.push(c),this.k+=c.length,i)e.set(e.subarray(d,d+32768));else for(a=0;32768>a;++a)e[a]=e[d+a];return this.a=32768,e},c.prototype.u=function(a){var b,c,d,e,f=this.input.length/this.d+1|0,g=this.input,h=this.b;return a&&("number"==typeof a.o&&(f=a.o),"number"==typeof a.q&&(f+=a.q)),2>f?(c=(g.length-this.d)/this.n[2],e=258*(c/2)|0,d=eb;++b)for(a=h[b],d=0,e=a.length;e>d;++d)j[f++]=a[d];for(b=32768,c=this.a;c>b;++b)j[f++]=g[b];return this.g=[],this.buffer=j},c.prototype.r=function(){var a,b=this.a;return i?this.p?(a=new Uint8Array(b),a.set(this.b.subarray(0,b))):a=this.b.subarray(0,b):(this.b.length>b&&(this.b.length=b),a=this.b),this.buffer=a},a("Zlib.RawInflate",c),a("Zlib.RawInflate.prototype.decompress",c.prototype.t);var D,E,F,G,H={ADAPTIVE:k,BLOCK:j};if(Object.keys)D=Object.keys(H);else for(E in D=[],F=0,H)D[F++]=E;for(F=0,G=D.length;G>F;++F)E=D[F],a("Zlib.RawInflate.BufferType."+E,H[E])}).call(this)},{}]},{},[7])(7)}); \ No newline at end of file diff --git a/docs/assets/js/vendor/less.min.js b/docs/assets/js/vendor/less.min.js new file mode 100644 index 00000000..9fff6b3c --- /dev/null +++ b/docs/assets/js/vendor/less.min.js @@ -0,0 +1,16 @@ +/*! + * LESS - Leaner CSS v1.6.2 + * http://lesscss.org + * + * Copyright (c) 2009-2014, Alexis Sellier + * Licensed under the Apache v2 License. + * + */ + + /** * @license Apache v2 + */ + +!function(a,b){function c(b){return a.less[b.split("/")[1]]}function d(a,b){"development"==v.env&&"undefined"!=typeof console&&v.logLevel>=b&&console.log("less: "+a)}function e(a){return a.replace(/^[a-z-]+:\/+?[^\/]+/,"").replace(/^\//,"").replace(/\.[a-zA-Z]+$/,"").replace(/[^\.\w-]+/g,"-").replace(/\./g,":")}function f(a,c){var e="{line} {content}",f=a.filename||c,g=[],h=(a.type||"Syntax")+"Error: "+(a.message||"There is an error in your .less file")+" in "+f+" ",i=function(a,c,d){a.extract[c]!==b&&g.push(e.replace(/\{line\}/,(parseInt(a.line,10)||0)+(c-1)).replace(/\{class\}/,d).replace(/\{content\}/,a.extract[c]))};a.extract?(i(a,0,""),i(a,1,"line"),i(a,2,""),h+="on line "+a.line+", column "+(a.column+1)+":\n"+g.join("\n")):a.stack&&(h+=a.stack),d(h,y.errors)}function g(a,b,c){var f=b.href||"",g="less:"+(b.title||e(f)),h=document.getElementById(g),i=!1,j=document.createElement("style");if(j.setAttribute("type","text/css"),b.media&&j.setAttribute("media",b.media),j.id=g,j.styleSheet)try{j.styleSheet.cssText=a}catch(k){throw new Error("Couldn't reassign styleSheet.cssText.")}else j.appendChild(document.createTextNode(a)),i=null!==h&&h.childNodes.length>0&&j.childNodes.length>0&&h.firstChild.nodeValue===j.firstChild.nodeValue;var l=document.getElementsByTagName("head")[0];if(null===h||i===!1){var m=b&&b.nextSibling||null;m?m.parentNode.insertBefore(j,m):l.appendChild(j)}if(h&&i===!1&&h.parentNode.removeChild(h),c&&C){d("saving "+f+" to cache.",y.info);try{C.setItem(f,a),C.setItem(f+":timestamp",c)}catch(k){d("failed to save",y.errors)}}}function h(a,c){var d,f,h="less-error-message:"+e(c||""),i='
  • {content}
  • ',j=document.createElement("div"),k=[],l=a.filename||c,m=l.match(/([^\/]+(\?.*)?)$/)[1];j.id=h,j.className="less-error-message",f="

    "+(a.type||"Syntax")+"Error: "+(a.message||"There is an error in your .less file")+'

    in '+m+" ";var n=function(a,c,d){a.extract[c]!==b&&k.push(i.replace(/\{line\}/,(parseInt(a.line,10)||0)+(c-1)).replace(/\{class\}/,d).replace(/\{content\}/,a.extract[c]))};a.extract?(n(a,0,""),n(a,1,"line"),n(a,2,""),f+="on line "+a.line+", column "+(a.column+1)+":

      "+k.join("")+"
    "):a.stack&&(f+="
    "+a.stack.split("\n").slice(1).join("
    ")),j.innerHTML=f,g([".less-error-message ul, .less-error-message li {","list-style-type: none;","margin-right: 15px;","padding: 4px 0;","margin: 0;","}",".less-error-message label {","font-size: 12px;","margin-right: 15px;","padding: 4px 0;","color: #cc7777;","}",".less-error-message pre {","color: #dd6666;","padding: 4px 0;","margin: 0;","display: inline-block;","}",".less-error-message pre.line {","color: #ff0000;","}",".less-error-message h3 {","font-size: 20px;","font-weight: bold;","padding: 15px 0 5px 0;","margin: 0;","}",".less-error-message a {","color: #10a","}",".less-error-message .error {","color: red;","font-weight: bold;","padding-bottom: 2px;","border-bottom: 1px dashed red;","}"].join("\n"),{title:"error-message"}),j.style.cssText=["font-family: Arial, sans-serif","border: 1px solid #e00","background-color: #eee","border-radius: 5px","-webkit-border-radius: 5px","-moz-border-radius: 5px","color: #e00","padding: 15px","margin-bottom: 15px"].join(";"),"development"==v.env&&(d=setInterval(function(){document.body&&(document.getElementById(h)?document.body.replaceChild(j,document.getElementById(h)):document.body.insertBefore(j,document.body.firstChild),clearInterval(d))},10))}function i(a,b){v.errorReporting&&"html"!==v.errorReporting?"console"===v.errorReporting?f(a,b):"function"==typeof v.errorReporting&&v.errorReporting("add",a,b):h(a,b)}function j(a){var b=document.getElementById("less-error-message:"+e(a));b&&b.parentNode.removeChild(b)}function k(){}function l(a){v.errorReporting&&"html"!==v.errorReporting?"console"===v.errorReporting?k(a):"function"==typeof v.errorReporting&&v.errorReporting("remove",a):j(a)}function m(a){for(var b,c=document.getElementsByTagName("style"),d=0;d0&&(h.splice(c-1,2),c-=2)}return g.hostPart=f[1],g.directories=h,g.path=f[1]+h.join("/"),g.fileUrl=g.path+(f[4]||""),g.url=g.fileUrl+(f[5]||""),g}function o(a,b){var c,d,e,f,g=n(a),h=n(b),i="";if(g.hostPart!==h.hostPart)return"";for(d=Math.max(h.directories.length,g.directories.length),c=0;d>c&&h.directories[c]===g.directories[c];c++);for(f=h.directories.slice(c),e=g.directories.slice(c),c=0;c=200&&b.status<300?c(b.responseText,b.getResponseHeader("Last-Modified")):"function"==typeof d&&d(b.status,a)}var g=p(),h=x?v.fileAsync:v.async;"function"==typeof g.overrideMimeType&&g.overrideMimeType("text/css"),d("XHR: Getting '"+a+"'",y.info),g.open("GET",a,h),g.setRequestHeader("Accept",b||"text/x-less, text/css; q=0.9, */*; q=0.5"),g.send(null),x&&!v.fileAsync?0===g.status||g.status>=200&&g.status<300?c(g.responseText):e(g.status,a):h?g.onreadystatechange=function(){4==g.readyState&&f(g,c,e)}:f(g,c,e)}function r(b,c,d,e){c&&c.currentDirectory&&!/^([a-z-]+:)?\//.test(b)&&(b=c.currentDirectory+b);var f=n(b,a.location.href),g=f.url,h={currentDirectory:f.path,filename:g};if(c?(h.entryPath=c.entryPath,h.rootpath=c.rootpath,h.rootFilename=c.rootFilename,h.relativeUrls=c.relativeUrls):(h.entryPath=f.path,h.rootpath=v.rootpath||f.path,h.rootFilename=g,h.relativeUrls=e.relativeUrls),h.relativeUrls&&(h.rootpath=e.rootpath?n(e.rootpath+o(f.path,h.entryPath)).path:f.path),e.useFileCache&&D[g])try{var i=D[g];d(null,i,g,h,{lastModified:new Date})}catch(j){d(j,null,g)}else q(g,e.mime,function(a,b){D[g]=a;try{d(null,a,g,h,{lastModified:b})}catch(c){d(c,null,g)}},function(a,b){d({type:"File",message:"'"+b+"' wasn't found ("+a+")"},null,g)})}function s(a,b,c,d,e){var f=new v.tree.parseEnv(v);f.mime=a.type,(e||v.globalVars)&&(f.useFileCache=!0),r(a.href,null,function(h,i,j,k,m){if(m){m.remaining=d;var n=C&&C.getItem(j),o=C&&C.getItem(j+":timestamp");if(!c&&o&&m.lastModified&&new Date(m.lastModified).valueOf()===new Date(o).valueOf())return g(n,a),m.local=!0,b(null,null,i,a,m,j),void 0}l(j),i?(f.currentFileInfo=k,new v.Parser(f).parse(i,function(c,d){if(c)return b(c,null,null,a);try{b(c,d,i,a,m,j)}catch(c){b(c,null,null,a)}},{modifyVars:e,globalVars:v.globalVars})):b(h,null,null,a,m,j)},f,e)}function t(a,b,c){for(var d=0;dE&&(D=D.slice(x-E),E=x)}function g(a,b){var c=a.charCodeAt(0|b);return 32>=c&&(32===c||10===c||9===c)}function h(a){var b,c,d=typeof a;return"string"===d?u.charAt(x)!==a?null:(k(1),a):(f(),(b=a.exec(D))?(c=b[0].length,k(c),"string"==typeof b?b:1===b.length?b[0]:b):null)}function i(a){x>E&&(D=D.slice(x-E),E=x);var b=a.exec(D);return b?(k(b[0].length),"string"==typeof b?b:1===b.length?b[0]:b):null}function j(a){return u.charAt(x)!==a?null:(k(1),a)}function k(a){for(var b,c=x,d=y,e=x-E,f=x+D.length-e,g=x+=a,h=u;f>x&&(b=h.charCodeAt(x),!(b>32))&&(32===b||10===b||9===b||13===b);x++);return D=D.slice(a+x-g+e),E=x,!D.length&&y=0&&"\n"!==b.charAt(c);)e++;return"number"==typeof a&&(d=(b.slice(0,a).match(/\n/g)||"").length),{line:d,column:e}}function s(a,b,d){var e=d.currentFileInfo.filename;return"browser"!==v.mode&&"rhino"!==v.mode&&(e=c("path").resolve(e)),{lineNumber:r(a,b).line+1,fileName:e}}function t(a,b){var c=q(a,b),d=r(a.index,c),e=d.line,f=d.column,g=a.call&&r(a.call,c).line,h=c.split("\n");this.type=a.type||"Syntax",this.message=a.message,this.filename=a.filename||b.currentFileInfo.filename,this.index=a.index,this.line="number"==typeof e?e+1:null,this.callLine=g+1,this.callExtract=h[g],this.stack=a.stack,this.column=f,this.extract=[h[e-1],h[e],h[e+1]]}var u,x,y,z,A,B,C,D,E,F,G,H=a&&a.filename;a instanceof w.parseEnv||(a=new w.parseEnv(a));var I=this.imports={paths:a.paths||[],queue:[],files:a.files,contents:a.contents,contentsIgnoredChars:a.contentsIgnoredChars,mime:a.mime,error:null,push:function(b,c,d,e){var f=this;this.queue.push(b);var g=function(a,c,d){f.queue.splice(f.queue.indexOf(b),1);var g=d in f.files||d===H;f.files[d]=c,a&&!f.error&&(f.error=a),e(a,c,g,d)};v.Parser.importer?v.Parser.importer(b,c,g,a):v.Parser.fileLoader(b,c,function(b,e,f,h){if(b)return g(b),void 0;var i=new w.parseEnv(a);i.currentFileInfo=h,i.processImports=!1,i.contents[f]=e,(c.reference||d.reference)&&(h.reference=!0),d.inline?g(null,e,f):new v.Parser(i).parse(e,function(a,b){g(a,b,f)})},a)}},J=i;return t.prototype=new Error,t.prototype.constructor=t,this.env=a=a||{},this.optimization="optimization"in this.env?this.env.optimization:1,F={imports:I,parse:function(d,e,f){var g,h,i,j,k,l=null,m="";if(x=y=E=B=0,j=f&&f.globalVars?v.Parser.serializeVars(f.globalVars)+"\n":"",k=f&&f.modifyVars?"\n"+v.Parser.serializeVars(f.modifyVars):"",(j||f&&f.banner)&&(m=(f&&f.banner?f.banner:"")+j,F.imports.contentsIgnoredChars[a.currentFileInfo.filename]=m.length),d=d.replace(/\r\n/g,"\n"),u=d=m+d.replace(/^\uFEFF/,"")+k,F.imports.contents[a.currentFileInfo.filename]=d,C=function(b){function c(b,c){l=new t({index:c||i,type:"Parse",message:b,filename:a.currentFileInfo.filename},a)}function d(a){var c=i-s;512>c&&!a||!c||(r.push(b.slice(s,i+1)),s=i+1)}var e,f,g,h,i,j,k,m,n,o=b.length,p=0,q=0,r=[],s=0;for(i=0;o>i;i++)if(k=b.charCodeAt(i),!(k>=97&&122>=k||34>k))switch(k){case 40:q++,f=i;continue;case 41:if(--q<0)return c("missing opening `(`");continue;case 59:q||d();continue;case 123:p++,e=i;continue;case 125:if(--p<0)return c("missing opening `{`");p||d();continue;case 92:if(o-1>i){i++;continue}return c("unescaped `\\`");case 34:case 39:case 96:for(n=0,j=i,i+=1;o>i;i++)if(m=b.charCodeAt(i),!(m>96)){if(m==k){n=1;break}if(92==m){if(i==o-1)return c("unescaped `\\`");i++}}if(n)continue;return c("unmatched `"+String.fromCharCode(k)+"`",j);case 47:if(q||i==o-1)continue;if(m=b.charCodeAt(i+1),47==m)for(i+=2;o>i&&(m=b.charCodeAt(i),!(13>=m)||10!=m&&13!=m);i++);else if(42==m){for(g=j=i,i+=2;o-1>i&&(m=b.charCodeAt(i),125==m&&(h=i),42!=m||47!=b.charCodeAt(i+1));i++);if(i==o-1)return c("missing closing `*/`",j);i++}continue;case 42:if(o-1>i&&47==b.charCodeAt(i+1))return c("unmatched `/*`");continue}return 0!==p?g>e&&h>g?c("missing closing `}` or `*/`",e):c("missing closing `}`",e):0!==q?c("missing closing `)`",f):(d(!0),r)}(d),l)return e(new t(l,a));D=C[0];try{g=new w.Ruleset(null,this.parsers.primary()),g.root=!0,g.firstRoot=!0}catch(n){return e(new t(n,a))}if(g.toCSS=function(d){return function(e,f){e=e||{};var g,h,i=new w.evalEnv(e);"object"!=typeof f||Array.isArray(f)||(f=Object.keys(f).map(function(a){var b=f[a];return b instanceof w.Value||(b instanceof w.Expression||(b=new w.Expression([b])),b=new w.Value([b])),new w.Rule("@"+a,b,!1,null,0)}),i.frames=[new w.Ruleset(null,f)]);try{var j,k=[],l=[new w.joinSelectorVisitor,new w.processExtendsVisitor,new w.toCSSVisitor({compress:Boolean(e.compress)})],m=this;if(e.plugins)for(j=0;j57||43>b||47===b||44==b))return a=i(/^([+-]?\d*\.?\d+)(%|[a-z]+)?/),a?new w.Dimension(a[1],a[2]):void 0},unicodeDescriptor:function(){var a;return a=i(/^U\+[0-9a-fA-F?]+(\-[0-9a-fA-F?]+)?/),a?new w.UnicodeDescriptor(a[0]):void 0},javascript:function(){var c,d,e=x;return"~"===u.charAt(e)&&(e++,d=!0),"`"===u.charAt(e)?(a.javascriptEnabled===b||a.javascriptEnabled||n("You are using JavaScript, which has been disabled."),d&&j("~"),c=i(/^`([^`]*)`/),c?new w.JavaScript(c[1],x,d):void 0):void 0}},variable:function(){var a;return"@"===u.charAt(x)&&(a=i(/^(@[\w-]+)\s*:/))?a[1]:void 0},extend:function(a){var b,c,d,e,f,g=x;if(a?i(/^&:extend\(/):i(/^:extend\(/)){do{for(d=null,b=null;!(d=i(/^(all)(?=\s*(\)|,))/))&&(c=this.element());)b?b.push(c):b=[c];d=d&&d[1],f=new w.Extend(new w.Selector(b),d,g),e?e.push(f):e=[f]}while(j(","));return l(/^\)/),a&&l(/^;/),e}},extendRule:function(){return this.extend(!0)},mixin:{call:function(){var b,c,f,g,h,k,l=u.charAt(x),n=!1,o=x;if("."===l||"#"===l){for(d();;){if(b=x,g=i(/^[#.](?:[\w-]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/),!g)break;f=new w.Element(h,g,b,a.currentFileInfo),c?c.push(f):c=[f],h=j(">")}return c&&(j("(")&&(k=this.args(!0).args,m(")")),G.important()&&(n=!0),G.end())?new w.mixin.Call(c,k,o,a.currentFileInfo,n):(e(),void 0)}},args:function(a){for(var b,c,d,e,f,g,h=F.parsers,k=h.entities,m={args:null,variadic:!1},o=[],p=[],q=[];;){if(a)g=h.expression();else{if(h.comments(),"."===u.charAt(x)&&i(/^\.{3}/)){m.variadic=!0,j(";")&&!b&&(b=!0),(b?p:q).push({variadic:!0});break}g=k.variable()||k.literal()||k.keyword()}if(!g)break;e=null,g.throwAwayComments&&g.throwAwayComments(),f=g;var r=null;if(a?1==g.value.length&&(r=g.value[0]):r=g,r&&r instanceof w.Variable)if(j(":"))o.length>0&&(b&&n("Cannot mix ; and , as delimiter types"),c=!0),f=l(h.expression),e=d=r.name;else{if(!a&&i(/^\.{3}/)){m.variadic=!0,j(";")&&!b&&(b=!0),(b?p:q).push({name:g.name,variadic:!0});break}a||(d=e=r.name,f=null)}f&&o.push(f),q.push({name:e,value:f}),j(",")||(j(";")||b)&&(c&&n("Cannot mix ; and , as delimiter types"),b=!0,o.length>1&&(f=new w.Value(o)),p.push({name:d,value:f}),d=null,o=[],c=!1)}return m.args=b?p:q,m},definition:function(){var a,b,c,f,g=[],h=!1;if(!("."!==u.charAt(x)&&"#"!==u.charAt(x)||o(/^[^{]*\}/))&&(d(),b=i(/^([#.](?:[\w-]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+)\s*\(/))){a=b[1];var k=this.args(!1);if(g=k.args,h=k.variadic,j(")")||(B=x,e()),G.comments(),i(/^when/)&&(f=l(G.conditions,"expected condition")),c=G.block())return new w.mixin.Definition(a,g,c,f,h);e()}}},entity:function(){var a=this.entities;return a.literal()||a.variable()||a.url()||a.call()||a.keyword()||a.javascript()||this.comment()},end:function(){return j(";")||p("}")},alpha:function(){var a;if(i(/^\(opacity=/i))return a=i(/^\d+/)||this.entities.variable(),a?(m(")"),new w.Alpha(a)):void 0},element:function(){var b,c,d,e=x;return c=this.combinator(),b=i(/^(?:\d+\.\d+|\d+)%/)||i(/^(?:[.#]?|:*)(?:[\w-]|[^\x00-\x9f]|\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/)||j("*")||j("&")||this.attribute()||i(/^\([^()@]+\)/)||i(/^[\.#](?=@)/)||this.entities.variableCurly(),b||j("(")&&(d=this.selector())&&j(")")&&(b=new w.Paren(d)),b?new w.Element(c,b,e,a.currentFileInfo):void 0},combinator:function(){var a=u.charAt(x);if(">"===a||"+"===a||"~"===a||"|"===a||"^"===a){for(x++,"^"===u.charAt(x)&&(a="^^",x++);g(u,x);)x++;return new w.Combinator(a)}return g(u,x-1)?new w.Combinator(" "):new w.Combinator(null)},lessSelector:function(){return this.selector(!0)},selector:function(b){for(var c,d,e,f,g,h,i,j=x,k=J;(b&&(g=this.extend())||b&&(h=k(/^when/))||(f=this.element()))&&(h?i=l(this.conditions,"expected condition"):i?n("CSS guard can only be used at the end of selector"):g?d?d.push(g):d=[g]:(d&&n("Extend can only be used at the end of selector"),e=u.charAt(x),c?c.push(f):c=[f],f=null),"{"!==e&&"}"!==e&&";"!==e&&","!==e&&")"!==e););return c?new w.Selector(c,d,i,j,a.currentFileInfo):(d&&n("Extend must be used to extend a selector, it cannot be used on its own"),void 0)},attribute:function(){if(j("[")){var a,b,c,d=this.entities;return(a=d.variableCurly())||(a=l(/^(?:[_A-Za-z0-9-\*]*\|)?(?:[_A-Za-z0-9-]|\\.)+/)),c=i(/^[|~*$^]?=/),c&&(b=d.quoted()||i(/^[0-9]+%/)||i(/^[\w-]+/)||d.variableCurly()),m("]"),new w.Attribute(a,c,b)}},block:function(){var a;return j("{")&&(a=this.primary())&&j("}")?a:void 0},ruleset:function(){var b,c,f,g;for(d(),a.dumpLineNumbers&&(g=s(x,u,a));;){if(c=this.lessSelector(),!c)break;if(b?b.push(c):b=[c],this.comments(),c.condition&&b.length>1&&n("Guards are only currently allowed on a single selector."),!j(","))break;c.condition&&n("Guards are only currently allowed on a single selector."),this.comments()}if(b&&(f=this.block())){var h=new w.Ruleset(b,f,a.strictImports);return a.dumpLineNumbers&&(h.debugInfo=g),h}B=x,e()},rule:function(b){var c,f,g,h=u.charAt(x),i=!1;if(d(),"."!==h&&"#"!==h&&"&"!==h&&(c=this.variable()||this.ruleProperty())){if(f=!b&&(a.compress||c.charAt&&"@"===c.charAt(0))?this.value()||this.anonymousValue():this.anonymousValue()||this.value(),g=this.important(),i=c.pop&&"+"===c.pop().value,f&&this.end())return new w.Rule(c,f,g,i,A,a.currentFileInfo);if(B=x,e(),f&&!b)return this.rule(!0)}},anonymousValue:function(){var a;return a=/^([^@+\/'"*`(;{}-]*);/.exec(D),a?(x+=a[0].length-1,new w.Anonymous(a[1])):void 0},"import":function(){var b,c,f=x;d();var g=i(/^@import?\s+/),h=(g?this.importOptions():null)||{};return g&&(b=this.entities.quoted()||this.entities.url())&&(c=this.mediaFeatures(),j(";"))?(c=c&&new w.Value(c),new w.Import(b,c,h,f,a.currentFileInfo)):(e(),void 0)},importOptions:function(){var a,b,c,d={};if(!j("("))return null;do if(a=this.importOption()){switch(b=a,c=!0,b){case"css":b="less",c=!1;break;case"once":b="multiple",c=!1}if(d[b]=c,!j(","))break}while(a);return m(")"),d},importOption:function(){var a=i(/^(less|css|multiple|once|inline|reference)/);return a?a[1]:void 0},mediaFeature:function(){var b,c,d=this.entities,e=[];do if(b=d.keyword()||d.variable())e.push(b);else if(j("(")){if(c=this.property(),b=this.value(),!j(")"))return null;if(c&&b)e.push(new w.Paren(new w.Rule(c,b,null,null,x,a.currentFileInfo,!0)));else{if(!b)return null;e.push(new w.Paren(b))}}while(b);return e.length>0?new w.Expression(e):void 0},mediaFeatures:function(){var a,b=this.entities,c=[];do if(a=this.mediaFeature()){if(c.push(a),!j(","))break}else if(a=b.variable(),a&&(c.push(a),!j(",")))break;while(a);return c.length>0?c:null},media:function(){var b,c,d,e;return a.dumpLineNumbers&&(e=s(x,u,a)),i(/^@media/)&&(b=this.mediaFeatures(),c=this.block())?(d=new w.Media(c,b,x,a.currentFileInfo),a.dumpLineNumbers&&(d.debugInfo=e),d):void 0},directive:function(){var b,c,f,g,h,k,l,m,n=x;if("@"===u.charAt(x)){if(c=this["import"]()||this.media())return c;if(d(),b=i(/^@[a-z-]+/)){switch(g=b,"-"==b.charAt(1)&&b.indexOf("-",2)>0&&(g="@"+b.slice(b.indexOf("-",2)+1)),g){case"@font-face":h=!0;break;case"@viewport":case"@top-left":case"@top-left-corner":case"@top-center":case"@top-right":case"@top-right-corner":case"@bottom-left":case"@bottom-left-corner":case"@bottom-center":case"@bottom-right":case"@bottom-right-corner":case"@left-top":case"@left-middle":case"@left-bottom":case"@right-top":case"@right-middle":case"@right-bottom":h=!0;break;case"@host":case"@page":case"@document":case"@supports":case"@keyframes":h=!0,k=!0;break;case"@namespace":l=!0}if(k&&(m=(i(/^[^{]+/)||"").trim(),m&&(b+=" "+m)),h){if(f=this.block())return new w.Directive(b,f,n,a.currentFileInfo)}else if(c=l?this.expression():this.entity(),c&&j(";")){var o=new w.Directive(b,c,n,a.currentFileInfo);return a.dumpLineNumbers&&(o.debugInfo=s(x,u,a)),o}e()}}},value:function(){var a,b=[];do if(a=this.expression(),a&&(b.push(a),!j(",")))break;while(a);return b.length>0?new w.Value(b):void 0},important:function(){return"!"===u.charAt(x)?i(/^! *important/):void 0},sub:function(){var a,b;return j("(")&&(a=this.addition())?(b=new w.Expression([a]),m(")"),b.parens=!0,b):void 0},multiplication:function(){var a,b,c,d,e;if(a=this.operand()){for(e=g(u,x-1);;){if(o(/^\/[*\/]/))break;if(c=j("/")||j("*"),!c)break;if(b=this.operand(),!b)break;a.parensInOp=!0,b.parensInOp=!0,d=new w.Operation(c,[d||a,b],e),e=g(u,x-1)}return d||a}},addition:function(){var a,b,c,d,e;if(a=this.multiplication()){for(e=g(u,x-1);;){if(c=i(/^[-+]\s+/)||!e&&(j("+")||j("-")),!c)break;if(b=this.multiplication(),!b)break;a.parensInOp=!0,b.parensInOp=!0,d=new w.Operation(c,[d||a,b],e),e=g(u,x-1)}return d||a}},conditions:function(){var a,b,c,d=x;if(a=this.condition()){for(;;){if(!o(/^,\s*(not\s*)?\(/)||!j(","))break;if(b=this.condition(),!b)break;c=new w.Condition("or",c||a,b,d)}return c||a}},condition:function(){var a,b,c,d,e=this.entities,f=x,g=!1;return i(/^not/)&&(g=!0),m("("),a=this.addition()||e.keyword()||e.quoted(),a?(d=i(/^(?:>=|<=|=<|[<=>])/),d?(b=this.addition()||e.keyword()||e.quoted(),b?c=new w.Condition(d,a,b,f,g):n("expected expression")):c=new w.Condition("=",a,new w.Keyword("true"),f,g),m(")"),i(/^and/)?new w.Condition("and",c,this.condition()):c):void 0},operand:function(){var a,b=this.entities,c=u.charAt(x+1);"-"!==u.charAt(x)||"@"!==c&&"("!==c||(a=j("-"));var d=this.sub()||b.dimension()||b.color()||b.variable()||b.call();return a&&(d.parensInOp=!0,d=new w.Negative(d)),d},expression:function(){var a,b,c=[];do a=this.addition()||this.entity(),a&&(c.push(a),o(/^\/[\/*]/)||(b=j("/"),b&&c.push(new w.Anonymous(b))));while(a);return c.length>0?new w.Expression(c):void 0},property:function(){var a=i(/^(\*?-?[_a-zA-Z0-9-]+)\s*:/);return a?a[1]:void 0},ruleProperty:function(){function b(a){var b=a.exec(e);return b?(g.push(x+h),h+=b[0].length,e=e.slice(b[1].length),f.push(b[1])):void 0}var c,d,e=D,f=[],g=[],h=0;for(b(/^(\*?)/);b(/^((?:[\w-]+)|(?:@\{[\w-]+\}))/););if(f.length>1&&b(/^\s*(\+?)\s*:/)){for(k(h),""===f[0]&&(f.shift(),g.shift()),d=0;dl;l++)e=b.rgb[l]/255,f=c.rgb[l]/255,h=a(e,f),g&&(h=(j*f+i*(e-j*(e+f-h)))/g),k[l]=255*h;return new d.Color(k,g)}function g(){var a,b=d.functions;for(a in l)l.hasOwnProperty(a)&&(b[a]=e.bind(null,Math[a],l[a]));for(a in m)m.hasOwnProperty(a)&&(b[a]=f.bind(null,m[a]));a=d.defaultFunc,b["default"]=a.eval.bind(a)}function h(a){return d.functions.hsla(a.h,a.s,a.l,a.a)}function i(a,b){return a instanceof d.Dimension&&a.unit.is("%")?parseFloat(a.value*b/100):j(a)}function j(a){if(a instanceof d.Dimension)return parseFloat(a.unit.is("%")?a.value/100:a.value);if("number"==typeof a)return a;throw{error:"RuntimeError",message:"color functions take numbers as parameters"}}function k(a){return Math.min(1,Math.max(0,a))}d.functions={rgb:function(a,b,c){return this.rgba(a,b,c,1)},rgba:function(a,b,c,e){var f=[a,b,c].map(function(a){return i(a,255)});return e=j(e),new d.Color(f,e)},hsl:function(a,b,c){return this.hsla(a,b,c,1)},hsla:function(a,b,c,d){function e(a){return a=0>a?a+1:a>1?a-1:a,1>6*a?g+(f-g)*a*6:1>2*a?f:2>3*a?g+(f-g)*(2/3-a)*6:g}a=j(a)%360/360,b=k(j(b)),c=k(j(c)),d=k(j(d));var f=.5>=c?c*(b+1):c+b-c*b,g=2*c-f;return this.rgba(255*e(a+1/3),255*e(a),255*e(a-1/3),d)},hsv:function(a,b,c){return this.hsva(a,b,c,1)},hsva:function(a,b,c,d){a=j(a)%360/360*360,b=j(b),c=j(c),d=j(d);var e,f;e=Math.floor(a/60%6),f=a/60-e;var g=[c,c*(1-b),c*(1-f*b),c*(1-(1-f)*b)],h=[[0,3,1],[2,0,1],[1,0,3],[1,2,0],[3,1,0],[0,1,2]];return this.rgba(255*g[h[e][0]],255*g[h[e][1]],255*g[h[e][2]],d)},hue:function(a){return new d.Dimension(Math.round(a.toHSL().h))},saturation:function(a){return new d.Dimension(Math.round(100*a.toHSL().s),"%")},lightness:function(a){return new d.Dimension(Math.round(100*a.toHSL().l),"%")},hsvhue:function(a){return new d.Dimension(Math.round(a.toHSV().h))},hsvsaturation:function(a){return new d.Dimension(Math.round(100*a.toHSV().s),"%")},hsvvalue:function(a){return new d.Dimension(Math.round(100*a.toHSV().v),"%")},red:function(a){return new d.Dimension(a.rgb[0])},green:function(a){return new d.Dimension(a.rgb[1])},blue:function(a){return new d.Dimension(a.rgb[2])},alpha:function(a){return new d.Dimension(a.toHSL().a)},luma:function(a){return new d.Dimension(Math.round(a.luma()*a.alpha*100),"%")},saturate:function(a,b){if(!a.rgb)return null;var c=a.toHSL();return c.s+=b.value/100,c.s=k(c.s),h(c)},desaturate:function(a,b){var c=a.toHSL();return c.s-=b.value/100,c.s=k(c.s),h(c)},lighten:function(a,b){var c=a.toHSL();return c.l+=b.value/100,c.l=k(c.l),h(c)},darken:function(a,b){var c=a.toHSL();return c.l-=b.value/100,c.l=k(c.l),h(c)},fadein:function(a,b){var c=a.toHSL();return c.a+=b.value/100,c.a=k(c.a),h(c)},fadeout:function(a,b){var c=a.toHSL();return c.a-=b.value/100,c.a=k(c.a),h(c)},fade:function(a,b){var c=a.toHSL();return c.a=b.value/100,c.a=k(c.a),h(c)},spin:function(a,b){var c=a.toHSL(),d=(c.h+b.value)%360;return c.h=0>d?360+d:d,h(c)},mix:function(a,b,c){c||(c=new d.Dimension(50));var e=c.value/100,f=2*e-1,g=a.toHSL().a-b.toHSL().a,h=((f*g==-1?f:(f+g)/(1+f*g))+1)/2,i=1-h,j=[a.rgb[0]*h+b.rgb[0]*i,a.rgb[1]*h+b.rgb[1]*i,a.rgb[2]*h+b.rgb[2]*i],k=a.alpha*e+b.alpha*(1-e);return new d.Color(j,k)},greyscale:function(a){return this.desaturate(a,new d.Dimension(100))},contrast:function(a,b,c,d){if(!a.rgb)return null;if("undefined"==typeof c&&(c=this.rgba(255,255,255,1)),"undefined"==typeof b&&(b=this.rgba(0,0,0,1)),b.luma()>c.luma()){var e=c;c=b,b=e}return d="undefined"==typeof d?.43:j(d),a.luma()i.value)&&(k[f]=g)):(l[j]=k.length,k.push(g))):k.push(g);return 1==k.length?k[0]:(c=k.map(function(a){return a.toCSS(this.env)}).join(this.env.compress?",":", "),new d.Anonymous((a?"min":"max")+"("+c+")"))},min:function(){return this._minmax(!0,arguments)},max:function(){return this._minmax(!1,arguments)},argb:function(a){return new d.Anonymous(a.toARGB())},percentage:function(a){return new d.Dimension(100*a.value,"%")},color:function(a){if(a instanceof d.Quoted){var b,c=a.value;if(b=d.Color.fromKeyword(c))return b;if(/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})/.test(c))return new d.Color(c.slice(1));throw{type:"Argument",message:"argument must be a color keyword or 3/6 digit hex e.g. #FFF"}}throw{type:"Argument",message:"argument must be a string"}},iscolor:function(a){return this._isa(a,d.Color)},isnumber:function(a){return this._isa(a,d.Dimension)},isstring:function(a){return this._isa(a,d.Quoted)},iskeyword:function(a){return this._isa(a,d.Keyword)},isurl:function(a){return this._isa(a,d.URL)},ispixel:function(a){return this.isunit(a,"px")},ispercentage:function(a){return this.isunit(a,"%")},isem:function(a){return this.isunit(a,"em")},isunit:function(a,b){return a instanceof d.Dimension&&a.unit.is(b.value||b)?d.True:d.False},_isa:function(a,b){return a instanceof b?d.True:d.False},tint:function(a,b){return this.mix(this.rgb(255,255,255),a,b)},shade:function(a,b){return this.mix(this.rgb(0,0,0),a,b)},extract:function(a,b){return b=b.value-1,Array.isArray(a.value)?a.value[b]:Array(a)[b]},length:function(a){var b=Array.isArray(a.value)?a.value.length:1;return new d.Dimension(b)},"data-uri":function(b,e){if("undefined"!=typeof a)return new d.URL(e||b,this.currentFileInfo).eval(this.env);var f=b.value,g=e&&e.value,h=c("fs"),i=c("path"),j=!1;if(arguments.length<2&&(g=f),this.env.isPathRelative(g)&&(g=this.currentFileInfo.relativeUrls?i.join(this.currentFileInfo.currentDirectory,g):i.join(this.currentFileInfo.entryPath,g)),arguments.length<2){var k;try{k=c("mime")}catch(l){k=d._mime}f=k.lookup(g);var m=k.charsets.lookup(f);j=["US-ASCII","UTF-8"].indexOf(m)<0,j&&(f+=";base64")}else j=/;base64$/.test(f);var n=h.readFileSync(g),o=32,p=parseInt(n.length/1024,10);if(p>=o&&this.env.ieCompat!==!1)return this.env.silent||console.warn("Skipped data-uri embedding of %s because its size (%dKB) exceeds IE8-safe %dKB!",g,p,o),new d.URL(e||b,this.currentFileInfo).eval(this.env);n=j?n.toString("base64"):encodeURIComponent(n);var q='"data:'+f+","+n+'"';return new d.URL(new d.Anonymous(q))},"svg-gradient":function(a){function e(){throw{type:"Argument",message:"svg-gradient expects direction, start_color [start_position], [color position,]..., end_color [end_position]"}}arguments.length<3&&e();var f,g,h,i,j,k,l,m=Array.prototype.slice.call(arguments,1),n="linear",o='x="0" y="0" width="1" height="1"',p=!0,q={compress:!1},r=a.toCSS(q);switch(r){case"to bottom":f='x1="0%" y1="0%" x2="0%" y2="100%"';break;case"to right":f='x1="0%" y1="0%" x2="100%" y2="0%"';break;case"to bottom right":f='x1="0%" y1="0%" x2="100%" y2="100%"';break;case"to top right":f='x1="0%" y1="100%" x2="100%" y2="0%"';break;case"ellipse":case"ellipse at center":n="radial",f='cx="50%" cy="50%" r="75%"',o='x="-50" y="-50" width="101" height="101"';break;default:throw{type:"Argument",message:"svg-gradient direction must be 'to bottom', 'to right', 'to bottom right', 'to top right' or 'ellipse at center'"}}for(g='<'+n+'Gradient id="gradient" gradientUnits="userSpaceOnUse" '+f+">",h=0;hl?' stop-opacity="'+l+'"':"")+"/>";if(g+="',p)try{g=c("./encoder").encodeBase64(g)}catch(s){p=!1}return g="'data:image/svg+xml"+(p?";base64":"")+","+g+"'",new d.URL(new d.Anonymous(g))}},d._mime={_types:{".htm":"text/html",".html":"text/html",".gif":"image/gif",".jpg":"image/jpeg",".jpeg":"image/jpeg",".png":"image/png"},lookup:function(a){var e=c("path").extname(a),f=d._mime._types[e];if(f===b)throw new Error('Optional dependency "mime" is required for '+e);return f},charsets:{lookup:function(a){return a&&/^text\//.test(a)?"UTF-8":""}}};var l={ceil:null,floor:null,sqrt:null,abs:null,tan:"",sin:"",cos:"",atan:"rad",asin:"rad",acos:"rad"},m={multiply:function(a,b){return a*b},screen:function(a,b){return a+b-a*b},overlay:function(a,b){return a*=2,1>=a?m.multiply(a,b):m.screen(a-1,b)},softlight:function(a,b){var c=1,d=a;return b>.5&&(d=1,c=a>.25?Math.sqrt(a):((16*a-12)*a+4)*a),a-(1-2*b)*d*(c-a)},hardlight:function(a,b){return m.overlay(b,a)},difference:function(a,b){return Math.abs(a-b)},exclusion:function(a,b){return a+b-2*a*b},average:function(a,b){return(a+b)/2},negation:function(a,b){return 1-Math.abs(a+b-1)}};d.defaultFunc={eval:function(){var a=this.value_,b=this.error_;if(b)throw b;return null!=a?a?d.True:d.False:void 0},value:function(a){this.value_=a},error:function(a){this.error_=a},reset:function(){this.value_=this.error_=null}},g(),d.fround=function(a,b){var c;return a&&null!=a.numPrecision?(c=Math.pow(10,a.numPrecision),Math.round(b*c)/c):b},d.functionCall=function(a,b){this.env=a,this.currentFileInfo=b},d.functionCall.prototype=d.functions}(c("./tree")),function(a){a.colors={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgrey:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",grey:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}}(c("./tree")),function(a){a.debugInfo=function(b,c,d){var e="";if(b.dumpLineNumbers&&!b.compress)switch(b.dumpLineNumbers){case"comments":e=a.debugInfo.asComment(c);break;case"mediaquery":e=a.debugInfo.asMediaQuery(c);break;case"all":e=a.debugInfo.asComment(c)+(d||"")+a.debugInfo.asMediaQuery(c)}return e},a.debugInfo.asComment=function(a){return"/* line "+a.debugInfo.lineNumber+", "+a.debugInfo.fileName+" */\n"},a.debugInfo.asMediaQuery=function(a){return"@media -sass-debug-info{filename{font-family:"+("file://"+a.debugInfo.fileName).replace(/([.:\/\\])/g,function(a){return"\\"==a&&(a="/"),"\\"+a})+"}line{font-family:\\00003"+a.debugInfo.lineNumber+"}}\n"},a.find=function(a,b){for(var c,d=0;d1?"["+a.value.map(function(a){return a.toCSS(!1)}).join(", ")+"]":a.toCSS(!1)},a.toCSS=function(a){var b=[];return this.genCSS(a,{add:function(a){b.push(a)},isEmpty:function(){return 0===b.length}}),b.join("")},a.outputRuleset=function(a,b,c){var d,e=c.length;if(a.tabLevel=(0|a.tabLevel)+1,a.compress){for(b.add("{"),d=0;e>d;d++)c[d].genCSS(a,b);return b.add("}"),a.tabLevel--,void 0}var f="\n"+Array(a.tabLevel).join(" "),g=f+" ";if(e){for(b.add(" {"+g),c[0].genCSS(a,b),d=1;e>d;d++)b.add(g),c[d].genCSS(a,b);b.add(f+"}")}else b.add(" {"+f+"}");a.tabLevel--}}(c("./tree")),function(a){a.Alpha=function(a){this.value=a},a.Alpha.prototype={type:"Alpha",accept:function(a){this.value=a.visit(this.value)},eval:function(b){return this.value.eval?new a.Alpha(this.value.eval(b)):this},genCSS:function(a,b){b.add("alpha(opacity="),this.value.genCSS?this.value.genCSS(a,b):b.add(this.value),b.add(")")},toCSS:a.toCSS}}(c("../tree")),function(a){a.Anonymous=function(a,b,c,d){this.value=a.value||a,this.index=b,this.mapLines=d,this.currentFileInfo=c},a.Anonymous.prototype={type:"Anonymous",eval:function(){return new a.Anonymous(this.value,this.index,this.currentFileInfo,this.mapLines)},compare:function(a){if(!a.toCSS)return-1;var b=this.toCSS(),c=a.toCSS();return b===c?0:c>b?-1:1},genCSS:function(a,b){b.add(this.value,this.currentFileInfo,this.index,this.mapLines)},toCSS:a.toCSS}}(c("../tree")),function(a){a.Assignment=function(a,b){this.key=a,this.value=b},a.Assignment.prototype={type:"Assignment",accept:function(a){this.value=a.visit(this.value)},eval:function(b){return this.value.eval?new a.Assignment(this.key,this.value.eval(b)):this},genCSS:function(a,b){b.add(this.key+"="),this.value.genCSS?this.value.genCSS(a,b):b.add(this.value)},toCSS:a.toCSS}}(c("../tree")),function(a){a.Call=function(a,b,c,d){this.name=a,this.args=b,this.index=c,this.currentFileInfo=d},a.Call.prototype={type:"Call",accept:function(a){this.args&&(this.args=a.visitArray(this.args))},eval:function(b){var c,d,e=this.args.map(function(a){return a.eval(b)}),f=this.name.toLowerCase();if(f in a.functions)try{if(d=new a.functionCall(b,this.currentFileInfo),c=d[f].apply(d,e),null!=c)return c}catch(g){throw{type:g.type||"Runtime",message:"error evaluating function `"+this.name+"`"+(g.message?": "+g.message:""),index:this.index,filename:this.currentFileInfo.filename}}return new a.Call(this.name,e,this.index,this.currentFileInfo)},genCSS:function(a,b){b.add(this.name+"(",this.currentFileInfo,this.index);for(var c=0;ca?"0":"")+a.toString(16)}).join("")}function c(a,b){return Math.min(Math.max(a,0),b)}a.Color=function(a,b){this.rgb=Array.isArray(a)?a:6==a.length?a.match(/.{2}/g).map(function(a){return parseInt(a,16)}):a.split("").map(function(a){return parseInt(a+a,16)}),this.alpha="number"==typeof b?b:1};var d="transparent";a.Color.prototype={type:"Color",eval:function(){return this},luma:function(){return.2126*this.rgb[0]/255+.7152*this.rgb[1]/255+.0722*this.rgb[2]/255},genCSS:function(a,b){b.add(this.toCSS(a))},toCSS:function(b,e){var f=b&&b.compress&&!e,g=a.fround(b,this.alpha);if(1>g)return 0===g&&this.isTransparentKeyword?d:"rgba("+this.rgb.map(function(a){return c(Math.round(a),255)}).concat(c(g,1)).join(","+(f?"":" "))+")";var h=this.toRGB();if(f){var i=h.split("");i[1]===i[2]&&i[3]===i[4]&&i[5]===i[6]&&(h="#"+i[1]+i[3]+i[5])}return h},operate:function(b,c,d){for(var e=[],f=this.alpha*(1-d.alpha)+d.alpha,g=0;3>g;g++)e[g]=a.operate(b,c,this.rgb[g],d.rgb[g]);return new a.Color(e,f)},toRGB:function(){return b(this.rgb)},toHSL:function(){var a,b,c=this.rgb[0]/255,d=this.rgb[1]/255,e=this.rgb[2]/255,f=this.alpha,g=Math.max(c,d,e),h=Math.min(c,d,e),i=(g+h)/2,j=g-h;if(g===h)a=b=0;else{switch(b=i>.5?j/(2-g-h):j/(g+h),g){case c:a=(d-e)/j+(e>d?6:0);break;case d:a=(e-c)/j+2;break;case e:a=(c-d)/j+4}a/=6}return{h:360*a,s:b,l:i,a:f}},toHSV:function(){var a,b,c=this.rgb[0]/255,d=this.rgb[1]/255,e=this.rgb[2]/255,f=this.alpha,g=Math.max(c,d,e),h=Math.min(c,d,e),i=g,j=g-h;if(b=0===g?0:j/g,g===h)a=0;else{switch(g){case c:a=(d-e)/j+(e>d?6:0);break;case d:a=(e-c)/j+2;break;case e:a=(c-d)/j+4}a/=6}return{h:360*a,s:b,v:i,a:f}},toARGB:function(){return b([255*this.alpha].concat(this.rgb))},compare:function(a){return a.rgb?a.rgb[0]===this.rgb[0]&&a.rgb[1]===this.rgb[1]&&a.rgb[2]===this.rgb[2]&&a.alpha===this.alpha?0:-1:-1}},a.Color.fromKeyword=function(b){if(b=b.toLowerCase(),a.colors.hasOwnProperty(b))return new a.Color(a.colors[b].slice(1));if(b===d){var c=new a.Color([0,0,0],0);return c.isTransparentKeyword=!0,c}}}(c("../tree")),function(a){a.Comment=function(a,b,c,d){this.value=a,this.silent=!!b,this.currentFileInfo=d},a.Comment.prototype={type:"Comment",genCSS:function(b,c){this.debugInfo&&c.add(a.debugInfo(b,this),this.currentFileInfo,this.index),c.add(this.value.trim())},toCSS:a.toCSS,isSilent:function(a){var b=this.currentFileInfo&&this.currentFileInfo.reference&&!this.isReferenced,c=a.compress&&!this.value.match(/^\/\*!/);return this.silent||b||c},eval:function(){return this},markReferenced:function(){this.isReferenced=!0}}}(c("../tree")),function(a){a.Condition=function(a,b,c,d,e){this.op=a.trim(),this.lvalue=b,this.rvalue=c,this.index=d,this.negate=e},a.Condition.prototype={type:"Condition",accept:function(a){this.lvalue=a.visit(this.lvalue),this.rvalue=a.visit(this.rvalue)},eval:function(a){var b,c=this.lvalue.eval(a),d=this.rvalue.eval(a),e=this.index;return b=function(a){switch(a){case"and":return c&&d;case"or":return c||d;default:if(c.compare)b=c.compare(d);else{if(!d.compare)throw{type:"Type",message:"Unable to perform comparison",index:e};b=d.compare(c)}switch(b){case-1:return"<"===a||"=<"===a||"<="===a;case 0:return"="===a||">="===a||"=<"===a||"<="===a;case 1:return">"===a||">="===a}}}(this.op),this.negate?!b:b}}}(c("../tree")),function(a){a.Dimension=function(c,d){this.value=parseFloat(c),this.unit=d&&d instanceof a.Unit?d:new a.Unit(d?[d]:b)},a.Dimension.prototype={type:"Dimension",accept:function(a){this.unit=a.visit(this.unit)},eval:function(){return this},toColor:function(){return new a.Color([this.value,this.value,this.value])},genCSS:function(b,c){if(b&&b.strictUnits&&!this.unit.isSingular())throw new Error("Multiple units in dimension. Correct the units or use the unit function. Bad unit: "+this.unit.toString());var d=a.fround(b,this.value),e=String(d);if(0!==d&&1e-6>d&&d>-1e-6&&(e=d.toFixed(20).replace(/0+$/,"")),b&&b.compress){if(0===d&&this.unit.isLength())return c.add(e),void 0;d>0&&1>d&&(e=e.substr(1))}c.add(e),this.unit.genCSS(b,c)},toCSS:a.toCSS,operate:function(b,c,d){var e=a.operate(b,c,this.value,d.value),f=this.unit.clone();if("+"===c||"-"===c)if(0===f.numerator.length&&0===f.denominator.length)f.numerator=d.unit.numerator.slice(0),f.denominator=d.unit.denominator.slice(0);else if(0===d.unit.numerator.length&&0===f.denominator.length);else{if(d=d.convertTo(this.unit.usedUnits()),b.strictUnits&&d.unit.toString()!==f.toString())throw new Error("Incompatible units. Change the units or use the unit function. Bad units: '"+f.toString()+"' and '"+d.unit.toString()+"'.");e=a.operate(b,c,this.value,d.value)}else"*"===c?(f.numerator=f.numerator.concat(d.unit.numerator).sort(),f.denominator=f.denominator.concat(d.unit.denominator).sort(),f.cancel()):"/"===c&&(f.numerator=f.numerator.concat(d.unit.denominator).sort(),f.denominator=f.denominator.concat(d.unit.numerator).sort(),f.cancel());return new a.Dimension(e,f)},compare:function(b){if(b instanceof a.Dimension){var c=this.unify(),d=b.unify(),e=c.value,f=d.value;return f>e?-1:e>f?1:d.unit.isEmpty()||0===c.unit.compare(d.unit)?0:-1}return-1},unify:function(){return this.convertTo({length:"m",duration:"s",angle:"rad"})},convertTo:function(b){var c,d,e,f,g,h=this.value,i=this.unit.clone(),j={};if("string"==typeof b){for(c in a.UnitConversions)a.UnitConversions[c].hasOwnProperty(b)&&(j={},j[c]=b);b=j}g=function(a,b){return e.hasOwnProperty(a)?(b?h/=e[a]/e[f]:h*=e[a]/e[f],f):a};for(d in b)b.hasOwnProperty(d)&&(f=b[d],e=a.UnitConversions[d],i.map(g));return i.cancel(),new a.Dimension(h,i)}},a.UnitConversions={length:{m:1,cm:.01,mm:.001,"in":.0254,pt:.0254/72,pc:.0254/72*12},duration:{s:1,ms:.001},angle:{rad:1/(2*Math.PI),deg:1/360,grad:.0025,turn:1}},a.Unit=function(a,b,c){this.numerator=a?a.slice(0).sort():[],this.denominator=b?b.slice(0).sort():[],this.backupUnit=c},a.Unit.prototype={type:"Unit",clone:function(){return new a.Unit(this.numerator.slice(0),this.denominator.slice(0),this.backupUnit)},genCSS:function(a,b){this.numerator.length>=1?b.add(this.numerator[0]):this.denominator.length>=1?b.add(this.denominator[0]):a&&a.strictUnits||!this.backupUnit||b.add(this.backupUnit)},toCSS:a.toCSS,toString:function(){var a,b=this.numerator.join("*");for(a=0;a0)for(b=0;e>b;b++)this.numerator.push(a);else if(0>e)for(b=0;-e>b;b++)this.denominator.push(a)}0===this.numerator.length&&0===this.denominator.length&&c&&(this.backupUnit=c),this.numerator.sort(),this.denominator.sort()}}}(c("../tree")),function(a){a.Directive=function(b,c,d,e){this.name=b,Array.isArray(c)?(this.rules=[new a.Ruleset(null,c)],this.rules[0].allowImports=!0):this.value=c,this.index=d,this.currentFileInfo=e},a.Directive.prototype={type:"Directive",accept:function(a){this.rules&&(this.rules=a.visitArray(this.rules)),this.value&&(this.value=a.visit(this.value))},genCSS:function(b,c){c.add(this.name,this.currentFileInfo,this.index),this.rules?a.outputRuleset(b,c,this.rules):(c.add(" "),this.value.genCSS(b,c),c.add(";"))},toCSS:a.toCSS,eval:function(b){var c=this;return this.rules&&(b.frames.unshift(this),c=new a.Directive(this.name,null,this.index,this.currentFileInfo),c.rules=[this.rules[0].eval(b)],c.rules[0].root=!0,b.frames.shift()),c},variable:function(b){return a.Ruleset.prototype.variable.call(this.rules[0],b)},find:function(){return a.Ruleset.prototype.find.apply(this.rules[0],arguments)},rulesets:function(){return a.Ruleset.prototype.rulesets.apply(this.rules[0])},markReferenced:function(){var a,b;if(this.isReferenced=!0,this.rules)for(b=this.rules[0].rules,a=0;a":" > ","|":"|","^":" ^ ","^^":" ^^ "},_outputMapCompressed:{"":""," ":" ",":":" :","+":"+","~":"~",">":">","|":"|","^":"^","^^":"^^"},genCSS:function(a,b){b.add((a.compress?this._outputMapCompressed:this._outputMap)[this.value])},toCSS:a.toCSS}}(c("../tree")),function(a){a.Expression=function(a){this.value=a},a.Expression.prototype={type:"Expression",accept:function(a){this.value&&(this.value=a.visitArray(this.value))},eval:function(b){var c,d=this.parens&&!this.parensInOp,e=!1;return d&&b.inParenthesis(),this.value.length>1?c=new a.Expression(this.value.map(function(a){return a.eval(b)})):1===this.value.length?(this.value[0].parens&&!this.value[0].parensInOp&&(e=!0),c=this.value[0].eval(b)):c=this,d&&b.outOfParenthesis(),this.parens&&this.parensInOp&&!b.isMathOn()&&!e&&(c=new a.Paren(c)),c},genCSS:function(a,b){for(var c=0;c0&&c.length&&""===c[0].combinator.value&&(c[0].combinator.value=" "),d=d.concat(a[b].elements);this.selfSelectors=[{elements:d}]}}}(c("../tree")),function(a){a.Import=function(a,c,d,e,f){if(this.options=d,this.index=e,this.path=a,this.features=c,this.currentFileInfo=f,this.options.less!==b||this.options.inline)this.css=!this.options.less||this.options.inline;else{var g=this.getPath();g&&/css([\?;].*)?$/.test(g)&&(this.css=!0)}},a.Import.prototype={type:"Import",accept:function(a){this.features&&(this.features=a.visit(this.features)),this.path=a.visit(this.path),!this.options.inline&&this.root&&(this.root=a.visit(this.root))},genCSS:function(a,b){this.css&&(b.add("@import ",this.currentFileInfo,this.index),this.path.genCSS(a,b),this.features&&(b.add(" "),this.features.genCSS(a,b)),b.add(";"))},toCSS:a.toCSS,getPath:function(){if(this.path instanceof a.Quoted){var c=this.path.value;return this.css!==b||/(\.[a-z]*$)|([\?;].*)$/.test(c)?c:c+".less"}return this.path instanceof a.URL?this.path.value.value:null},evalForImport:function(b){return new a.Import(this.path.eval(b),this.features,this.options,this.index,this.currentFileInfo)},evalPath:function(b){var c=this.path.eval(b),d=this.currentFileInfo&&this.currentFileInfo.rootpath;if(!(c instanceof a.URL)){if(d){var e=c.value;e&&b.isPathRelative(e)&&(c.value=d+e)}c.value=b.normalizePath(c.value)}return c},eval:function(b){var c,d=this.features&&this.features.eval(b);if(this.skip)return[];if(this.options.inline){var e=new a.Anonymous(this.root,0,{filename:this.importedFilename},!0);return this.features?new a.Media([e],this.features.value):[e]}if(this.css){var f=new a.Import(this.evalPath(b),d,this.options,this.index);if(!f.css&&this.error)throw this.error;return f}return c=new a.Ruleset(null,this.root.rules.slice(0)),c.evalImports(b),this.features?new a.Media(c.rules,this.features.value):c.rules}}}(c("../tree")),function(a){a.JavaScript=function(a,b,c){this.escaped=c,this.expression=a,this.index=b},a.JavaScript.prototype={type:"JavaScript",eval:function(b){var c,d=this,e={},f=this.expression.replace(/@\{([\w-]+)\}/g,function(c,e){return a.jsify(new a.Variable("@"+e,d.index).eval(b))});try{f=new Function("return ("+f+")")}catch(g){throw{message:"JavaScript evaluation error: "+g.message+" from `"+f+"`",index:this.index}}var h=b.frames[0].variables();for(var i in h)h.hasOwnProperty(i)&&(e[i.slice(1)]={value:h[i].value,toJS:function(){return this.value.eval(b).toCSS()}});try{c=f.call(e)}catch(g){throw{message:"JavaScript evaluation error: '"+g.name+": "+g.message.replace(/["]/g,"'")+"'",index:this.index}}return"number"==typeof c?new a.Dimension(c):"string"==typeof c?new a.Quoted('"'+c+'"',c,this.escaped,this.index):Array.isArray(c)?new a.Anonymous(c.join(", ")):new a.Anonymous(c)}}}(c("../tree")),function(a){a.Keyword=function(a){this.value=a},a.Keyword.prototype={type:"Keyword",eval:function(){return this},genCSS:function(a,b){b.add(this.value)},toCSS:a.toCSS,compare:function(b){return b instanceof a.Keyword?b.value===this.value?0:1:-1}},a.True=new a.Keyword("true"),a.False=new a.Keyword("false")}(c("../tree")),function(a){a.Media=function(b,c,d,e){this.index=d,this.currentFileInfo=e;var f=this.emptySelectors();this.features=new a.Value(c),this.rules=[new a.Ruleset(f,b)],this.rules[0].allowImports=!0},a.Media.prototype={type:"Media",accept:function(a){this.features&&(this.features=a.visit(this.features)),this.rules&&(this.rules=a.visitArray(this.rules))},genCSS:function(b,c){c.add("@media ",this.currentFileInfo,this.index),this.features.genCSS(b,c),a.outputRuleset(b,c,this.rules)},toCSS:a.toCSS,eval:function(b){b.mediaBlocks||(b.mediaBlocks=[],b.mediaPath=[]);var c=new a.Media(null,[],this.index,this.currentFileInfo);this.debugInfo&&(this.rules[0].debugInfo=this.debugInfo,c.debugInfo=this.debugInfo);var d=!1;b.strictMath||(d=!0,b.strictMath=!0);try{c.features=this.features.eval(b)}finally{d&&(b.strictMath=!1)}return b.mediaPath.push(c),b.mediaBlocks.push(c),b.frames.unshift(this.rules[0]),c.rules=[this.rules[0].eval(b)],b.frames.shift(),b.mediaPath.pop(),0===b.mediaPath.length?c.evalTop(b):c.evalNested(b)},variable:function(b){return a.Ruleset.prototype.variable.call(this.rules[0],b)},find:function(){return a.Ruleset.prototype.find.apply(this.rules[0],arguments)},rulesets:function(){return a.Ruleset.prototype.rulesets.apply(this.rules[0])},emptySelectors:function(){var b=new a.Element("","&",this.index,this.currentFileInfo),c=[new a.Selector([b],null,null,this.index,this.currentFileInfo)];return c[0].mediaEmpty=!0,c},markReferenced:function(){var a,b=this.rules[0].rules;for(this.isReferenced=!0,a=0;a1){var d=this.emptySelectors();c=new a.Ruleset(d,b.mediaBlocks),c.multiMedia=!0}return delete b.mediaBlocks,delete b.mediaPath,c},evalNested:function(b){var c,d,e=b.mediaPath.concat([this]);for(c=0;c0;c--)b.splice(c,0,new a.Anonymous("and"));return new a.Expression(b)})),new a.Ruleset([],[])},permute:function(a){if(0===a.length)return[];if(1===a.length)return a[0];for(var b=[],c=this.permute(a.slice(1)),d=0;d0){for(j=!0,g=0;gh;h++)s.value(h),r[h]=d.matchCondition(e,b);(r[0]||r[1])&&(r[0]!=r[1]&&(l.group=r[1]?u:v),q.push(l))}else q.push(l);p=!0}}for(s.reset(),n=[0,0,0],g=0;g0)m=v;else if(m=u,n[u]+n[v]>1)throw{type:"Runtime",message:"Ambiguous use of `default()` found when matching for `"+this.format(e)+"`",index:this.index,filename:this.currentFileInfo.filename};for(g=0;gthis.params.length)return!1}c=Math.min(d,this.arity);for(var e=0;c>e;e++)if(!this.params[e].name&&!this.params[e].variadic&&a[e].value.eval(b).toCSS()!=this.params[e].value.eval(b).toCSS())return!1;return!0}}}(c("../tree")),function(a){a.Negative=function(a){this.value=a},a.Negative.prototype={type:"Negative",accept:function(a){this.value=a.visit(this.value)},genCSS:function(a,b){b.add("-"),this.value.genCSS(a,b)},toCSS:a.toCSS,eval:function(b){return b.isMathOn()?new a.Operation("*",[new a.Dimension(-1),this.value]).eval(b):new a.Negative(this.value.eval(b))}}}(c("../tree")),function(a){a.Operation=function(a,b,c){this.op=a.trim(),this.operands=b,this.isSpaced=c},a.Operation.prototype={type:"Operation",accept:function(a){this.operands=a.visit(this.operands)},eval:function(b){var c=this.operands[0].eval(b),d=this.operands[1].eval(b);if(b.isMathOn()){if(c instanceof a.Dimension&&d instanceof a.Color&&(c=c.toColor()),d instanceof a.Dimension&&c instanceof a.Color&&(d=d.toColor()),!c.operate)throw{type:"Operation",message:"Operation on an invalid type"};return c.operate(b,this.op,d)}return new a.Operation(this.op,[c,d],this.isSpaced)},genCSS:function(a,b){this.operands[0].genCSS(a,b),this.isSpaced&&b.add(" "),b.add(this.op),this.isSpaced&&b.add(" "),this.operands[1].genCSS(a,b)},toCSS:a.toCSS},a.operate=function(a,b,c,d){switch(b){case"+":return c+d;case"-":return c-d;case"*":return c*d;case"/":return c/d}}}(c("../tree")),function(a){a.Paren=function(a){this.value=a},a.Paren.prototype={type:"Paren",accept:function(a){this.value=a.visit(this.value)},genCSS:function(a,b){b.add("("),this.value.genCSS(a,b),b.add(")")},toCSS:a.toCSS,eval:function(b){return new a.Paren(this.value.eval(b))}}}(c("../tree")),function(a){a.Quoted=function(a,b,c,d,e){this.escaped=c,this.value=b||"",this.quote=a.charAt(0),this.index=d,this.currentFileInfo=e},a.Quoted.prototype={type:"Quoted",genCSS:function(a,b){this.escaped||b.add(this.quote,this.currentFileInfo,this.index),b.add(this.value),this.escaped||b.add(this.quote)},toCSS:a.toCSS,eval:function(b){var c=this,d=this.value.replace(/`([^`]+)`/g,function(d,e){return new a.JavaScript(e,c.index,!0).eval(b).value}).replace(/@\{([\w-]+)\}/g,function(d,e){var f=new a.Variable("@"+e,c.index,c.currentFileInfo).eval(b,!0);return f instanceof a.Quoted?f.value:f.toCSS()});return new a.Quoted(this.quote+d+this.quote,d,this.escaped,this.index,this.currentFileInfo)},compare:function(a){if(!a.toCSS)return-1;var b=this.toCSS(),c=a.toCSS();return b===c?0:c>b?-1:1}}}(c("../tree")),function(a){function b(a,b){var c,d="",e=b.length,f={add:function(a){d+=a}};for(c=0;e>c;c++)b[c].eval(a).genCSS(a,f);return d}a.Rule=function(b,c,d,e,f,g,h){this.name=b,this.value=c instanceof a.Value?c:new a.Value([c]),this.important=d?" "+d.trim():"",this.merge=e,this.index=f,this.currentFileInfo=g,this.inline=h||!1,this.variable=b.charAt&&"@"===b.charAt(0)},a.Rule.prototype={type:"Rule",accept:function(a){this.value=a.visit(this.value)},genCSS:function(a,b){b.add(this.name+(a.compress?":":": "),this.currentFileInfo,this.index);try{this.value.genCSS(a,b)}catch(c){throw c.index=this.index,c.filename=this.currentFileInfo.filename,c}b.add(this.important+(this.inline||a.lastRule&&a.compress?"":";"),this.currentFileInfo,this.index)},toCSS:a.toCSS,eval:function(c){var d=!1,e=this.name;"string"!=typeof e&&(e=1===e.length&&e[0]instanceof a.Keyword?e[0].value:b(c,e)),"font"!==e||c.strictMath||(d=!0,c.strictMath=!0);try{return new a.Rule(e,this.value.eval(c),this.important,this.merge,this.index,this.currentFileInfo,this.inline)}catch(f){throw f.index=f.index||this.index,f}finally{d&&(c.strictMath=!1)}},makeImportant:function(){return new a.Rule(this.name,this.value,"!important",this.merge,this.index,this.currentFileInfo,this.inline)}}}(c("../tree")),function(a){a.Ruleset=function(a,b,c){this.selectors=a,this.rules=b,this._lookups={},this.strictImports=c},a.Ruleset.prototype={type:"Ruleset",accept:function(a){this.paths?a.visitArray(this.paths,!0):this.selectors&&(this.selectors=a.visitArray(this.selectors)),this.rules&&this.rules.length&&(this.rules=a.visitArray(this.rules))},eval:function(b){var c,d,e,f=this.selectors,g=a.defaultFunc;if(f&&(d=f.length)){for(c=[],g.error({type:"Syntax",message:"it is currently only allowed in parametric mixin guards,"}),e=0;d>e;e++)c.push(f[e].eval(b));g.reset()}var h,i,j=this.rules?this.rules.slice(0):null,k=new a.Ruleset(c,j,this.strictImports);k.originalRuleset=this,k.root=this.root,k.firstRoot=this.firstRoot,k.allowImports=this.allowImports,this.debugInfo&&(k.debugInfo=this.debugInfo);var l=b.frames;l.unshift(k);var m=b.selectors;m||(b.selectors=m=[]),m.unshift(this.selectors),(k.root||k.allowImports||!k.strictImports)&&k.evalImports(b);var n=k.rules,o=n?n.length:0;for(e=0;o>e;e++)n[e]instanceof a.mixin.Definition&&(n[e].frames=l.slice(0));var p=b.mediaBlocks&&b.mediaBlocks.length||0;for(e=0;o>e;e++)n[e]instanceof a.mixin.Call&&(j=n[e].eval(b).filter(function(b){return b instanceof a.Rule&&b.variable?!k.variable(b.name):!0}),n.splice.apply(n,[e,1].concat(j)),o+=j.length-1,e+=j.length-1,k.resetCache());for(e=0;eb;b++)c=g[b],(c instanceof d||c instanceof e)&&f.push(c);return f},prependRule:function(a){var b=this.rules;b?b.unshift(a):this.rules=[a]},find:function(b,c){c=c||this;var d,e=[],f=b.toCSS();return f in this._lookups?this._lookups[f]:(this.rulesets().forEach(function(f){if(f!==c)for(var g=0;gd?Array.prototype.push.apply(e,f.find(new a.Selector(b.elements.slice(d)),c)):e.push(f);break}}),this._lookups[f]=e,e)},genCSS:function(b,c){var d,e,f,g,h,i,j=[],k=[];b.tabLevel=b.tabLevel||0,this.root||b.tabLevel++;var l,m=b.compress?"":Array(b.tabLevel+1).join(" "),n=b.compress?"":Array(b.tabLevel).join(" ");for(d=0;dd;d++)if(i=p[d],o=i.length)for(d>0&&c.add(l),b.firstSelector=!0,i[0].genCSS(b,c),b.firstSelector=!1,e=1;o>e;e++)i[e].genCSS(b,c);c.add((b.compress?"{":" {\n")+m)}for(d=0;dd;d++)l&&c.add(l),k[d].genCSS(b,c);c.isEmpty()||b.compress||!this.firstRoot||c.add("\n")},toCSS:a.toCSS,markReferenced:function(){for(var a=0;a0&&this.mergeElementsOnToSelectors(r,i),f=0;f0&&(k[0].elements=k[0].elements.slice(0),k[0].elements.push(new a.Element(j.combinator,"",j.index,j.currentFileInfo))),s.push(k);else for(g=0;g0?(m=k.slice(0),q=m.pop(),o=d.createDerived(q.elements.slice(0)),p=!1):o=d.createDerived([]),l.length>1&&(n=n.concat(l.slice(1))),l.length>0&&(p=!1,o.elements.push(new a.Element(j.combinator,l[0].elements[0].value,j.index,j.currentFileInfo)),o.elements=o.elements.concat(l[0].elements.slice(1))),p||m.push(o),m=m.concat(n),s.push(m);i=s,r=[]}for(r.length>0&&this.mergeElementsOnToSelectors(r,i),e=0;e0&&b.push(i[e])}else if(c.length>0)for(e=0;e0?e[e.length-1]=e[e.length-1].createDerived(e[e.length-1].elements.concat(b)):e.push(new a.Selector(b))}}}(c("../tree")),function(a){a.Selector=function(a,b,c,d,e,f){this.elements=a,this.extendList=b,this.condition=c,this.currentFileInfo=e||{},this.isReferenced=f,c||(this.evaldCondition=!0)},a.Selector.prototype={type:"Selector",accept:function(a){this.elements&&(this.elements=a.visitArray(this.elements)),this.extendList&&(this.extendList=a.visitArray(this.extendList)),this.condition&&(this.condition=a.visit(this.condition))},createDerived:function(b,c,d){d=null!=d?d:this.evaldCondition;var e=new a.Selector(b,c||this.extendList,null,this.index,this.currentFileInfo,this.isReferenced);return e.evaldCondition=d,e.mediaEmpty=this.mediaEmpty,e},match:function(a){var b,c,d=this.elements,e=d.length;if(a.CacheElements(),b=a._elements.length,0===b||b>e)return 0;for(c=0;b>c;c++)if(d[c].value!==a._elements[c])return 0;return b},CacheElements:function(){var a,b,c,d="";if(!this._elements){for(a=this.elements.length,c=0;a>c;c++)if(b=this.elements[c],d+=b.combinator.value,b.value.value){if("string"!=typeof b.value.value){d="";break}d+=b.value.value}else d+=b.value;this._elements=d.match(/[,&#\.\w-]([\w-]|(\\.))*/g),this._elements?"&"===this._elements[0]&&this._elements.shift():this._elements=[]}},isJustParentSelector:function(){return!this.mediaEmpty&&1===this.elements.length&&"&"===this.elements[0].value&&(" "===this.elements[0].combinator.value||""===this.elements[0].combinator.value)},eval:function(a){var b=this.condition&&this.condition.eval(a),c=this.elements,d=this.extendList;return c=c&&c.map(function(b){return b.eval(a)}),d=d&&d.map(function(b){return b.eval(a)}),this.createDerived(c,d,b)},genCSS:function(a,b){var c,d;if(a&&a.firstSelector||""!==this.elements[0].combinator.value||b.add(" ",this.currentFileInfo,this.index),!this._css)for(c=0;cc;c++)this.visit(a[c]);return a}var e=[];for(c=0;d>c;c++){var f=this.visit(a[c]);f.splice?f.length&&this.flatten(f,e):e.push(f)}return e},flatten:function(a,b){b||(b=[]);var c,d,e,f,g,h;for(d=0,c=a.length;c>d;d++)if(e=a[d],e.splice)for(g=0,f=e.length;f>g;g++)h=e[g],h.splice?h.length&&this.flatten(h,b):b.push(h);else b.push(e);return b}}}(c("./tree")),function(a){a.importVisitor=function(b,c,d){this._visitor=new a.visitor(this),this._importer=b,this._finish=c,this.env=d||new a.evalEnv,this.importCount=0},a.importVisitor.prototype={isReplacing:!0,run:function(a){var b;try{this._visitor.visit(a)}catch(c){b=c}this.isFinished=!0,0===this.importCount&&this._finish(b)},visitImport:function(b,c){var d,e=this,f=b.options.inline;if(!b.css||f){try{d=b.evalForImport(this.env)}catch(g){g.filename||(g.index=b.index,g.filename=b.currentFileInfo.filename),b.css=!0,b.error=g}if(d&&(!d.css||f)){b=d,this.importCount++;var h=new a.evalEnv(this.env,this.env.frames.slice(0));b.options.multiple&&(h.importMultiple=!0),this._importer.push(b.getPath(),b.currentFileInfo,b.options,function(c,d,g,i){c&&!c.filename&&(c.index=b.index,c.filename=b.currentFileInfo.filename),g&&!h.importMultiple&&(b.skip=g);var j=function(a){e.importCount--,0===e.importCount&&e.isFinished&&e._finish(a)};return!d||(b.root=d,b.importedFilename=i,f||b.skip)?(j(),void 0):(new a.importVisitor(e._importer,j,h).run(d),void 0)})}}return c.visitDeeper=!1,b},visitRule:function(a,b){return b.visitDeeper=!1,a},visitDirective:function(a){return this.env.frames.unshift(a),a},visitDirectiveOut:function(){this.env.frames.shift()},visitMixinDefinition:function(a){return this.env.frames.unshift(a),a},visitMixinDefinitionOut:function(){this.env.frames.shift()},visitRuleset:function(a){return this.env.frames.unshift(a),a},visitRulesetOut:function(){this.env.frames.shift()},visitMedia:function(a){return this.env.frames.unshift(a.ruleset),a},visitMediaOut:function(){this.env.frames.shift()}}}(c("./tree")),function(a){a.joinSelectorVisitor=function(){this.contexts=[[]],this._visitor=new a.visitor(this)},a.joinSelectorVisitor.prototype={run:function(a){return this._visitor.visit(a)},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){var b,c=this.contexts[this.contexts.length-1],d=[];this.contexts.push(d),a.root||(b=a.selectors,b&&(b=b.filter(function(a){return a.getIsOutput()}),a.selectors=b.length?b:b=null,b&&a.joinSelectors(d,c,b)),b||(a.rules=null),a.paths=d)},visitRulesetOut:function(){this.contexts.length=this.contexts.length-1},visitMedia:function(a){var b=this.contexts[this.contexts.length-1];a.rules[0].root=0===b.length||b[0].multiMedia}}}(c("./tree")),function(a){a.toCSSVisitor=function(b){this._visitor=new a.visitor(this),this._env=b},a.toCSSVisitor.prototype={isReplacing:!0,run:function(a){return this._visitor.visit(a)},visitRule:function(a){return a.variable?[]:a},visitMixinDefinition:function(){return[]},visitExtend:function(){return[]},visitComment:function(a){return a.isSilent(this._env)?[]:a},visitMedia:function(a,b){return a.accept(this._visitor),b.visitDeeper=!1,a.rules.length?a:[]},visitDirective:function(b){if(b.currentFileInfo.reference&&!b.isReferenced)return[];if("@charset"===b.name){if(this.charset){if(b.debugInfo){var c=new a.Comment("/* "+b.toCSS(this._env).replace(/\n/g,"")+" */\n");return c.debugInfo=b.debugInfo,this._visitor.visit(c)}return[]}this.charset=!0}return b},checkPropertiesInRoot:function(b){for(var c,d=0;d0)&&e.splice(0,0,b);else{b.paths&&(b.paths=b.paths.filter(function(b){var c;for(" "===b[0].elements[0].combinator.value&&(b[0].elements[0].combinator=new a.Combinator("")),c=0;ch;)d=f[h],d&&d.rules?(e.push(this._visitor.visit(d)),f.splice(h,1),g--):h++;g>0?b.accept(this._visitor):b.rules=null,c.visitDeeper=!1,f=b.rules,f&&(this._mergeRules(f),f=b.rules),f&&(this._removeDuplicateRules(f),f=b.rules),f&&f.length>0&&b.paths.length>0&&e.splice(0,0,b)}return 1===e.length?e[0]:e},_removeDuplicateRules:function(b){if(b){var c,d,e,f={};for(e=b.length-1;e>=0;e--)if(d=b[e],d instanceof a.Rule)if(f[d.name]){c=f[d.name],c instanceof a.Rule&&(c=f[d.name]=[f[d.name].toCSS(this._env)]);var g=d.toCSS(this._env);-1!==c.indexOf(g)?b.splice(e,1):c.push(g)}else f[d.name]=d}},_mergeRules:function(b){if(b){for(var c,d,e,f={},g=0;g1&&(d=c[0],d.value=new a.Value(c.map(function(a){return a.value})))})}}}}(c("./tree")),function(a){a.extendFinderVisitor=function(){this._visitor=new a.visitor(this),this.contexts=[],this.allExtendsStack=[[]]},a.extendFinderVisitor.prototype={run:function(a){return a=this._visitor.visit(a),a.allExtends=this.allExtendsStack[0],a},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitRuleset:function(b){if(!b.root){var c,d,e,f,g=[],h=b.rules,i=h?h.length:0;for(c=0;i>c;c++)b.rules[c]instanceof a.Extend&&(g.push(h[c]),b.extendOnEveryPath=!0);var j=b.paths;for(c=0;c=0||(i=[k.selfSelectors[0]],g=n.findMatch(j,i),g.length&&j.selfSelectors.forEach(function(b){h=n.extendSelector(g,i,b),l=new a.Extend(k.selector,k.option,0),l.selfSelectors=h,h[h.length-1].extendList=[l],m.push(l),l.ruleset=k.ruleset,l.parent_ids=l.parent_ids.concat(k.parent_ids,j.parent_ids),k.firstExtendOnThisSelectorPath&&(l.firstExtendOnThisSelectorPath=!0,k.ruleset.paths.push(h))}));if(m.length){if(this.extendChainCount++,d>100){var o="{unable to calculate}",p="{unable to calculate}";try{o=m[0].selfSelectors[0].toCSS(),p=m[0].selector.toCSS()}catch(q){}throw{message:"extend circular reference detected. One of the circular extends is currently:"+o+":extend("+p+")"}}return m.concat(n.doExtendChaining(m,c,d+1))}return m},visitRule:function(a,b){b.visitDeeper=!1},visitMixinDefinition:function(a,b){b.visitDeeper=!1},visitSelector:function(a,b){b.visitDeeper=!1},visitRuleset:function(a){if(!a.root){var b,c,d,e,f=this.allExtendsStack[this.allExtendsStack.length-1],g=[],h=this;for(d=0;d0&&k[i.matched].combinator.value!==g?i=null:i.matched++,i&&(i.finished=i.matched===k.length,i.finished&&!a.allowAfter&&(e+1j&&k>0&&(l[l.length-1].elements=l[l.length-1].elements.concat(c[j].elements.slice(k)),k=0,j++),i=f.elements.slice(k,h.index).concat([g]).concat(d.elements.slice(1)),j===h.pathIndex&&e>0?l[l.length-1].elements=l[l.length-1].elements.concat(i):(l=l.concat(c.slice(j,h.pathIndex)),l.push(new a.Selector(i))),j=h.endPathIndex,k=h.endPathElementIndex,k>=c[j].elements.length&&(k=0,j++);return j0&&(l[l.length-1].elements=l[l.length-1].elements.concat(c[j].elements.slice(k)),j++),l=l.concat(c.slice(j,c.length))},visitRulesetOut:function(){},visitMedia:function(a){var b=a.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length-1]);b=b.concat(this.doExtendChaining(b,a.allExtends)),this.allExtendsStack.push(b)},visitMediaOut:function(){this.allExtendsStack.length=this.allExtendsStack.length-1},visitDirective:function(a){var b=a.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length-1]);b=b.concat(this.doExtendChaining(b,a.allExtends)),this.allExtendsStack.push(b)},visitDirectiveOut:function(){this.allExtendsStack.length=this.allExtendsStack.length-1}}}(c("./tree")),function(a){a.sourceMapOutput=function(a){this._css=[],this._rootNode=a.rootNode,this._writeSourceMap=a.writeSourceMap,this._contentsMap=a.contentsMap,this._contentsIgnoredCharsMap=a.contentsIgnoredCharsMap,this._sourceMapFilename=a.sourceMapFilename,this._outputFilename=a.outputFilename,this._sourceMapURL=a.sourceMapURL,a.sourceMapBasepath&&(this._sourceMapBasepath=a.sourceMapBasepath.replace(/\\/g,"/")),this._sourceMapRootpath=a.sourceMapRootpath,this._outputSourceFiles=a.outputSourceFiles,this._sourceMapGeneratorConstructor=a.sourceMapGenerator||c("source-map").SourceMapGenerator,this._sourceMapRootpath&&"/"!==this._sourceMapRootpath.charAt(this._sourceMapRootpath.length-1)&&(this._sourceMapRootpath+="/"),this._lineNumber=0,this._column=0},a.sourceMapOutput.prototype.normalizeFilename=function(a){return a=a.replace(/\\/g,"/"),this._sourceMapBasepath&&0===a.indexOf(this._sourceMapBasepath)&&(a=a.substring(this._sourceMapBasepath.length),("\\"===a.charAt(0)||"/"===a.charAt(0))&&(a=a.substring(1))),(this._sourceMapRootpath||"")+a},a.sourceMapOutput.prototype.add=function(a,b,c,d){if(a){var e,f,g,h,i;if(b){var j=this._contentsMap[b.filename];this._contentsIgnoredCharsMap[b.filename]&&(c-=this._contentsIgnoredCharsMap[b.filename],0>c&&(c=0),j=j.slice(this._contentsIgnoredCharsMap[b.filename])),j=j.substring(0,c),f=j.split("\n"),h=f[f.length-1]}if(e=a.split("\n"),g=e[e.length-1],b)if(d)for(i=0;i0){var d,e=JSON.stringify(this._sourceMapGenerator.toJSON());this._sourceMapURL?d=this._sourceMapURL:this._sourceMapFilename&&(d=this.normalizeFilename(this._sourceMapFilename)),this._writeSourceMap?this._writeSourceMap(e):d="data:application/json,"+encodeURIComponent(e),d&&this._css.push("/*# sourceMappingURL="+d+" */") +}return this._css.join("")}}(c("./tree"));var x=/^(file|chrome(-extension)?|resource|qrc|app):/.test(location.protocol);v.env=v.env||("127.0.0.1"==location.hostname||"0.0.0.0"==location.hostname||"localhost"==location.hostname||location.port&&location.port.length>0||x?"development":"production");var y={info:2,errors:1,none:0};if(v.logLevel="undefined"!=typeof v.logLevel?v.logLevel:y.info,v.async=v.async||!1,v.fileAsync=v.fileAsync||!1,v.poll=v.poll||(x?1e3:1500),v.functions)for(var z in v.functions)v.functions.hasOwnProperty(z)&&(v.tree.functions[z]=v.functions[z]);var A=/!dumpLineNumbers:(comments|mediaquery|all)/.exec(location.hash);A&&(v.dumpLineNumbers=A[1]);var B=/^text\/(x-)?less$/,C=null,D={};if(v.watch=function(){return v.watchMode||(v.env="development",u()),this.watchMode=!0,!0},v.unwatch=function(){return clearInterval(v.watchTimer),this.watchMode=!1,!1},/!watch/.test(location.hash)&&v.watch(),"development"!=v.env)try{C="undefined"==typeof a.localStorage?null:a.localStorage}catch(E){}var F=document.getElementsByTagName("link");v.sheets=[];for(var G=0;G>>0;while(e>>0;if(!d&&arguments.length==1)throw new TypeError;var e=0,f;if(arguments.length<2){do{if(e in b){f=b[e++];break}if(++e>=d)throw new TypeError}while(!0)}else f=arguments[1];for(;e0&&(a.splice(c-1,2),c-=2);else break;a=a.join("/")}return a}function h(a,d){return function(){return c.apply(null,b.call(arguments,0).concat([a,d]))}}function i(a){return function(b){return g(b,a)}}function j(b){return function(c){a[b]=c}}function k(b,c){var d,e,f=b.indexOf("!");return f!==-1?(d=g(b.slice(0,f),c),b=b.slice(f+1),e=a[d],e&&e.normalize?b=e.normalize(b,i(c)):b=g(b,c)):b=g(b,c),{f:d?d+"!"+b:b,n:b,p:e}}function l(b,c,d,e){var f=[],g,i,l,m,n,o;e||(e=b);if(typeof d=="function"){if(c)for(m=0;m=48&&a<=57}function t(a){return s(a)||r(a)}function u(a){return q.non_spacing_mark.test(a)||q.space_combining_mark.test(a)}function v(a){return q.connector_punctuation.test(a)}function w(a){return a=="$"||a=="_"||r(a)}function x(a){return w(a)||u(a)||s(a)||v(a)||a=="‌"||a=="‍"}function y(a){if(i.test(a))return parseInt(a.substr(2),16);if(j.test(a))return parseInt(a.substr(1),8);if(k.test(a))return parseFloat(a)}function z(a,b,c,d){this.message=a,this.line=b,this.col=c,this.pos=d,this.stack=(new Error).stack}function A(a,b,c,d){throw new z(a,b,c,d)}function B(a,b,c){return a.type==b&&(c==null||a.value==c)}function D(a){function c(){return b.text.charAt(b.pos)}function e(a,c){var d=b.text.charAt(b.pos++);if(a&&!d)throw C;return d=="\n"?(b.newline_before=b.newline_before||!c,++b.line,b.col=0):++b.col,d}function i(){return!b.peek()}function j(a,c){var d=b.text.indexOf(a,b.pos);if(c&&d==-1)throw C;return d}function k(){b.tokline=b.line,b.tokcol=b.col,b.tokpos=b.pos}function p(a,c,d){b.regex_allowed=a=="operator"&&!S(F,c)||a=="keyword"&&S(f,c)||a=="punc"&&S(n,c);var e={type:a,value:c,line:b.tokline,col:b.tokcol,pos:b.tokpos,nlb:b.newline_before};return d||(e.comments_before=b.comments_before,b.comments_before=[]),b.newline_before=!1,e}function q(){while(S(m,c()))e()}function r(a){var b="",d=c(),f=0;while(d&&a(d,f++))b+=e(),d=c();return b}function u(a){A(a,b.tokline,b.tokcol,b.tokpos)}function v(a){var b=!1,c=!1,d=!1,e=a==".",f=r(function(f,g){return f=="x"||f=="X"?d?!1:d=!0:!!d||f!="E"&&f!="e"?f=="-"?c||g==0&&!a?!0:!1:f=="+"?c:(c=!1,f=="."?!e&&!d?e=!0:!1:t(f)):b?!1:b=c=!0});a&&(f=a+f);var g=y(f);if(!isNaN(g))return p("num",g);u("Invalid syntax: "+f)}function z(a){var b=e(!0,a);switch(b){case"n":return"\n";case"r":return"\r";case"t":return"\t";case"b":return"\b";case"v":return" ";case"f":return"\f";case"0":return"\0";case"x":return String.fromCharCode(B(2));case"u":return String.fromCharCode(B(4));case"\n":return"";default:return b}}function B(a){var b=0;for(;a>0;--a){var c=parseInt(e(!0),16);isNaN(c)&&u("Invalid hex-character pattern in string"),b=b<<4|c}return b}function D(){return N("Unterminated string constant",function(){var a=e(),b="";for(;;){var c=e(!0);if(c=="\\"){var d=0,f=null;c=r(function(a){if(a>="0"&&a<="7"){if(!f)return f=a,++d;if(f<="3"&&d<=2)return++d;if(f>="4"&&d<=1)return++d}return!1}),d>0?c=String.fromCharCode(parseInt(c,8)):c=z(!0)}else if(c==a)break;b+=c}return p("string",b)})}function E(){e();var a=j("\n"),c;return a==-1?(c=b.text.substr(b.pos),b.pos=b.text.length):(c=b.text.substring(b.pos,a),b.pos=a),p("comment1",c,!0)}function G(){return e(),N("Unterminated multiline comment",function(){var a=j("*/",!0),c=b.text.substring(b.pos,a),d=p("comment2",c,!0);return b.pos=a+2,b.line+=c.split("\n").length-1,b.newline_before=c.indexOf("\n")>=0,/^@cc_on/i.test(c)&&(T("WARNING: at line "+b.line),T('*** Found "conditional comment": '+c),T("*** UglifyJS DISCARDS ALL COMMENTS. This means your code might no longer work properly in Internet Explorer.")),d})}function H(){var a=!1,b="",d;while((d=c())!=null)if(!a)if(d=="\\")a=!0,e();else if(x(d))b+=e();else break;else d!="u"&&u("Expecting UnicodeEscapeSequence -- uXXXX"),d=z(),x(d)||u("Unicode char: "+d.charCodeAt(0)+" is not valid in identifier"),b+=d,a=!1;return b}function I(a){return N("Unterminated regular expression",function(){var b=!1,c,d=!1;while(c=e(!0))if(b)a+="\\"+c,b=!1;else if(c=="[")d=!0,a+=c;else if(c=="]"&&d)d=!1,a+=c;else{if(c=="/"&&!d)break;c=="\\"?b=!0:a+=c}var f=H();return p("regexp",[a,f])})}function J(a){function b(a){if(!c())return a;var d=a+c();return S(l,d)?(e(),b(d)):a}return p("operator",b(a||e()))}function K(){e();var a=b.regex_allowed;switch(c()){case"/":return b.comments_before.push(E()),b.regex_allowed=a,O();case"*":return b.comments_before.push(G()),b.regex_allowed=a,O()}return b.regex_allowed?I(""):J("/")}function L(){return e(),s(c())?v("."):p("punc",".")}function M(){var a=H();return S(d,a)?S(l,a)?p("operator",a):S(g,a)?p("atom",a):p("keyword",a):p("name",a)}function N(a,b){try{return b()}catch(c){if(c===C)u(a);else throw c}}function O(a){if(a!=null)return I(a);q(),k();var b=c();if(!b)return p("eof");if(s(b))return v();if(b=='"'||b=="'")return D();if(S(o,b))return p("punc",e());if(b==".")return L();if(b=="/")return K();if(S(h,b))return J();if(b=="\\"||w(b))return M();u("Unexpected character '"+b+"'")}var b={text:a.replace(/\r\n?|[\n\u2028\u2029]/g,"\n").replace(/^\uFEFF/,""),pos:0,tokpos:0,line:0,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[]};return O.context=function(a){return a&&(b=a),b},O}function K(a,b,c){this.name=a,this.start=b,this.end=c}function L(a,b,c){function e(a,b){return B(d.token,a,b)}function f(){return d.peeked||(d.peeked=d.input())}function g(){return d.prev=d.token,d.peeked?(d.token=d.peeked,d.peeked=null):d.token=d.input(),d.token}function h(){return d.prev}function i(a,b,c,e){var f=d.input.context();A(a,b!=null?b:f.tokline,c!=null?c:f.tokcol,e!=null?e:f.tokpos)}function j(a,b){i(b,a.line,a.col)}function k(a){a==null&&(a=d.token),j(a,"Unexpected token: "+a.type+" ("+a.value+")")}function l(a,b){if(e(a,b))return g();j(d.token,"Unexpected token "+d.token.type+", expected "+a)}function m(a){return l("punc",a)}function n(){return!b&&(d.token.nlb||e("eof")||e("punc","}"))}function o(){e("punc",";")?g():n()||k()}function p(){return P(arguments)}function q(){m("(");var a=bk();return m(")"),a}function r(a,b,c){return a instanceof K?a:new K(a,b,c)}function s(a){return c?function(){var b=d.token,c=a.apply(this,arguments);return c[0]=r(c[0],b,h()),c}:a}function u(a){d.labels.push(a);var c=d.token,e=t();return b&&!S(I,e[0])&&k(c),d.labels.pop(),p("label",a,e)}function v(){return p("stat",N(bk,o))}function w(a){var b;return n()||(b=e("name")?d.token.value:null),b!=null?(g(),R(b,d.labels)||i("Label "+b+" without matching loop or statement")):d.in_loop==0&&i(a+" not inside a loop or switch"),o(),p(a,b)}function x(){m("(");var a=null;if(!e("punc",";")){a=e("keyword","var")?(g(),V(!0)):bk(!0,!0);if(e("operator","in"))return z(a)}return y(a)}function y(a){m(";");var b=e("punc",";")?null:bk();m(";");var c=e("punc",")")?null:bk();return m(")"),p("for",a,b,c,bl(t))}function z(a){var b=a[0]=="var"?p("name",a[1][0]):a;g();var c=bk();return m(")"),p("for-in",a,b,c,bl(t))}function L(){var a=q(),b=t(),c;return e("keyword","else")&&(g(),c=t()),p("if",a,b,c)}function O(){m("{");var a=[];while(!e("punc","}"))e("eof")&&k(),a.push(t());return g(),a}function T(){var a=O(),b,c;if(e("keyword","catch")){g(),m("("),e("name")||i("Name expected");var f=d.token.value;g(),m(")"),b=[f,O()]}return e("keyword","finally")&&(g(),c=O()),!b&&!c&&i("Missing catch/finally blocks"),p("try",a,b,c)}function U(a){var b=[];for(;;){e("name")||k();var c=d.token.value;g(),e("operator","=")?(g(),b.push([c,bk(!1,a)])):b.push([c]);if(!e("punc",","))break;g()}return b}function V(a){return p("var",U(a))}function W(){return p("const",U())}function X(){var a=Y(!1),b;return e("punc","(")?(g(),b=Z(")")):b=[],bc(p("new",a,b),!0)}function Z(a,b,c){var d=!0,f=[];while(!e("punc",a)){d?d=!1:m(",");if(b&&e("punc",a))break;e("punc",",")&&c?f.push(["atom","undefined"]):f.push(bk(!1))}return g(),f}function $(){return p("array",Z("]",!b,!0))}function _(){var a=!0,c=[];while(!e("punc","}")){a?a=!1:m(",");if(!b&&e("punc","}"))break;var f=d.token.type,h=ba();f!="name"||h!="get"&&h!="set"||!!e("punc",":")?(m(":"),c.push([h,bk(!1)])):c.push([bb(),C(!1),h])}return g(),p("object",c)}function ba(){switch(d.token.type){case"num":case"string":return N(d.token.value,g)}return bb()}function bb(){switch(d.token.type){case"name":case"operator":case"keyword":case"atom":return N(d.token.value,g);default:k()}}function bc(a,b){return e("punc",".")?(g(),bc(p("dot",a,bb()),b)):e("punc","[")?(g(),bc(p("sub",a,N(bk,M(m,"]"))),b)):b&&e("punc","(")?(g(),bc(p("call",a,Z(")")),!0)):a}function bd(a){if(e("operator")&&S(E,d.token.value))return be("unary-prefix",N(d.token.value,g),bd(a));var b=Y(a);while(e("operator")&&S(F,d.token.value)&&!d.token.nlb)b=be("unary-postfix",d.token.value,b),g();return b}function be(a,b,c){return(b=="++"||b=="--")&&!bi(c)&&i("Invalid use of "+b+" operator"),p(a,b,c)}function bf(a,b,c){var f=e("operator")?d.token.value:null;f&&f=="in"&&c&&(f=null);var h=f!=null?H[f]:null;if(h!=null&&h>b){g();var i=bf(bd(!0),h,c);return bf(p("binary",f,a,i),b,c)}return a}function bg(a){return bf(bd(!0),0,a)}function bh(a){var b=bg(a);if(e("operator","?")){g();var c=bk(!1);return m(":"),p("conditional",b,c,bk(!1,a))}return b}function bi(a){if(!b)return!0;switch(a[0]+""){case"dot":case"sub":case"new":case"call":return!0;case"name":return a[1]!="this"}}function bj(a){var b=bh(a),c=d.token.value;if(e("operator")&&S(G,c)){if(bi(b))return g(),p("assign",G[c],b,bj(a));i("Invalid assignment")}return b}function bl(a){try{return++d.in_loop,a()}finally{--d.in_loop}}var d={input:typeof a=="string"?D(a,!0):a,token:null,prev:null,peeked:null,in_function:0,in_loop:0,labels:[]};d.token=g();var t=s(function(){if(e("operator","/")||e("operator","/="))d.peeked=null,d.token=d.input(d.token.value.substr(1));switch(d.token.type){case"num":case"string":case"regexp":case"operator":case"atom":return v();case"name":return B(f(),"punc",":")?u(N(d.token.value,g,g)):v();case"punc":switch(d.token.value){case"{":return p("block",O());case"[":case"(":return v();case";":return g(),p("block");default:k()};case"keyword":switch(N(d.token.value,g)){case"break":return w("break");case"continue":return w("continue");case"debugger":return o(),p("debugger");case"do":return function(a){return l("keyword","while"),p("do",N(q,o),a)}(bl(t));case"for":return x();case"function":return C(!0);case"if":return L();case"return":return d.in_function==0&&i("'return' outside of function"),p("return",e("punc",";")?(g(),null):n()?null:N(bk,o));case"switch":return p("switch",q(),Q());case"throw":return d.token.nlb&&i("Illegal newline after 'throw'"),p("throw",N(bk,o));case"try":return T();case"var":return N(V,o);case"const":return N(W,o);case"while":return p("while",q(),bl(t));case"with":return p("with",q(),t());default:k()}}}),C=s(function(a){var b=e("name")?N(d.token.value,g):null;return a&&!b&&k(),m("("),p(a?"defun":"function",b,function(a,b){while(!e("punc",")"))a?a=!1:m(","),e("name")||k(),b.push(d.token.value),g();return g(),b}(!0,[]),function(){++d.in_function;var a=d.in_loop;d.in_loop=0;var b=O();return--d.in_function,d.in_loop=a,b}())}),Q=M(bl,function(){m("{");var a=[],b=null;while(!e("punc","}"))e("eof")&&k(),e("keyword","case")?(g(),b=[],a.push([bk(),b]),m(":")):e("keyword","default")?(g(),m(":"),b=[],a.push([null,b])):(b||k(),b.push(t()));return g(),a}),Y=s(function(a){if(e("operator","new"))return g(),X();if(e("punc")){switch(d.token.value){case"(":return g(),bc(N(bk,M(m,")")),a);case"[":return g(),bc($(),a);case"{":return g(),bc(_(),a)}k()}if(e("keyword","function"))return g(),bc(C(!1),a);if(S(J,d.token.type)){var b=d.token.type=="regexp"?p("regexp",d.token.value[0],d.token.value[1]):p(d.token.type,d.token.value);return bc(N(b,g),a)}k()}),bk=s(function(a,b){arguments.length==0&&(a=!0);var c=bj(b);return a&&e("punc",",")?(g(),p("seq",c,bk(!0,b))):c});return p("toplevel",function(a){while(!e("eof"))a.push(t());return a}([]))}function M(a){var b=P(arguments,1);return function(){return a.apply(this,b.concat(P(arguments)))}}function N(a){a instanceof Function&&(a=a());for(var b=1,c=arguments.length;--c>0;++b)arguments[b]();return a}function O(a){var b={};for(var c=0;c=0;)if(b[c]===a)return!0;return!1}function S(a,b){return Object.prototype.hasOwnProperty.call(a,b)}var d=O(["break","case","catch","const","continue","default","delete","do","else","finally","for","function","if","in","instanceof","new","return","switch","throw","try","typeof","var","void","while","with"]),e=O(["abstract","boolean","byte","char","class","debugger","double","enum","export","extends","final","float","goto","implements","import","int","interface","long","native","package","private","protected","public","short","static","super","synchronized","throws","transient","volatile"]),f=O(["return","new","delete","throw","else","case"]),g=O(["false","null","true","undefined"]),h=O(Q("+-*&%=<>!?|~^")),i=/^0x[0-9a-f]+$/i,j=/^0[0-7]+$/,k=/^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i,l=O(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),m=O(Q(" \n\r\t\f ​᠎              ")),n=O(Q("[{}(,.;:")),o=O(Q("[]{}(),;:")),p=O(Q("gmsiy")),q={letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0523\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0621-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971\\u0972\\u097B-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D28\\u0D2A-\\u0D39\\u0D3D\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC\\u0EDD\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8B\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10D0-\\u10FA\\u10FC\\u1100-\\u1159\\u115F-\\u11A2\\u11A8-\\u11F9\\u1200-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u1676\\u1681-\\u169A\\u16A0-\\u16EA\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19A9\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u2094\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2183\\u2184\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2C6F\\u2C71-\\u2C7D\\u2C80-\\u2CE4\\u2D00-\\u2D25\\u2D30-\\u2D65\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005\\u3006\\u3031-\\u3035\\u303B\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31B7\\u31F0-\\u31FF\\u3400\\u4DB5\\u4E00\\u9FC3\\uA000-\\uA48C\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA65F\\uA662-\\uA66E\\uA67F-\\uA697\\uA717-\\uA71F\\uA722-\\uA788\\uA78B\\uA78C\\uA7FB-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA90A-\\uA925\\uA930-\\uA946\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAC00\\uD7A3\\uF900-\\uFA2D\\uFA30-\\uFA6A\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),non_spacing_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),space_combining_mark:new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]")};z.prototype.toString=function(){return this.message+" (line: "+this.line+", col: "+this.col+", pos: "+this.pos+")"+"\n\n"+this.stack};var C={},E=O(["typeof","void","delete","--","++","!","~","-","+"]),F=O(["--","++"]),G=function(a,b,c){while(c>=","<<=",">>>=","|=","^=","&="],{"=":!0},0),H=function(a,b){for(var c=0,d=1;c","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),I=O(["for","do","while","switch"]),J=O(["atom","num","string","regexp","name"]);K.prototype.toString=function(){return this.name};var T=function(){};b.tokenizer=D,b.parse=L,b.slice=P,b.curry=M,b.member=R,b.array_to_hash=O,b.PRECEDENCE=H,b.KEYWORDS_ATOM=g,b.RESERVED_WORDS=e,b.KEYWORDS=d,b.ATOMIC_START_TOKEN=J,b.OPERATORS=l,b.is_alphanumeric_char=t,b.set_logger=function(a){T=a}}),f("lib/process",["require","exports","module","./parse-js"],function(a,b,c){function i(){function a(a){return[this[0],K(a,function(a){var b=[a[0]];return a.length>1&&(b[1]=g(a[1])),b})]}function b(a){var b=[this[0]];return a!=null&&b.push(K(a,g)),b}function g(a){if(a==null)return null;try{f.push(a);var b=a[0],e=d[b];if(e){var g=e.apply(a,a.slice(1));if(g!=null)return g}return e=c[b],e.apply(a,a.slice(1))}finally{f.pop()}}function h(a){if(a==null)return null;try{return f.push(a),c[a[0]].apply(a,a.slice(1))}finally{f.pop()}}function i(a,b){var c={},e;for(e in a)J(a,e)&&(c[e]=d[e],d[e]=a[e]);var f=b();for(e in c)J(c,e)&&(c[e]?d[e]=c[e]:delete d[e]);return f}var c={string:function(a){return[this[0],a]},num:function(a){return[this[0],a]},name:function(a){return[this[0],a]},toplevel:function(a){return[this[0],K(a,g)]},block:b,splice:b,"var":a,"const":a,"try":function(a,b,c){return[this[0],K(a,g),b!=null?[b[0],K(b[1],g)]:null,c!=null?K(c,g):null]},"throw":function(a){return[this[0],g(a)]},"new":function(a,b){return[this[0],g(a),K(b,g)]},"switch":function(a,b){return[this[0],g(a),K(b,function(a){return[a[0]?g(a[0]):null,K(a[1],g)]})]},"break":function(a){return[this[0],a]},"continue":function(a){return[this[0],a]},conditional:function(a,b,c){return[this[0],g(a),g(b),g(c)]},assign:function(a,b,c){return[this[0],a,g(b),g(c)]},dot:function(a){return[this[0],g(a)].concat(e(arguments,1))},call:function(a,b){return[this[0],g(a),K(b,g)]},"function":function(a,b,c){return[this[0],a,b.slice(),K(c,g)]},defun:function(a,b,c){return[this[0],a,b.slice(),K(c,g)]},"if":function(a,b,c){return[this[0],g(a),g(b),g(c)]},"for":function(a,b,c,d){return[this[0],g(a),g(b),g(c),g(d)]},"for-in":function(a,b,c,d){return[this[0],g(a),g(b),g(c),g(d)]},"while":function(a,b){return[this[0],g(a),g(b)]},"do":function(a,b){return[this[0],g(a),g(b)]},"return":function(a){return[this[0],g(a)]},binary:function(a,b,c){return[this[0],a,g(b),g(c)]},"unary-prefix":function(a,b){return[this[0],a,g(b)]},"unary-postfix":function(a,b){return[this[0],a,g(b)]},sub:function(a,b){return[this[0],g(a),g(b)]},object:function(a){return[this[0],K(a,function(a){return a.length==2?[a[0],g(a[1])]:[a[0],g(a[1]),a[2]]})]},regexp:function(a,b){return[this[0],a,b]},array:function(a){return[this[0],K(a,g)]},stat:function(a){return[this[0],g(a)]},seq:function(){return[this[0]].concat(K(e(arguments),g))},label:function(a,b){return[this[0],a,g(b)]},"with":function(a,b){return[this[0],g(a),g(b)]},atom:function(a){return[this[0],a]}},d={},f=[];return{walk:g,dive:h,with_walkers:i,parent:function(){return f[f.length-2]},stack:function(){return f}}}function j(a){this.names={},this.mangled={},this.rev_mangled={},this.cname=-1,this.refs={},this.uses_with=!1,this.uses_eval=!1,this.parent=a,this.children=[],a?(this.level=a.level+1,a.children.push(this)):this.level=0}function l(a){function f(a){b=new j(b);var c=b.body=a();return c.scope=b,b=b.parent,c}function g(a,c){return b.define(a,c)}function h(a){b.refs[a]=!0}function k(a,b,c){var e=this[0]=="defun";return[this[0],e?g(a,"defun"):a,b,f(function(){return e||g(a,"lambda"),K(b,function(a){g(a,"arg")}),K(c,d)})]}function l(a){return function(b){K(b,function(b){g(b[0],a),b[1]&&h(b[0])})}}var b=null,c=i(),d=c.walk,e=[];return f(function(){function i(a,b){for(b=a.children.length;--b>=0;)i(a.children[b]);for(b in a.refs)if(J(a.refs,b))for(var c=a.has(b),d=a;d;d=d.parent){d.refs[b]=c;if(d===c)break}}var f=c.with_walkers({"function":k,defun:k,label:function(a,b){g(a,"label")},"break":function(a){a&&h(a)},"continue":function(a){a&&h(a)},"with":function(a,c){for(var d=b;d;d=d.parent)d.uses_with=!0},"var":l("var"),"const":l("const"),"try":function(a,b,c){if(b!=null)return[this[0],K(a,d),[g(b[0],"catch"),K(b[1],d)],c!=null?K(c,d):null]},name:function(a){a=="eval"&&e.push(b),h(a)}},function(){return d(a)});return K(e,function(a){if(!a.has("eval"))while(a)a.uses_eval=!0,a=a.parent}),i(b),f})}function m(a,b){function g(a,c){return!b.toplevel&&!e.parent?a:b.except&&f(a,b.except)?a:e.get_mangled(a,c)}function h(a){if(b.defines)return!e.has(a)&&J(b.defines,a)?b.defines[a]:null}function j(a,b,c){var f=this[0]=="defun",h;return a&&(f?a=g(a):(h={},!e.uses_eval&&!e.uses_with?a=h[a]=e.next_mangled():h[a]=a)),c=k(c.scope,function(){return b=K(b,function(a){return g(a)}),K(c,d)},h),[this[0],a,b,c]}function k(a,b,c){var d=e;e=a;if(c)for(var f in c)J(c,f)&&a.set_mangle(f,c[f]);for(var f in a.names)J(a.names,f)&&g(f,!0);var h=b();return h.scope=a,e=d,h}function m(a){return[this[0],K(a,function(a){return[g(a[0]),d(a[1])]})]}var c=i(),d=c.walk,e;return b=b||{},c.with_walkers({"function":j,defun:function(){var a=j.apply(this,arguments);switch(c.parent()[0]){case"toplevel":case"function":case"defun":return K.at_top(a)}return a},label:function(a,b){return[this[0],g(a),d(b)]},"break":function(a){if(a)return[this[0],g(a)]},"continue":function(a){if(a)return[this[0],g(a)]},"var":m,"const":m,name:function(a){return h(a)||[this[0],g(a)]},"try":function(a,b,c){return[this[0],K(a,d),b!=null?[g(b[0]),K(b[1],d)]:null,c!=null?K(c,d):null]},toplevel:function(a){var b=this;return k(b.scope,function(){return[b[0],K(a,d)]})}},function(){return d(l(a))})}function o(a,b){return E(a).length>E(b[0]=="stat"?b[1]:b).length?b:a}function p(a){return a[0]=="block"&&a[1]&&a[1].length>0?a[1][a[1].length-1]:a}function q(a){if(a)switch(p(a)[0]){case"return":case"break":case"continue":case"throw":return!0}}function r(a){return a[0]=="unary-prefix"&&f(a[1],["!","delete"])||a[0]=="binary"&&f(a[1],["in","instanceof","==","!=","===","!==","<","<=",">=",">"])||a[0]=="binary"&&f(a[1],["&&","||"])&&r(a[2])&&r(a[3])||a[0]=="conditional"&&r(a[2])&&r(a[3])||a[0]=="assign"&&a[1]===!0&&r(a[3])||a[0]=="seq"&&r(a[a.length-1])}function s(a){return!a||a[0]=="block"&&(!a[1]||a[1].length==0)}function t(a){return a[0]=="string"||a[0]=="unary-prefix"&&a[1]=="typeof"||a[0]=="binary"&&a[1]=="+"&&(t(a[2])||t(a[3]))}function v(a){s(a)||n("Dropping unreachable code: "+E(a,!0))}function w(a){function d(a){a=K(a,c);for(var b=0;b0&&(x(["block",a],function(a,b,c,d){if(a[0]=="assign"&&a[1]===!0&&a[2][0]=="name"&&J(f,a[2][1])){for(var e=g.length;--e>=0;)if(g[e][0]==a[2][1]){g[e][1]&&c(),g[e][1]=a[3],g.push(g.splice(e,1)[0]);break}var h=b.parent();if(h[0]=="seq"){var i=h[2];i.unshift(0,h.length),h.splice.apply(h,i)}else h[0]=="stat"?h.splice(0,h.length,"block"):c();d()}c()}),a.unshift(["var",g])),d=e,a}function f(a){var c=null;for(var d=a.length;--d>=0;){var e=a[d];if(!e[1])continue;e=["assign",!0,["name",e[0]],e[1]],c==null?c=e:c=["seq",e,c]}return c==null?b.parent()[0]=="for-in"?["name",a[0][0]]:K.skip:["stat",c]}function g(a){return[this[0],e(a,this.scope)]}var b=i(),c=b.walk,d;return b.with_walkers({"function":function(a,b,c){for(var d=b.length;--d>=0&&!c.scope.references(b[d]);)b.pop();return c.scope.references(a)||(a=null),[this[0],a,b,e(c,c.scope)]},defun:function(a,b,c){if(!d.references(a))return K.skip;for(var f=b.length;--f>=0&&!c.scope.references(b[f]);)b.pop();return[this[0],a,b,e(c,c.scope)]},"var":f,toplevel:g},function(){return c(l(a))})}function z(a,b){function h(a){var c=["unary-prefix","!",a];switch(a[0]){case"unary-prefix":return a[1]=="!"&&r(a[2])?a[2]:c;case"seq":return a=e(a),a[a.length-1]=h(a[a.length-1]),a;case"conditional":return o(c,["conditional",a[1],h(a[2]),h(a[3])]);case"binary":var d=a[1],f=a[2],g=a[3];if(!b.keep_comps)switch(d){case"<=":return["binary",">",f,g];case"<":return["binary",">=",f,g];case">=":return["binary","<",f,g];case">":return["binary","<=",f,g]}switch(d){case"==":return["binary","!=",f,g];case"!=":return["binary","==",f,g];case"===":return["binary","!==",f,g];case"!==":return["binary","===",f,g];case"&&":return o(c,["binary","||",h(f),h(g)]);case"||":return o(c,["binary","&&",h(f),h(g)])}}return c}function j(a,b,c){var d=function(){return a[0]=="unary-prefix"&&a[1]=="!"?c?["conditional",a[2],c,b]:["binary","||",a[2],b]:c?o(["conditional",a,b,c],["conditional",h(a),c,b]):["binary","&&",a,b]};return u(a,function(a,d){return v(d?c:b),d?b:c},d)}function k(a,b){var c=g;g=a;var d=b();return d.scope=a,g=c,d}function m(a){return a!=null&&a[0]=="block"&&a[1]&&(a[1].length==1?a=a[1][0]:a[1].length==0&&(a=["block"])),a}function p(a,b,c){var d=this[0]=="defun";return c=k(c.scope,function(){var b=t(c,"lambda");return!d&&a&&!g.references(a)&&(a=null),b}),[this[0],a,b,c]}function t(a,c){return a=K(a,d),a=a.reduce(function(a,b){return b[0]=="block"?b[1]&&a.push.apply(a,b[1]):a.push(b),a},[]),a=function(b,c){return a.forEach(function(a){c&&(a[0]=="var"&&c[0]=="var"||a[0]=="const"&&c[0]=="const")?c[1]=c[1].concat(a[1]):(b.push(a),c=a)}),b}([]),b.dead_code&&(a=function(c,d){return a.forEach(function(a){d?a[0]=="function"||a[0]=="defun"?c.push(a):a[0]=="var"||a[0]=="const"?(b.no_warnings||n("Variables declared in unreachable code"),a[1]=K(a[1],function(a){return a[1]&&!b.no_warnings&&v(["assign",!0,["name",a[0]],a[1]]),[a[0]]}),c.push(a)):b.no_warnings||v(a):(c.push(a),f(a[0],["return","throw","break","continue"])&&(d=!0))}),c}([])),b.make_seqs&&(a=function(b,c){return a.forEach(function(a){c&&c[0]=="stat"&&a[0]=="stat"?c[1]=["seq",c[1],a[1]]:(b.push(a),c=a)}),b.length>=2&&b[b.length-2][0]=="stat"&&(b[b.length-1][0]=="return"||b[b.length-1][0]=="throw")&&b[b.length-1][1]&&b.splice(b.length-2,2,[b[b.length-1][0],["seq",b[b.length-2][1],b[b.length-1][1]]]),b}([])),a}function x(a,b,c){return u(a,function(a,e){return e?(b=d(b),v(c),b||["block"]):(c=d(c),v(b),c||["block"])},function(){return y(a,b,c)})}function y(a,b,c){a=d(a),b=d(b),c=d(c),s(b)?(a=h(a),b=c,c=null):s(c)?c=null:function(){var d=E(a),e=h(a),f=E(e);if(f.length0){var f=e[e.length-1];f[0]=="break"&&!f[1]&&e.pop()}return[a[0]?d(a[0]):null,e]})]},"function":p,defun:p,block:function(a){if(a)return m(["block",t(a)])},binary:function(a,b,c){return u(["binary",a,d(b),d(c)],function(a){return o(d(a),this)},function(){return function(){if(a!="=="&&a!="!=")return;var e=d(b),f=d(c);return e&&e[0]=="unary-prefix"&&e[1]=="!"&&e[2][0]=="num"?b=["num",+!e[2][1]]:f&&f[0]=="unary-prefix"&&f[1]=="!"&&f[2][0]=="num"&&(c=["num",+!f[2][1]]),["binary",a,b,c]}()||this})},conditional:function(a,b,c){return j(d(a),d(b),d(c))},"try":function(a,b,c){return["try",t(a),b!=null?[b[0],t(b[1])]:null,c!=null?t(c):null]},"unary-prefix":function(a,b){b=d(b);var c=["unary-prefix",a,b];return a=="!"&&(c=o(c,h(b))),u(c,function(a,b){return d(a)},function(){return c})},name:function(a){switch(a){case"true":return["unary-prefix","!",["num",0]];case"false":return["unary-prefix","!",["num",1]]}},"while":z,assign:function(a,b,c){b=d(b),c=d(c);var e=["+","-","/","*","%",">>","<<",">>>","|","^","&"];return a===!0&&b[0]==="name"&&c[0]==="binary"&&~e.indexOf(c[1])&&c[2][0]==="name"&&c[2][1]===b[1]?[this[0],c[1],b,c[3]]:[this[0],a,b,c]}},function(){for(var b=0;b<2;++b)a=w(a),a=l(a),a=d(a);return a})}function B(a,b){var c=0,d=0;return a=a.replace(/[\\\b\f\n\r\t\x22\x27\u2028\u2029\0]/g,function(a){switch(a){case"\\":return"\\\\";case"\b":return"\\b";case"\f":return"\\f";case"\n":return"\\n";case"\r":return"\\r";case"\t":return"\\t";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case'"':return++c,'"';case"'":return++d,"'";case"\0":return"\\0"}return a}),b&&(a=C(a)),c>d?"'"+a.replace(/\x27/g,"\\'")+"'":'"'+a.replace(/\x22/g,'\\"')+'"'}function C(a){return a.replace(/[\u0080-\uffff]/g,function(a){var b=a.charCodeAt(0).toString(16);while(b.length<4)b="0"+b;return"\\u"+b})}function E(a,b){function m(a){var c=B(a,b.ascii_only);return b.inline_script&&(c=c.replace(/<\x2fscript([>/\t\n\f\r ])/gi,"<\\/script$1")),c}function n(a){return a=a.toString(),b.ascii_only&&(a=C(a)),a}function o(a){return a==null&&(a=""),c&&(a=G(" ",b.indent_start+j*b.indent_level)+a),a}function p(a,b){b==null&&(b=1),j+=b;try{return a.apply(null,e(arguments,1))}finally{j-=b}}function q(a){if(c)return a.join(" ");var b=[];for(var d=0;db.length?b:a}return u([a[0],u(a.slice(1))])}function v(a){if(a[0]=="function"||a[0]=="object"){var b=e(x.stack()),c=b.pop(),d=b.pop();while(d){if(d[0]=="stat")return!0;if((d[0]=="seq"||d[0]=="call"||d[0]=="dot"||d[0]=="sub"||d[0]=="conditional")&&d[1]===c||(d[0]=="binary"||d[0]=="assign"||d[0]=="unary-postfix")&&d[2]===c)c=d,d=b.pop();else return!1}}return!J(A,a[0])}function w(a){var b=a.toString(10),c=[b.replace(/^0\./,".")],d;return Math.floor(a)===a?(a<0?c.push("-0x"+(-a).toString(16).toLowerCase(),"-0"+(-a).toString(8)):c.push("0x"+a.toString(16).toLowerCase(),"0"+a.toString(8)),(d=/^(.*?)(0+)$/.exec(a))&&c.push(d[1]+"e"+d[2].length)):(d=/^0?\.(0+)(.*)$/.exec(a))&&c.push(d[2]+"e-"+(d[1].length+d[2].length),b.substr(b.indexOf("."))),u(c)}function z(a){if(a==null)return";";if(a[0]=="do")return N([a]);var b=a;for(;;){var c=b[0];if(c=="if"){if(!b[3])return y(["block",[a]]);b=b[3]}else if(c=="while"||c=="do")b=b[2];else if(c=="for"||c=="for-in")b=b[4];else break}return y(a)}function E(a,b,c,d){var e=d||"function";return a&&(e+=" "+n(a)),e+="("+r(K(b,n))+")",e=q([e,N(c)]),v(this)?"("+e+")":e}function F(a){switch(a[0]){case"with":case"while":return s(a[2]);case"for":case"for-in":return s(a[4]);case"if":if(s(a[2])&&!a[3])return!0;if(a[3])return s(a[3])?!0:F(a[3]);return F(a[2])}}function L(a,b){for(var d=[],e=a.length-1,f=0;f<=e;++f){var g=a[f],h=y(g);h!=";"&&(!c&&f==e&&!F(g)&&(h=h.replace(/;+\s*$/,"")),d.push(h))}return b?d:K(d,o)}function M(a){var b=a.length;return b==0?"{}":"{"+k+K(a,function(a,d){var e=a[1].length>0,f=p(function(){return o(a[0]?q(["case",y(a[0])+":"]):"default:")},.5)+(e?k+p(function(){return L(a[1]).join(k)}):"");return!c&&e&&d0?o(a):a}).join(k)},block:N,"var":function(a){return"var "+r(K(a,O))+";"},"const":function(a){return"const "+r(K(a,O))+";"},"try":function(a,b,c){var d=["try",N(a)];return b&&d.push("catch","("+b[0]+")",N(b[1])),c&&d.push("finally",N(c)),q(d)},"throw":function(a){return q(["throw",y(a)])+";"},"new":function(a,b){return b=b.length>0?"("+r(K(b,function(a){return t(a,"seq")}))+")":"",q(["new",t(a,"seq","binary","conditional","assign",function(a){var b=i(),c={};try{b.with_walkers({call:function(){throw c},"function":function(){return this}},function(){b.walk(a)})}catch(d){if(d===c)return!0;throw d}})+b])},"switch":function(a,b){return q(["switch","("+y(a)+")",M(b)])},"break":function(a){var b="break";return a!=null&&(b+=" "+n(a)),b+";"},"continue":function(a){var b="continue";return a!=null&&(b+=" "+n(a)),b+";"},conditional:function(a,b,c){return q([t(a,"assign","seq","conditional"),"?",t(b,"seq"),":",t(c,"seq")])},assign:function(a,b,c){return a&&a!==!0?a+="=":a="=",q([y(b),a,t(c,"seq")])},dot:function(a){var b=y(a),c=1;a[0]=="num"?/\./.test(a[1])||(b+="."):v(a)&&(b="("+b+")");while(cg[d[1]]||d[0]=="function"&&v(this))h="("+h+")";return f(e[0],["assign","conditional","seq"])||e[0]=="binary"&&g[a]>=g[e[1]]&&(e[1]!=a||!f(a,["&&","||","*"]))?i="("+i+")":!c&&b.inline_script&&(a=="<"||a=="<<")&&e[0]=="regexp"&&/^script/i.test(e[1])&&(i=" "+i),q([h,a,i])},"unary-prefix":function(a,b){var c=y(b);return b[0]=="num"||b[0]=="unary-prefix"&&!J(h,a+b[1])||!v(b)||(c="("+c+")"),a+(d.is_alphanumeric_char(a.charAt(0))?" ":"")+c},"unary-postfix":function(a,b){var c=y(b);return b[0]=="num"||b[0]=="unary-postfix"&&!J(h,a+b[1])||!v(b)||(c="("+c+")"),c+a},sub:function(a,b){var c=y(a);return v(a)&&(c="("+c+")"),c+"["+y(b)+"]"},object:function(a){var d=v(this);if(a.length==0)return d?"({})":"{}";var e="{"+k+p(function(){return K(a,function(a){if(a.length==3)return o(E(a[0],a[1][2],a[1][3],a[2]));var d=a[0],e=t(a[1],"seq");return b.quote_keys?d=m(d):(typeof d=="number"||!c&&+d+""==d)&&parseFloat(d)>=0?d=w(+d):I(d)||(d=m(d)),o(q(c&&b.space_colon?[d,":",e]:[d+":",e]))}).join(","+k)})+k+o("}");return d?"("+e+")":e},regexp:function(a,b){return"/"+a+"/"+b},array:function(a){return a.length==0?"[]":q(["[",r(K(a,function(b,d){return!c&&b[0]=="atom"&&b[1]=="undefined"?d===a.length-1?",":"":t(b,"seq")})),"]"])},stat:function(a){return y(a).replace(/;*\s*$/,";")},seq:function(){return r(K(e(arguments),y))},label:function(a,b){return q([n(a),":",y(b)])},"with":function(a,b){return q(["with","("+y(a)+")",y(b)])},atom:function(a){return n(a)}},function(){return y(a)})}function F(a,b){var c=[0];return d.parse(function(){function h(a){return a.pos-f}function i(a){f=a.pos,c.push(f)}function j(){var a=e.apply(this,arguments);c:{if(g&&g.type=="keyword")break c;if(h(a)>b)switch(a.type){case"keyword":case"atom":case"name":case"punc":i(a);break c}}return g=a,a}var e=d.tokenizer(a),f=0,g;return j.context=function(){return e.context.apply(this,arguments)},j}()),c.map(function(b,d){return a.substring(b,c[d+1]||a.length)}).join("\n")}function G(a,b){if(b>0){if(b==1)return a;var c=G(a,b>>1);return c+=c,b&1&&(c+=a),c}return""}function H(a,b){var c={};a===!0&&(a={});for(var d in b)J(b,d)&&(c[d]=a&&J(a,d)?a[d]:b[d]);return c}function I(a){return/^[a-z_$][a-z0-9_$]*$/i.test(a)&&a!="this"&&!J(d.KEYWORDS_ATOM,a)&&!J(d.RESERVED_WORDS,a)&&!J(d.KEYWORDS,a)}function J(a,b){return Object.prototype.hasOwnProperty.call(a,b)}var d=a("./parse-js"),e=d.slice,f=d.member,g=d.PRECEDENCE,h=d.OPERATORS,k=function(){var a="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_";return function(b){var c="";do c=a.charAt(b%54)+c,b=Math.floor(b/54);while(b>0);return c}}();j.prototype={has:function(a){for(var b=this;b;b=b.parent)if(J(b.names,a))return b},has_mangled:function(a){for(var b=this;b;b=b.parent)if(J(b.rev_mangled,a))return b},toJSON:function(){return{names:this.names,uses_eval:this.uses_eval,uses_with:this.uses_with}},next_mangled:function(){for(;;){var a=k(++this.cname),b;b=this.has_mangled(a);if(b&&this.refs[b.rev_mangled[a]]===b)continue;b=this.has(a);if(b&&b!==this&&this.refs[a]===b&&!b.has_mangled(a))continue;if(J(this.refs,a)&&this.refs[a]==null)continue;if(!I(a))continue;return a}},set_mangle:function(a,b){return this.rev_mangled[b]=a,this.mangled[a]=b},get_mangled:function(a,b){if(this.uses_eval||this.uses_with)return a;var c=this.has(a);return c?J(c.mangled,a)?c.mangled[a]:b?c.set_mangle(a,c.next_mangled()):a:a},references:function(a){return a&&!this.parent||this.uses_with||this.uses_eval||this.refs[a]},define:function(a,b){if(a!=null){if(b=="var"||!J(this.names,a))this.names[a]=b||"var";return a}}};var n=function(){},u=function(){function b(c){switch(c[0]){case"string":case"num":return c[1];case"name":case"atom":switch(c[1]){case"true":return!0;case"false":return!1;case"null":return null}break;case"unary-prefix":switch(c[1]){case"!":return!b(c[2]);case"typeof":return typeof b(c[2]);case"~":return~b(c[2]);case"-":return-b(c[2]);case"+":return+b(c[2])}break;case"binary":var d=c[2],e=c[3];switch(c[1]){case"&&":return b(d)&&b(e);case"||":return b(d)||b(e);case"|":return b(d)|b(e);case"&":return b(d)&b(e);case"^":return b(d)^b(e);case"+":return b(d)+b(e);case"*":return b(d)*b(e);case"/":return b(d)/b(e);case"%":return b(d)%b(e);case"-":return b(d)-b(e);case"<<":return b(d)<>":return b(d)>>b(e);case">>>":return b(d)>>>b(e);case"==":return b(d)==b(e);case"===":return b(d)===b(e);case"!=":return b(d)!=b(e);case"!==":return b(d)!==b(e);case"<":return b(d)":return b(d)>b(e);case">=":return b(d)>=b(e);case"in":return b(d)in b(e);case"instanceof":return b(d)instanceof b(e)}}throw a}var a={};return function(c,d,e){try{var f=b(c),g;switch(typeof f){case"string":g=["string",f];break;case"number":g=["num",f];break;case"boolean":g=["name",String(f)];break;default:throw new Error("Can't handle constant of type: "+typeof f)}return d.call(c,g,f)}catch(h){if(h===a){if(c[0]!="binary"||c[1]!="==="&&c[1]!="!=="||!(t(c[2])&&t(c[3])||r(c[2])&&r(c[3]))){if(e&&c[0]=="binary"&&(c[1]=="||"||c[1]=="&&"))try{var i=b(c[2]);c=c[1]=="&&"&&(i?c[3]:i)||c[1]=="||"&&(i?i:c[3])||c}catch(j){}}else c[1]=c[1].substr(0,2);return e?e.call(c,c):null}throw h}}}(),A=d.array_to_hash(["name","array","object","string","dot","sub","call","regexp","defun"]),D=d.array_to_hash(["if","while","do","for","for-in","with"]),K;(function(){function b(a){this.v=a}function c(a){this.v=a}K=function(d,e,f){function j(){var j=e.call(f,d[i],i);j instanceof b?(j=j.v,j instanceof c?h.push.apply(h,j.v):h.push(j)):j!=a&&(j instanceof c?g.push.apply(g,j.v):g.push(j))}var g=[],h=[],i;if(d instanceof Array)for(i=0;i +
    + +

    Navmenu is a vertical navigation component. By default it shares it look and feel with the navmenu component.

    + +
    +

    Custom width

    +

    The navmenu is 300px wide by default. You can change this by customizing the @navmenu-width variable or by setting the width of .navmenu in your CSS.

    +
    + + + + +{% highlight html %} + +{% endhighlight %} + +
    +

    Make navmenus accessible

    +

    Be sure to add a role="navigation" to every navmenu to help with accessibility.

    +
    + + + +

    Add either .navmenu-fixed-left or .navmenu-fixed-right.

    +
    + +
    +{% highlight html %} + +{% endhighlight %} + +
    +

    Body padding required

    +

    The fixed navmenu will overlay your other content, unless you add padding to the left or right of the <body>. Try out your own values or use our snippet below. Tip: By default, the navmenu is 300px wide.

    +{% highlight css %} +@media (min-width: 992px) { + body { + padding-left: 300px; + } +} +{% endhighlight %} +

    Make sure to include this after the Jasny Bootstrap CSS.

    +
    + + + +

    With the offcanvas plugin, you can hide the navmenu off canvas. This is especially useful for screens with a small viewport.

    +
    +
    + + +

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis in aliquet nisl. Praesent sed leo congue, fringilla eros eu, tempus metus. Nam mollis odio ipsum, non vehicula ipsum accumsan sodales. Morbi varius vitae elit euismod cursus. Donec a dapibus justo, in facilisis nisi. Suspendisse ut turpis dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque dui risus, tincidunt at odio ut, ultrices dignissim ipsum. Cras ultrices erat nec leo luctus varius. Nulla sollicitudin tincidunt nulla, ut porta mauris volutpat vitae. Suspendisse ornare dolor sit amet massa venenatis pulvinar.

    +
    +
    +{% highlight html %} + + +{% endhighlight %} + +
    +

    Examples

    +

    There is a full example for an off canvas push menu as well as examples for an off canvas navmenu with an slide in and reveal effect.

    +
    + + +

    Modify the look of the navmenu by adding .navmenu-inverse.

    +
    + +
    +{% highlight html %} + +{% endhighlight %} + +
    + + + +
    + + +

    Fixed to top / bottom

    +

    Add .alert-fixed-top top stick the alert on top of your page. Use .alert-fixed-bottom for the bottom.

    +
    +
    + Success! Your action has been completed succefully. +
    +
    +{% highlight html %} +
    + Success! Your action has been completed succefully. +
    +{% endhighlight %} + +
    diff --git a/docs/css.html b/docs/css.html new file mode 100644 index 00000000..77a5137d --- /dev/null +++ b/docs/css.html @@ -0,0 +1,52 @@ +--- +layout: default +title: CSS +slug: css +lead: "Global CSS settings, fundamental HTML elements styled and enhanced with extensible classes, and an advanced grid system." +base_url: "../" +--- + + + +
    + + +

    Containers

    +

    Added .container-smooth a container to use the same max-width for all viewport sizes. This means that the container size won't jump at media query breakpoints.

    +
    + + + +
    + + +
    +

    Labels

    +

    Give a button some extra style by adding a label. Add .btn-labeled to any button with a label.

    +
    + + + + +
    +{% highlight html %} + + + + + + + + + + + +{% endhighlight %} +
    +
    diff --git a/docs/customize.html b/docs/customize.html new file mode 100644 index 00000000..18e2c6bb --- /dev/null +++ b/docs/customize.html @@ -0,0 +1,164 @@ +--- +layout: default +title: Customize and download +slug: customize +lead: Customize Bootstrap's components, Less variables, and jQuery plugins to get your very own version. +base_url: "../" +--- + + +
    +
    + + +

    Choose which Less files to compile into your custom build of Jasny Bootstrap. Not sure which files to use? Read through the CSS and Components pages in the docs.

    + +
    +
    +

    Common CSS

    +
    + +
    +
    + +
    +
    + +
    +

    Components

    +
    + +
    +
    + +
    +
    + +
    +

    JavaScript components

    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + +
    +

    Twitter Bootstrap required

    +

    Jasny Bootstrap requires Twitter Bootstrap to be included.

    +
    +
    + + + +
    + + +

    Choose which jQuery plugins should be included in your custom JavaScript files. Unsure what to include? Read the JavaScript page in the docs.

    +
    +
    +

    Linked to components

    +
    + +
    +
    + +
    +
    + +
    +
    +
    +

    Magic

    +
    + +
    +
    +
    + +
    +

    Produces two files

    +

    All checked plugins will be compiled into a readable jasny-bootstrap.js and a minified jasny-bootstrap.min.js. We recommend you use the minified version in production.

    +
    + +
    +

    jQuery required

    +

    All plugins require the latest version of jQuery to be included.

    +
    +
    + + + +
    + + +

    Customize Less variables to define colors, sizes and more inside your custom CSS stylesheets.

    + {% include customizer-variables.html %} +
    + + + +
    + + +

    Hooray! Your custom version of Jasny Bootstrap is now ready to be compiled. Just click the button below to finish the process.

    +
    + +
    +
    +
    diff --git a/docs/dist/css/jasny-bootstrap.css.map b/docs/dist/css/jasny-bootstrap.css.map new file mode 100644 index 00000000..39d7a65c --- /dev/null +++ b/docs/dist/css/jasny-bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["less/grid-container-smooth.less","less/button-labels.less","less/mixins.less","less/nav-tab-alignment.less","less/navmenu.less","less/alerts-fixed.less","less/offcanvas.less","less/rowlink.less","less/fileinput.less"],"names":[],"mappings":"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","sourcesContent":["// Smooth sizing container\n// -------------------------\n\n@media (min-width: 1px) {\n .container-smooth {\n max-width: @container-lg;\n }\n}\n\n","// Labels for buttons\n// --------------------------------------------------\n\n.btn-labeled {\n padding-top: 0;\n padding-bottom: 0;\n}\n\n.btn-label {\n position: relative;\n background: transparent;\n background: rgba(0, 0, 0, 0.15);\n display: inline-block;\n .button-label-size(@padding-base-vertical; @padding-base-horizontal; @border-radius-base);\n}\n\n.btn-lg .btn-label {\n .button-label-size(@padding-large-vertical; @padding-large-horizontal; @border-radius-large);\n}\n.btn-sm .btn-label {\n .button-label-size(@padding-small-vertical; @padding-small-horizontal; @border-radius-small);\n}\n.btn-xs .btn-label {\n .button-label-size(1px; 5px; @border-radius-small);\n}\n","//\n// Mixins\n// --------------------------------------------------\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n\n// BUTTONS\n// --------------------------------------------------\n\n.button-label-size(@padding-vertical; @padding-horizontal; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n left: (-1 * @padding-horizontal);\n border-radius: (@border-radius - 1px) 0 0 (@border-radius - 1px);\n\n &.btn-label-right {\n left: auto;\n right: (-1 * @padding-horizontal);\n border-radius: 0 (@border-radius - 1px) (@border-radius - 1px) 0;\n }\n}\n","// Alignment options\n// -------------------------\n\n// bottom\n.nav-tabs-bottom {\n border-bottom: 0;\n border-top: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-top: -1px;\n\n > a {\n border-radius: 0 0 @border-radius-base @border-radius-base;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-top-color: transparent;\n }\n }\n}\n\n// left\n.nav-tabs-left {\n border-bottom: 0;\n border-right: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-right: -1px;\n float: none;\n\n > a {\n border-radius: @border-radius-base 0 0 @border-radius-base;\n margin-right: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-right-color: transparent;\n }\n }\n\n .row > & {\n padding-right: 0;\n padding-left: (@grid-gutter-width / 2);\n margin-right: -1px;\n position: relative;\n z-index: 1;\n\n & + .tab-content {\n border-left: 1px solid @nav-tabs-active-link-hover-border-color;\n }\n }\n}\n\n// right\n.nav-tabs-right {\n border-bottom: 0;\n border-left: 1px solid @nav-tabs-border-color;\n\n > li {\n margin-bottom: 0;\n margin-left: -1px;\n float: none;\n\n > a {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n margin-left: 0;\n margin-bottom: 2px;\n }\n\n > a:hover,\n > a:focus,\n &.active > a,\n &.active > a:hover,\n &.active > a:focus {\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-left-color: transparent;\n }\n }\n\n .row > & {\n padding-left: 0;\n padding-right: (@grid-gutter-width / 2);\n }\n}\n","//\n// Navmenu and offcanvas navbar\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navmenu from which we expand to create the fixed navmenu\n// variations.\n\n.navmenu,\n.navbar-offcanvas {\n width: @navmenu-width;\n height: 100%;\n border-width: 1px;\n border-style: solid;\n border-radius: @border-radius-base;\n}\n\n.navmenu-fixed-left,\n.navmenu-fixed-right,\n.navbar-offcanvas {\n position: fixed;\n z-index: @zindex-navmenu-fixed;\n top: 0;\n border-radius: 0;\n}\n.navmenu-fixed-left,\n.navbar-offcanvas {\n left: 0;\n border-width: 0 1px 0 0;\n}\n.navmenu-fixed-right {\n right: 0;\n border-width: 0 0 0 1px;\n}\n\n.navmenu-nav {\n margin-bottom: @navmenu-margin-vertical;\n\n &.dropdown-menu {\n position: static;\n margin: 0;\n padding-top: 0;\n float: none;\n border: none;\n .box-shadow(none);\n border-radius: 0;\n }\n}\n\n.navbar-offcanvas {\n .navbar-nav {\n margin: 0;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.offcanvas {\n position: static;\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n // Account for first and last children spacing\n .navbar-nav.navbar-left:first-child {\n margin-left: -@navbar-padding-horizontal;\n }\n .navbar-nav.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n\n .navmenu-brand {\n display: none;\n }\n }\n}\n\n// Brand/project name\n\n.navmenu-brand {\n display: block;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n }\n margin: @navmenu-margin-vertical 0;\n}\n\n// Alternate navmenus\n// --------------------------------------------------\n\n// Default navmenu\n.navmenu-default,\n.navbar-default .navbar-offcanvas {\n background-color: @navmenu-default-bg;\n border-color: @navmenu-default-border;\n\n .navmenu-brand {\n color: @navmenu-default-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-default-brand-hover-color;\n background-color: @navmenu-default-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-default-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-default-link-hover-color;\n border-bottom-color: @navmenu-default-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-default-link-active-bg;\n color: @navmenu-default-link-active-color;\n .caret {\n border-top-color: @navmenu-default-link-active-color;\n border-bottom-color: @navmenu-default-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-default-link-color;\n border-bottom-color: @navmenu-default-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-default-link-active-bg;\n & > .divider {\n background-color: @navmenu-default-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-default-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-default-link-color;\n &:hover,\n &:focus {\n color: @navmenu-default-link-hover-color;\n background-color: @navmenu-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-active-color;\n background-color: @navmenu-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-default-link-disabled-color;\n background-color: @navmenu-default-link-disabled-bg;\n }\n }\n }\n}\n\n// Inverse navmenu\n.navmenu-inverse,\n.navbar-inverse .navbar-offcanvas {\n background-color: @navmenu-inverse-bg;\n border-color: @navmenu-inverse-border;\n\n .navmenu-brand {\n color: @navmenu-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-brand-hover-color;\n background-color: @navmenu-inverse-brand-hover-bg;\n }\n }\n\n .navmenu-text {\n color: @navmenu-inverse-color;\n }\n\n .navmenu-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navmenu-inverse-link-hover-color;\n border-bottom-color: @navmenu-inverse-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navmenu-inverse-link-active-bg;\n color: @navmenu-inverse-link-active-color;\n .caret {\n border-top-color: @navmenu-inverse-link-active-color;\n border-bottom-color: @navmenu-inverse-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navmenu-inverse-link-color;\n border-bottom-color: @navmenu-inverse-link-color;\n }\n &.dropdown-menu {\n background-color: @navmenu-inverse-link-active-bg;\n & > .divider {\n background-color: @navmenu-inverse-bg;\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n background-color: darken(@navmenu-inverse-link-active-bg, 6.5%);\n }\n }\n }\n\n > li > a {\n color: @navmenu-inverse-link-color;\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-hover-color;\n background-color: @navmenu-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-active-color;\n background-color: @navmenu-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navmenu-inverse-link-disabled-color;\n background-color: @navmenu-inverse-link-disabled-bg;\n }\n }\n }\n}\n","// Fixed alerts\n//\n// Position to the top or bottom.\n\n.alert-fixed-top,\n.alert-fixed-bottom {\n position: fixed;\n width: 100%;\n z-index: @zindex-alert-fixed;\n border-radius: 0;\n margin: 0;\n left: 0;\n\n @media (min-width: @alert-fixed-width) {\n width: @alert-fixed-width;\n left: 50%;\n margin-left: (-1 * (@alert-fixed-width / 2));\n }\n}\n\n.alert-fixed-top {\n top: 0;\n border-width: 0 0 1px 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-bottom-radius(@alert-border-radius);\n border-width: 0 1px 1px 1px;\n }\n}\n\n.alert-fixed-bottom {\n bottom: 0;\n border-width: 1px 0 0 0;\n \n @media (min-width: @alert-fixed-width) {\n .border-top-radius(@alert-border-radius);\n border-width: 1px 1px 0 1px;\n }\n}\n","//\n// Off canvas navigation\n// --------------------------------------------------\n\n.offcanvas {\n display: none;\n &.in {\n display: block;\n }\n}\n\n@media (max-width: @screen-xs-max) {\n .offcanvas-xs {\n .offcanvas;\n }\n}\n@media (max-width: @screen-sm-max) {\n .offcanvas-sm {\n .offcanvas;\n }\n}\n@media (max-width: @screen-md-max) {\n .offcanvas-md {\n .offcanvas;\n }\n}\n.offcanvas-lg {\n .offcanvas;\n}\n\n.canvas-sliding {\n -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;\n}\n\n.offcanvas-clone {\n height: 0px !important;\n width: 0px !important;\n overflow: hidden !important;\n border: none !important;\n margin: 0px !important;\n padding: 0px !important;\n position: absolute !important;\n top: auto !important;\n left: auto !important;\n bottom: 0px !important;\n right: 0px !important;\n opacity: 0 !important;\n}\n","//\n// Rowlink\n// --------------------------------------------------\n\n.table.rowlink,\n.table .rowlink {\n td:not(.rowlink-skip) {\n cursor: pointer;\n\n a {\n color: inherit;\n font: inherit;\n text-decoration: inherit;\n }\n }\n}\n\n.table-hover.rowlink,\n.table-hover .rowlink {\n tr:hover td {\n background-color: darken(@table-bg-hover, 15%);\n }\n}\n","// Fileinput.less\n// CSS for file upload button and fileinput widget\n// ------------------------------------------------\n\n.btn-file {\n overflow: hidden;\n position: relative;\n vertical-align: middle;\n > input {\n position: absolute;\n top: 0;\n right: 0;\n margin: 0;\n opacity: 0;\n filter: alpha(opacity=0);\n transform: translate(-300px, 0) scale(4);\n font-size: 23px;\n height: 100%;\n direction: ltr;\n cursor: pointer;\n }\n}\n\n.fileinput {\n margin-bottom: 9px;\n display: inline-block;\n .form-control {\n padding-top: 7px;\n padding-bottom: 5px;\n display: inline-block;\n margin-bottom: 0px;\n vertical-align: middle;\n cursor: text;\n }\n .thumbnail {\n overflow: hidden;\n display: inline-block;\n margin-bottom: 5px;\n vertical-align: middle;\n text-align: center;\n > img {\n max-height: 100%;\n }\n }\n .btn {\n vertical-align: middle;\n }\n}\n.fileinput-exists .fileinput-new,\n.fileinput-new .fileinput-exists {\n display: none;\n}\n.fileinput-inline .fileinput-controls {\n display: inline;\n}\n\n.fileinput-filename {\n vertical-align: middle;\n display: inline-block;\n overflow: hidden;\n}\n.form-control .fileinput-filename {\n vertical-align: bottom;\n}\n\n// Not 100% correct, but helps in typical use case\n.fileinput-new .input-group .btn-file {\n border-radius: 0 @border-radius-base @border-radius-base 0;\n}\n.fileinput-new .input-group .btn-file.btn-xs,\n.fileinput-new .input-group .btn-file.btn-sm {\n border-radius: 0 @border-radius-small @border-radius-small 0;\n}\n.fileinput-new .input-group .btn-file.btn-lg {\n border-radius: 0 @border-radius-large @border-radius-large 0;\n}\n\n.form-group.has-warning .fileinput {\n .fileinput-preview {\n color: @state-warning-text;\n }\n .thumbnail {\n border-color: @state-warning-border;\n }\n}\n.form-group.has-error .fileinput {\n .fileinput-preview {\n color: @state-danger-text;\n }\n .thumbnail {\n border-color: @state-danger-border;\n }\n}\n.form-group.has-success .fileinput {\n .fileinput-preview {\n color: @state-success-text;\n }\n .thumbnail {\n border-color: @state-success-border;\n }\n}\n\n\n// Input group fixes\n\n.input-group-addon:not(:first-child) {\n border-left: 0;\n}\n"]} \ No newline at end of file diff --git a/docs/dist/css/jasny-bootstrap.min.css b/docs/dist/css/jasny-bootstrap.min.css new file mode 100644 index 00000000..58d244fa --- /dev/null +++ b/docs/dist/css/jasny-bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ + +@media (min-width:1px){.container-smooth{max-width:1170px}}.btn-labeled{padding-top:0;padding-bottom:0}.btn-label{position:relative;background:0 0;background:rgba(0,0,0,.15);display:inline-block;padding:6px 12px;left:-12px;border-radius:3px 0 0 3px}.btn-label.btn-label-right{left:auto;right:-12px;border-radius:0 3px 3px 0}.btn-lg .btn-label{padding:10px 16px;left:-16px;border-radius:5px 0 0 5px}.btn-lg .btn-label.btn-label-right{left:auto;right:-16px;border-radius:0 5px 5px 0}.btn-sm .btn-label{padding:5px 10px;left:-10px;border-radius:2px 0 0 2px}.btn-sm .btn-label.btn-label-right{left:auto;right:-10px;border-radius:0 2px 2px 0}.btn-xs .btn-label{padding:1px 5px;left:-5px;border-radius:2px 0 0 2px}.btn-xs .btn-label.btn-label-right{left:auto;right:-5px;border-radius:0 2px 2px 0}.nav-tabs-bottom{border-bottom:0;border-top:1px solid #ddd}.nav-tabs-bottom>li{margin-bottom:0;margin-top:-1px}.nav-tabs-bottom>li>a{border-radius:0 0 4px 4px}.nav-tabs-bottom>li>a:hover,.nav-tabs-bottom>li>a:focus,.nav-tabs-bottom>li.active>a,.nav-tabs-bottom>li.active>a:hover,.nav-tabs-bottom>li.active>a:focus{border:1px solid #ddd;border-top-color:transparent}.nav-tabs-left{border-bottom:0;border-right:1px solid #ddd}.nav-tabs-left>li{margin-bottom:0;margin-right:-1px;float:none}.nav-tabs-left>li>a{border-radius:4px 0 0 4px;margin-right:0;margin-bottom:2px}.nav-tabs-left>li>a:hover,.nav-tabs-left>li>a:focus,.nav-tabs-left>li.active>a,.nav-tabs-left>li.active>a:hover,.nav-tabs-left>li.active>a:focus{border:1px solid #ddd;border-right-color:transparent}.row>.nav-tabs-left{padding-right:0;padding-left:15px;margin-right:-1px;position:relative;z-index:1}.row>.nav-tabs-left+.tab-content{border-left:1px solid #ddd}.nav-tabs-right{border-bottom:0;border-left:1px solid #ddd}.nav-tabs-right>li{margin-bottom:0;margin-left:-1px;float:none}.nav-tabs-right>li>a{border-radius:0 4px 4px 0;margin-left:0;margin-bottom:2px}.nav-tabs-right>li>a:hover,.nav-tabs-right>li>a:focus,.nav-tabs-right>li.active>a,.nav-tabs-right>li.active>a:hover,.nav-tabs-right>li.active>a:focus{border:1px solid #ddd;border-left-color:transparent}.row>.nav-tabs-right{padding-left:0;padding-right:15px}.navmenu,.navbar-offcanvas{width:300px;height:100%;border-width:1px;border-style:solid;border-radius:4px}.navmenu-fixed-left,.navmenu-fixed-right,.navbar-offcanvas{position:fixed;z-index:1030;top:0;border-radius:0}.navmenu-fixed-left,.navbar-offcanvas{left:0;border-width:0 1px 0 0}.navmenu-fixed-right{right:0;border-width:0 0 0 1px}.navmenu-nav{margin-bottom:10px}.navmenu-nav.dropdown-menu{position:static;margin:0;padding-top:0;float:none;border:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0}.navbar-offcanvas .navbar-nav{margin:0}@media (min-width:768px){.navbar-offcanvas{width:auto;border-top:0;box-shadow:none}.navbar-offcanvas.offcanvas{position:static;display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-offcanvas .navbar-nav.navbar-left:first-child{margin-left:-15px}.navbar-offcanvas .navbar-nav.navbar-right:last-child{margin-right:-15px}.navbar-offcanvas .navmenu-brand{display:none}}.navmenu-brand{display:block;font-size:18px;line-height:20px;padding:10px 15px;margin:10px 0}.navmenu-brand:hover,.navmenu-brand:focus{text-decoration:none}.navmenu-default,.navbar-default .navbar-offcanvas{background-color:#f8f8f8;border-color:#e7e7e7}.navmenu-default .navmenu-brand,.navbar-default .navbar-offcanvas .navmenu-brand{color:#777}.navmenu-default .navmenu-brand:hover,.navbar-default .navbar-offcanvas .navmenu-brand:hover,.navmenu-default .navmenu-brand:focus,.navbar-default .navbar-offcanvas .navmenu-brand:focus{color:#5e5e5e;background-color:transparent}.navmenu-default .navmenu-text,.navbar-default .navbar-offcanvas .navmenu-text{color:#777}.navmenu-default .navmenu-nav>.dropdown>a:hover .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a:hover .caret,.navmenu-default .navmenu-nav>.dropdown>a:focus .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333}.navmenu-default .navmenu-nav>.open>a,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a,.navmenu-default .navmenu-nav>.open>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:hover,.navmenu-default .navmenu-nav>.open>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:focus{background-color:#e7e7e7;color:#555}.navmenu-default .navmenu-nav>.open>a .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a .caret,.navmenu-default .navmenu-nav>.open>a:hover .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:hover .caret,.navmenu-default .navmenu-nav>.open>a:focus .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.open>a:focus .caret{border-top-color:#555;border-bottom-color:#555}.navmenu-default .navmenu-nav>.dropdown>a .caret,.navbar-default .navbar-offcanvas .navmenu-nav>.dropdown>a .caret{border-top-color:#777;border-bottom-color:#777}.navmenu-default .navmenu-nav.dropdown-menu,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu{background-color:#e7e7e7}.navmenu-default .navmenu-nav.dropdown-menu>.divider,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.divider{background-color:#f8f8f8}.navmenu-default .navmenu-nav.dropdown-menu>.active>a,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a,.navmenu-default .navmenu-nav.dropdown-menu>.active>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:hover,.navmenu-default .navmenu-nav.dropdown-menu>.active>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:focus{background-color:#d7d7d7}.navmenu-default .navmenu-nav>li>a,.navbar-default .navbar-offcanvas .navmenu-nav>li>a{color:#777}.navmenu-default .navmenu-nav>li>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>li>a:hover,.navmenu-default .navmenu-nav>li>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>li>a:focus{color:#333;background-color:transparent}.navmenu-default .navmenu-nav>.active>a,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a,.navmenu-default .navmenu-nav>.active>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a:hover,.navmenu-default .navmenu-nav>.active>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navmenu-default .navmenu-nav>.disabled>a,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a,.navmenu-default .navmenu-nav>.disabled>a:hover,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a:hover,.navmenu-default .navmenu-nav>.disabled>a:focus,.navbar-default .navbar-offcanvas .navmenu-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navmenu-inverse,.navbar-inverse .navbar-offcanvas{background-color:#222;border-color:#080808}.navmenu-inverse .navmenu-brand,.navbar-inverse .navbar-offcanvas .navmenu-brand{color:#999}.navmenu-inverse .navmenu-brand:hover,.navbar-inverse .navbar-offcanvas .navmenu-brand:hover,.navmenu-inverse .navmenu-brand:focus,.navbar-inverse .navbar-offcanvas .navmenu-brand:focus{color:#fff;background-color:transparent}.navmenu-inverse .navmenu-text,.navbar-inverse .navbar-offcanvas .navmenu-text{color:#999}.navmenu-inverse .navmenu-nav>.dropdown>a:hover .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a:hover .caret,.navmenu-inverse .navmenu-nav>.dropdown>a:focus .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navmenu-inverse .navmenu-nav>.open>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a,.navmenu-inverse .navmenu-nav>.open>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:hover,.navmenu-inverse .navmenu-nav>.open>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:focus{background-color:#080808;color:#fff}.navmenu-inverse .navmenu-nav>.open>a .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a .caret,.navmenu-inverse .navmenu-nav>.open>a:hover .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:hover .caret,.navmenu-inverse .navmenu-nav>.open>a:focus .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.open>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff}.navmenu-inverse .navmenu-nav>.dropdown>a .caret,.navbar-inverse .navbar-offcanvas .navmenu-nav>.dropdown>a .caret{border-top-color:#999;border-bottom-color:#999}.navmenu-inverse .navmenu-nav.dropdown-menu,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu{background-color:#080808}.navmenu-inverse .navmenu-nav.dropdown-menu>.divider,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.divider{background-color:#222}.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a,.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:hover,.navmenu-inverse .navmenu-nav.dropdown-menu>.active>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav.dropdown-menu>.active>a:focus{background-color:#000}.navmenu-inverse .navmenu-nav>li>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a{color:#999}.navmenu-inverse .navmenu-nav>li>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a:hover,.navmenu-inverse .navmenu-nav>li>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>li>a:focus{color:#fff;background-color:transparent}.navmenu-inverse .navmenu-nav>.active>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a,.navmenu-inverse .navmenu-nav>.active>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a:hover,.navmenu-inverse .navmenu-nav>.active>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.active>a:focus{color:#fff;background-color:#080808}.navmenu-inverse .navmenu-nav>.disabled>a,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a,.navmenu-inverse .navmenu-nav>.disabled>a:hover,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a:hover,.navmenu-inverse .navmenu-nav>.disabled>a:focus,.navbar-inverse .navbar-offcanvas .navmenu-nav>.disabled>a:focus{color:#444;background-color:transparent}.alert-fixed-top,.alert-fixed-bottom{position:fixed;width:100%;z-index:1035;border-radius:0;margin:0;left:0}@media (min-width:992px){.alert-fixed-top,.alert-fixed-bottom{width:992px;left:50%;margin-left:-496px}}.alert-fixed-top{top:0;border-width:0 0 1px}@media (min-width:992px){.alert-fixed-top{border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-width:0 1px 1px}}.alert-fixed-bottom{bottom:0;border-width:1px 0 0}@media (min-width:992px){.alert-fixed-bottom{border-top-right-radius:4px;border-top-left-radius:4px;border-width:1px 1px 0}}.offcanvas{display:none}.offcanvas.in{display:block}@media (max-width:767px){.offcanvas-xs{display:none}.offcanvas-xs.in{display:block}}@media (max-width:991px){.offcanvas-sm{display:none}.offcanvas-sm.in{display:block}}@media (max-width:1199px){.offcanvas-md{display:none}.offcanvas-md.in{display:block}}.offcanvas-lg{display:none}.offcanvas-lg.in{display:block}.canvas-sliding{-webkit-transition:top .35s,left .35s,bottom .35s,right .35s;transition:top .35s,left .35s,bottom .35s,right .35s}.offcanvas-clone{height:0!important;width:0!important;overflow:hidden!important;border:0!important;margin:0!important;padding:0!important;position:absolute!important;top:auto!important;left:auto!important;bottom:0!important;right:0!important;opacity:0!important}.table.rowlink td:not(.rowlink-skip),.table .rowlink td:not(.rowlink-skip){cursor:pointer}.table.rowlink td:not(.rowlink-skip) a,.table .rowlink td:not(.rowlink-skip) a{color:inherit;font:inherit;text-decoration:inherit}.table-hover.rowlink tr:hover td,.table-hover .rowlink tr:hover td{background-color:#cfcfcf}.btn-file{overflow:hidden;position:relative;vertical-align:middle}.btn-file>input{position:absolute;top:0;right:0;margin:0;opacity:0;filter:alpha(opacity=0);transform:translate(-300px,0) scale(4);font-size:23px;height:100%;direction:ltr;cursor:pointer}.fileinput{margin-bottom:9px;display:inline-block}.fileinput .form-control{padding-top:7px;padding-bottom:5px;display:inline-block;margin-bottom:0;vertical-align:middle;cursor:text}.fileinput .thumbnail{overflow:hidden;display:inline-block;margin-bottom:5px;vertical-align:middle;text-align:center}.fileinput .thumbnail>img{max-height:100%}.fileinput .btn{vertical-align:middle}.fileinput-exists .fileinput-new,.fileinput-new .fileinput-exists{display:none}.fileinput-inline .fileinput-controls{display:inline}.fileinput-filename{vertical-align:middle;display:inline-block;overflow:hidden}.form-control .fileinput-filename{vertical-align:bottom}.fileinput-new .input-group .btn-file{border-radius:0 4px 4px 0}.fileinput-new .input-group .btn-file.btn-xs,.fileinput-new .input-group .btn-file.btn-sm{border-radius:0 3px 3px 0}.fileinput-new .input-group .btn-file.btn-lg{border-radius:0 6px 6px 0}.form-group.has-warning .fileinput .fileinput-preview{color:#8a6d3b}.form-group.has-warning .fileinput .thumbnail{border-color:#faebcc}.form-group.has-error .fileinput .fileinput-preview{color:#a94442}.form-group.has-error .fileinput .thumbnail{border-color:#ebccd1}.form-group.has-success .fileinput .fileinput-preview{color:#3c763d}.form-group.has-success .fileinput .thumbnail{border-color:#d6e9c6}.input-group-addon:not(:first-child){border-left:0} \ No newline at end of file diff --git a/docs/dist/js/jasny-bootstrap.min.js b/docs/dist/js/jasny-bootstrap.min.js new file mode 100644 index 00000000..05b3b053 --- /dev/null +++ b/docs/dist/js/jasny-bootstrap.min.js @@ -0,0 +1,6 @@ +/*! + * Jasny Bootstrap v3.1.0 (http://jasny.github.io/bootstrap) + * Copyright 2012-2014 Arnold Daniels + * Licensed under Apache-2.0 (https://github.com/jasny/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Jasny Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.state=null,this.options.recalc&&(this.calcClone(),a(window).on("resize",a.proxy(this.recalc,this))),this.options.autohide&&a(document).on("click",a.proxy(this.autohide,this)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0,placement:"left",autohide:!0,recalc:!0},b.prototype.offset=function(){switch(this.options.placement){case"left":case"right":return this.$element.outerWidth();case"top":case"bottom":return this.$element.outerHeight()}},b.prototype.calcPlacement=function(){function b(a,b){if("auto"===e.css(b))return a;if("auto"===e.css(a))return b;var c=parseInt(e.css(a),10),d=parseInt(e.css(b),10);return c>d?b:a}var c=a(window).width()/this.$element.width(),d=a(window).height()/this.$element.height();this.$element.hasClass("in")||this.$element.css("visiblity","hidden !important").addClass("in");var e=this.$element;this.options.placement=c>d?b("left","right"):b("top","bottom"),"hidden !important"===this.$element.css("visibility")&&this.$element.removeClass("in").css("visiblity","")},b.prototype.opposite=function(a){switch(a){case"top":return"bottom";case"left":return"right";case"bottom":return"top";case"right":return"left"}},b.prototype.getCanvasElements=function(){var b=this.options.canvas?a(this.options.canvas):this.$element,c=b.find("*").filter(function(){return"fixed"===a(this).css("position")}).not(this.options.exclude);return b.add(c)},b.prototype.slide=function(b,c,d){if(!a.support.transition){var e={};return e[this.options.placement]="+="+c,b.animate(e,350,d)}var f=this.options.placement,g=this.opposite(f);b.each(function(){"auto"!==a(this).css(f)&&a(this).css(f,(parseInt(a(this).css(f),10)||0)+c),"auto"!==a(this).css(g)&&a(this).css(g,(parseInt(a(this).css(g),10)||0)-c)}),this.$element.one(a.support.transition.end,d).emulateTransitionEnd(350)},b.prototype.disableScrolling=function(){var b=a("body").width(),c="padding-"+this.opposite(this.options.placement);if(void 0===a("body").data("offcanvas-style")&&a("body").data("offcanvas-style",a("body").attr("style")),a("body").css("overflow","hidden"),a("body").width()>b){var d=parseInt(a("body").css(c),10)+a("body").width()-b;setTimeout(function(){a("body").css(c,d)},1)}},b.prototype.show=function(){if(!this.state){var b=a.Event("show.bs.offcanvas");if(this.$element.trigger(b),!b.isDefaultPrevented()){"auto"===this.options.placement&&this.calcPlacement(),this.state="sliding";var c=this.getCanvasElements(),d=this.offset(),e=this.options.placement,f=this.opposite(e);c.addClass("canvas-sliding").each(function(){a(this).data("offcanvas-style",a(this).attr("style")||""),"static"===a(this).css("position")&&a(this).css("position","relative"),"auto"!==a(this).css(e)&&"0px"!==a(this).css(e)||"auto"!==a(this).css(f)&&"0px"!==a(this).css(f)||a(this).css(e,0)}),-1!==c.index(this.$element)&&this.$element.css(e,-1*d),this.disableScrolling();var g=function(){this.state="slid",c.removeClass("canvas-sliding").addClass("canvas-slid"),this.$element.trigger("shown.bs.offcanvas")};setTimeout(a.proxy(function(){this.$element.addClass("in"),this.slide(c,d,a.proxy(g,this))},this),1)}}},b.prototype.hide=function(){if("slid"===this.state){var b=a.Event("hide.bs.offcanvas");if(this.$element.trigger(b),!b.isDefaultPrevented()){this.state="sliding";var c=a(".canvas-slid"),d=-1*this.offset(),e=function(){this.state=null,this.$element.removeClass("in"),c.removeClass("canvas-sliding"),c.add("body").each(function(){a(this).attr("style",a(this).data("offcanvas-style")).removeData("offcanvas-style")}),this.$element.trigger("hidden.bs.offcanvas")};c.removeClass("canvas-slid").addClass("canvas-sliding"),setTimeout(a.proxy(function(){this.slide(c,d,a.proxy(e,this))},this),1)}}},b.prototype.toggle=function(){"sliding"!==this.state&&this["slid"===this.state?"hide":"show"]()},b.prototype.calcClone=function(){this.$calcClone=this.$element.clone().html("").addClass("offcanvas-clone").removeClass("in").appendTo(a("body"))},b.prototype.recalc=function(){if("slid"===this.state()&&"none"!==this.$calcClone.css("display")){var b=-1*this.offset(),c=this.options.placement;this.getCanvasElements().each(function(){a(this).css(c,(parseInt(a(this).css(c),10)||0)+b)}).removeClass("canvas-slid"),a("body").css("overflow",""),this.$element.css(c,"").removeClass("in canvas-slid")}},b.prototype.autohide=function(b){0===a(b.target).closest(this.$element).length&&this.hide()};var c=a.fn.offcanvas;a.fn.offcanvas=function(c){return this.each(function(){var d=a(this),e=d.data("bs.offcanvas"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.offcanvas",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.offcanvas.Constructor=b,a.fn.offcanvas.noConflict=function(){return a.fn.offcanvas=c,this},a(document).on("click.bs.offcanvas.data-api","[data-toggle=offcanvas]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.offcanvas"),h=g?"toggle":d.data();b.stopPropagation(),g?g.toggle():f.offcanvas(h)})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.$element.on("click.bs.rowlink","td:not(.rowlink-skip)",a.proxy(this.click,this))};b.DEFAULTS={target:"a"},b.prototype.click=function(b){var c=a(b.currentTarget).closest("tr").find(this.options.target)[0];if(a(b.target)[0]!==c)if(b.preventDefault(),c.click)c.click();else if(document.createEvent){var d=document.createEvent("MouseEvents");d.initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null),c.dispatchEvent(d)}};var c=a.fn.rowlink;a.fn.rowlink=function(c){return this.each(function(){var d=a(this),e=d.data("rowlink");e||d.data("rowlink",e=new b(this,c))})},a.fn.rowlink.Constructor=b,a.fn.rowlink.noConflict=function(){return a.fn.rowlink=c,this},a(document).on("click.bs.rowlink.data-api",'[data-link="row"]',function(b){var c=a(this);c.data("rowlink")||(c.rowlink(c.data()),a(b.target).trigger("click.bs.rowlink"))})}(window.jQuery),+function(a){"use strict";var b=void 0!==window.orientation,c=navigator.userAgent.toLowerCase().indexOf("android")>-1,d="Microsoft Internet Explorer"==window.navigator.appName,e=function(b,d){c||(this.$element=a(b),this.options=a.extend({},e.DEFAULS,d),this.mask=String(this.options.mask),this.init(),this.listen(),this.checkVal())};e.DEFAULS={mask:"",placeholder:"_",definitions:{9:"[0-9]",a:"[A-Za-z]","?":"[A-Za-z0-9]","*":"."}},e.prototype.init=function(){var b=this.options.definitions,c=this.mask.length;this.tests=[],this.partialPosition=this.mask.length,this.firstNonMaskPos=null,a.each(this.mask.split(""),a.proxy(function(a,d){"?"==d?(c--,this.partialPosition=a):b[d]?(this.tests.push(new RegExp(b[d])),null===this.firstNonMaskPos&&(this.firstNonMaskPos=this.tests.length-1)):this.tests.push(null)},this)),this.buffer=a.map(this.mask.split(""),a.proxy(function(a){return"?"!=a?b[a]?this.options.placeholder:a:void 0},this)),this.focusText=this.$element.val(),this.$element.data("rawMaskFn",a.proxy(function(){return a.map(this.buffer,function(a,b){return this.tests[b]&&a!=this.options.placeholder?a:null}).join("")},this))},e.prototype.listen=function(){if(!this.$element.attr("readonly")){var b=(d?"paste":"input")+".mask";this.$element.on("unmask.bs.inputmask",a.proxy(this.unmask,this)).on("focus.bs.inputmask",a.proxy(this.focusEvent,this)).on("blur.bs.inputmask",a.proxy(this.blurEvent,this)).on("keydown.bs.inputmask",a.proxy(this.keydownEvent,this)).on("keypress.bs.inputmask",a.proxy(this.keypressEvent,this)).on(b,a.proxy(this.pasteEvent,this))}},e.prototype.caret=function(a,b){if(0!==this.$element.length){if("number"==typeof a)return b="number"==typeof b?b:a,this.$element.each(function(){if(this.setSelectionRange)this.setSelectionRange(a,b);else if(this.createTextRange){var c=this.createTextRange();c.collapse(!0),c.moveEnd("character",b),c.moveStart("character",a),c.select()}});if(this.$element[0].setSelectionRange)a=this.$element[0].selectionStart,b=this.$element[0].selectionEnd;else if(document.selection&&document.selection.createRange){var c=document.selection.createRange();a=0-c.duplicate().moveStart("character",-1e5),b=a+c.text.length}return{begin:a,end:b}}},e.prototype.seekNext=function(a){for(var b=this.mask.length;++a<=b&&!this.tests[a];);return a},e.prototype.seekPrev=function(a){for(;--a>=0&&!this.tests[a];);return a},e.prototype.shiftL=function(a,b){var c=this.mask.length;if(!(0>a)){for(var d=a,e=this.seekNext(b);c>d;d++)if(this.tests[d]){if(!(c>e&&this.tests[d].test(this.buffer[e])))break;this.buffer[d]=this.buffer[e],this.buffer[e]=this.options.placeholder,e=this.seekNext(e)}this.writeBuffer(),this.caret(Math.max(this.firstNonMaskPos,a))}},e.prototype.shiftR=function(a){for(var b=this.mask.length,c=a,d=this.options.placeholder;b>c;c++)if(this.tests[c]){var e=this.seekNext(c),f=this.buffer[c];if(this.buffer[c]=d,!(b>e&&this.tests[e].test(f)))break;d=f}},e.prototype.unmask=function(){this.$element.unbind(".mask").removeData("inputmask")},e.prototype.focusEvent=function(){this.focusText=this.$element.val();var a=this.mask.length,b=this.checkVal();this.writeBuffer();var c=this,d=function(){b==a?c.caret(0,b):c.caret(b)};d(),setTimeout(d,50)},e.prototype.blurEvent=function(){this.checkVal(),this.$element.val()!==this.focusText&&this.$element.trigger("change")},e.prototype.keydownEvent=function(a){var c=a.which;if(8==c||46==c||b&&127==c){var d=this.caret(),e=d.begin,f=d.end;return f-e===0&&(e=46!=c?this.seekPrev(e):f=this.seekNext(e-1),f=46==c?this.seekNext(f):f),this.clearBuffer(e,f),this.shiftL(e,f-1),!1}return 27==c?(this.$element.val(this.focusText),this.caret(0,this.checkVal()),!1):void 0},e.prototype.keypressEvent=function(a){var b=this.mask.length,c=a.which,d=this.caret();if(a.ctrlKey||a.altKey||a.metaKey||32>c)return!0;if(c){d.end-d.begin!==0&&(this.clearBuffer(d.begin,d.end),this.shiftL(d.begin,d.end-1));var e=this.seekNext(d.begin-1);if(b>e){var f=String.fromCharCode(c);if(this.tests[e].test(f)){this.shiftR(e),this.buffer[e]=f,this.writeBuffer();var g=this.seekNext(e);this.caret(g)}}return!1}},e.prototype.pasteEvent=function(){var a=this;setTimeout(function(){a.caret(a.checkVal(!0))},0)},e.prototype.clearBuffer=function(a,b){for(var c=this.mask.length,d=a;b>d&&c>d;d++)this.tests[d]&&(this.buffer[d]=this.options.placeholder)},e.prototype.writeBuffer=function(){return this.$element.val(this.buffer.join("")).val()},e.prototype.checkVal=function(a){for(var b=this.mask.length,c=this.$element.val(),d=-1,e=0,f=0;b>e;e++)if(this.tests[e]){for(this.buffer[e]=this.options.placeholder;f++c.length)break}else this.buffer[e]==c.charAt(f)&&e!=this.partialPosition&&(f++,d=e);return!a&&d+1=this.partialPosition)&&(this.writeBuffer(),a||this.$element.val(this.$element.val().substring(0,d+1))),this.partialPosition?e:this.firstNonMaskPos};var f=a.fn.inputmask;a.fn.inputmask=function(b){return this.each(function(){var c=a(this),d=c.data("inputmask");d||c.data("inputmask",d=new e(this,b))})},a.fn.inputmask.Constructor=e,a.fn.inputmask.noConflict=function(){return a.fn.inputmask=f,this},a(document).on("focus.bs.inputmask.data-api","[data-mask]",function(){var b=a(this);b.data("inputmask")||b.inputmask(b.data())})}(window.jQuery),+function(a){"use strict";var b="Microsoft Internet Explorer"==window.navigator.appName,c=function(b,c){if(this.$element=a(b),this.$input=this.$element.find(":file"),0!==this.$input.length){this.name=this.$input.attr("name")||c.name,this.$hidden=this.$element.find('input[type=hidden][name="'+this.name+'"]'),0===this.$hidden.length&&(this.$hidden=a(''),this.$element.prepend(this.$hidden)),this.$preview=this.$element.find(".fileinput-preview");var d=this.$preview.css("height");"inline"!=this.$preview.css("display")&&"0px"!=d&&"none"!=d&&this.$preview.css("line-height",d),this.original={exists:this.$element.hasClass("fileinput-exists"),preview:this.$preview.html(),hiddenVal:this.$hidden.val()},this.listen()}};c.prototype.listen=function(){this.$input.on("change.bs.fileinput",a.proxy(this.change,this)),a(this.$input[0].form).on("reset.bs.fileinput",a.proxy(this.reset,this)),this.$element.find('[data-trigger="fileinput"]').on("click.bs.fileinput",a.proxy(this.trigger,this)),this.$element.find('[data-dismiss="fileinput"]').on("click.bs.fileinput",a.proxy(this.clear,this))},c.prototype.change=function(b){if(void 0===b.target.files&&(b.target.files=b.target&&b.target.value?[{name:b.target.value.replace(/^.+\\/,"")}]:[]),0!==b.target.files.length){this.$hidden.val(""),this.$hidden.attr("name",""),this.$input.attr("name",this.name);var c=b.target.files[0];if(this.$preview.length>0&&("undefined"!=typeof c.type?c.type.match("image.*"):c.name.match(/\.(gif|png|jpe?g)$/i))&&"undefined"!=typeof FileReader){var d=new FileReader,e=this.$preview,f=this.$element;d.onload=function(d){var g=a("");g[0].src=d.target.result,b.target.files[0].result=d.target.result,f.find(".fileinput-filename").text(c.name),"none"!=e.css("max-height")&&g.css("max-height",parseInt(e.css("max-height"),10)-parseInt(e.css("padding-top"),10)-parseInt(e.css("padding-bottom"),10)-parseInt(e.css("border-top"),10)-parseInt(e.css("border-bottom"),10)),e.html(g),f.addClass("fileinput-exists").removeClass("fileinput-new"),f.trigger("change.bs.fileinput",b.target.files)},d.readAsDataURL(c)}else this.$element.find(".fileinput-filename").text(c.name),this.$preview.text(c.name),this.$element.addClass("fileinput-exists").removeClass("fileinput-new"),this.$element.trigger("change.bs.fileinput")}},c.prototype.clear=function(a){if(a&&a.preventDefault(),this.$hidden.val(""),this.$hidden.attr("name",this.name),this.$input.attr("name",""),b){var c=this.$input.clone(!0);this.$input.after(c),this.$input.remove(),this.$input=c}else this.$input.val("");this.$preview.html(""),this.$element.find(".fileinput-filename").text(""),this.$element.addClass("fileinput-new").removeClass("fileinput-exists"),a!==!1&&(this.$input.trigger("change"),this.$element.trigger("clear.bs.fileinput"))},c.prototype.reset=function(){this.clear(!1),this.$hidden.val(this.original.hiddenVal),this.$preview.html(this.original.preview),this.$element.find(".fileinput-filename").text(""),this.original.exists?this.$element.addClass("fileinput-exists").removeClass("fileinput-new"):this.$element.addClass("fileinput-new").removeClass("fileinput-exists"),this.$element.trigger("reset.bs.fileinput")},c.prototype.trigger=function(a){this.$input.trigger("click"),a.preventDefault()};var d=a.fn.fileinput;a.fn.fileinput=function(b){return this.each(function(){var d=a(this),e=d.data("fileinput");e||d.data("fileinput",e=new c(this,b)),"string"==typeof b&&e[b]()})},a.fn.fileinput.Constructor=c,a.fn.fileinput.noConflict=function(){return a.fn.fileinput=d,this},a(document).on("click.fileinput.data-api",'[data-provides="fileinput"]',function(b){var c=a(this);if(!c.data("fileinput")){c.fileinput(c.data());var d=a(b.target).closest('[data-dismiss="fileinput"],[data-trigger="fileinput"]');d.length>0&&(b.preventDefault(),d.trigger("click.bs.fileinput"))}})}(window.jQuery); \ No newline at end of file diff --git a/docs/examples/navbar-offcanvas/index.html b/docs/examples/navbar-offcanvas/index.html new file mode 100644 index 00000000..2d29df94 --- /dev/null +++ b/docs/examples/navbar-offcanvas/index.html @@ -0,0 +1,81 @@ + + + + + + + + + + + Navbar Template for Bootstrap + + + + + + + + + + + + + + + + + +
    + + + + + +
    +

    Offcanvas Navbar example

    +

    This example demonstrates using the offcanvas plugin with the navbar.

    +
    +
    + + + + + + + + + diff --git a/docs/examples/navbar-offcanvas/navbar-offcanvas.css b/docs/examples/navbar-offcanvas/navbar-offcanvas.css new file mode 100644 index 00000000..6789c67e --- /dev/null +++ b/docs/examples/navbar-offcanvas/navbar-offcanvas.css @@ -0,0 +1,10 @@ +body { + padding-top: 80px; + padding-bottom: 20px; +} + +@media (min-width: 992px) { + .navbar { + padding-right: 15px; + } +} diff --git a/docs/examples/navmenu-push/index.html b/docs/examples/navmenu-push/index.html new file mode 100644 index 00000000..5a79695e --- /dev/null +++ b/docs/examples/navmenu-push/index.html @@ -0,0 +1,80 @@ + + + + + + + + + + Off Canvas Push Menu Template for Bootstrap + + + + + + + + + + + + + + + + + + + + +
    + +

    This example demonstrates the use of the offcanvas plugin with a push effect.

    +

    You get the push effect by setting the canvas option to 'body'.

    +

    Also take a look at the example for a navmenu with slide in effect and reveal effect.

    +
    + + + + + + + + diff --git a/docs/examples/navmenu-push/navmenu-push.css b/docs/examples/navmenu-push/navmenu-push.css new file mode 100644 index 00000000..d9336c87 --- /dev/null +++ b/docs/examples/navmenu-push/navmenu-push.css @@ -0,0 +1,29 @@ +html, body { + height: 100%; +} + +body { + padding: 50px 0 0 0; +} + +.navbar-toggle { + float: left; + margin-left: 15px; +} + +@media (min-width: 0) { + .navbar-toggle { + display: block; /* force showing the toggle */ + } +} + +@media (min-width: 992px) { + body { + padding: 0; + } + .navbar { + right: auto; + background: none; + border: none; + } +} diff --git a/docs/examples/navmenu-reveal/index.html b/docs/examples/navmenu-reveal/index.html new file mode 100644 index 00000000..1e788db5 --- /dev/null +++ b/docs/examples/navmenu-reveal/index.html @@ -0,0 +1,85 @@ + + + + + + + + + + Off Canvas Reveal Menu Template for Bootstrap + + + + + + + + + + + + + + + + + + +
    + + +
    + +

    This example demonstrates the use of the offcanvas plugin with a reveal effect.

    +

    On the contrary of the push effect, the menu doesn't move with the canvas.

    +

    You get the reveal effect by wrapping the content in a div and setting the canvas option to target that div.

    +

    Note that in this example, the navmenu doesn't have the .offcanvas class, but is placed under the canvas by setting the z-index.

    +

    Also take a look at the examples for a navmenu with slide in effect and push effect.

    +
    +
    + + + + + + + + + diff --git a/docs/examples/navmenu-reveal/navmenu-reveal.css b/docs/examples/navmenu-reveal/navmenu-reveal.css new file mode 100644 index 00000000..d17f6f63 --- /dev/null +++ b/docs/examples/navmenu-reveal/navmenu-reveal.css @@ -0,0 +1,41 @@ +html, body { + height: 100%; +} + +.navbar-toggle { + float: left; + margin-left: 15px; +} + +.navmenu { + z-index: 1; +} + +.canvas { + position: relative; + left: 0; + z-index: 2; + min-height: 100%; + padding: 50px 0 0 0; + background: #fff; +} + +@media (min-width: 0) { + .navbar-toggle { + display: block; /* force showing the toggle */ + } +} + +@media (min-width: 992px) { + body { + padding: 0; + } + .navbar { + right: auto; + background: none; + border: none; + } + .canvas { + padding: 0; + } +} diff --git a/docs/examples/navmenu/index.html b/docs/examples/navmenu/index.html new file mode 100644 index 00000000..6135fd6c --- /dev/null +++ b/docs/examples/navmenu/index.html @@ -0,0 +1,81 @@ + + + + + + + + + + Navmenu Template for Bootstrap + + + + + + + + + + + + + + + + + + + + +
    + +

    This example shows the navmenu element. If the viewport is less than 992px the menu will be placed the off canvas and will be shown with a slide in effect.

    +

    Also take a look at the examples for a navmenu with push effect and reveal effect.

    +
    + + + + + + + + + diff --git a/docs/examples/navmenu/navmenu.css b/docs/examples/navmenu/navmenu.css new file mode 100644 index 00000000..591d520c --- /dev/null +++ b/docs/examples/navmenu/navmenu.css @@ -0,0 +1,46 @@ +html, body { + height: 100%; +} +body { + padding: 50px 0 0 0; +} + +.navmenu { + padding-top: 50px; +} + +.navbar { + display: block; + text-align: center; +} +.navbar-brand { + display: inline-block; + float: none; +} +.navbar-toggle { + position: absolute; + float: left; + margin-left: 15px; +} + +.container { + max-width: 100%; +} + +@media (min-width: 1px) { + .navbar-toggle { + display: block !important; + } +} + +@media (min-width: 992px) { + body { + padding: 0 0 0 300px; + } + .navmenu { + padding-top: 0; + } + .navbar { + display: none !important; /* IE8 fix */ + } +} diff --git a/docs/examples/screenshots/navbar-offcanvas.jpg b/docs/examples/screenshots/navbar-offcanvas.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16a03b0bc9595003b19c96992c99ff76767278fb GIT binary patch literal 38093 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 I4xHWu049_jX#fBK literal 0 HcmV?d00001 diff --git a/docs/examples/screenshots/starter-template.jpg b/docs/examples/screenshots/starter-template.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2545aa32fdfa86b8c63f7ad21b96c25e9c395cba GIT binary patch literal 22620 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 literal 0 HcmV?d00001 diff --git a/docs/examples/starter-template/index.html b/docs/examples/starter-template/index.html new file mode 100644 index 00000000..075425aa --- /dev/null +++ b/docs/examples/starter-template/index.html @@ -0,0 +1,69 @@ + + + + + + + + + + + Starter Template for Bootstrap + + + + + + + + + + + + + + + + + + + +
    + +
    +

    Bootstrap starter template

    +

    Use this document as a way to quickly start any new project.
    All you get is this text and a mostly barebones HTML document.

    +
    + +
    + + + + + + + + + diff --git a/docs/examples/starter-template/starter-template.css b/docs/examples/starter-template/starter-template.css new file mode 100644 index 00000000..864c2456 --- /dev/null +++ b/docs/examples/starter-template/starter-template.css @@ -0,0 +1,9 @@ +body +{ + padding-top: 50px; +} +.starter-template +{ + padding: 40px 15px; + text-align: center; +} diff --git a/docs/getting-started.html b/docs/getting-started.html new file mode 100644 index 00000000..6df13421 --- /dev/null +++ b/docs/getting-started.html @@ -0,0 +1,313 @@ +--- +layout: default +title: Getting started +slug: getting-started +lead: "An overview of Jasny Bootstrap, how to download and use, basic templates and examples, and more." +base_url: "../" +--- + + +
    + +

    Jasny Bootstrap is an extension to Twitter Bootstrap, adding a number of features and components.

    +

    The aim of Jasny Bootstrap is to provide all the required features for building highly interactive web applications for desktop and mobile.

    + +
    +

    Delivered as extension only

    +

    As of version 3.1.0 Jasny Bootstrap is no longer bundeled with Twitter Bootstrap. You should load Twitter Bootstrap's CSS before this extension.

    +
    +
    + + +
    + +

    Jasny Bootstrap has a few easy ways to quickly get started, each one appealing to a different skill level and use case. Read through to see what suits your particular needs.

    + +

    Compiled CSS and JS

    +

    The fastest way to get Jasny Bootstrap is to download the compiled and minified versions of our CSS and JavaScript. No documentation or original source files are included.

    +

    Download Jasny Bootstrap

    + +

    Additional downloads

    +
    +

    + Download source code +

    +

    Get the latest Jasny Bootstrap LESS and JavaScript source code by downloading it directly from GitHub.

    +

    + Clone or fork via GitHub +

    +

    Visit us on GitHub to clone or fork the Jasny Bootstrap project.

    +

    + Install with Bower +

    +

    Install and manage the original files for all CSS and JavaScript, along with a local copy of the docs, using Bower.

    + {% highlight bash %}$ bower install jasny-bootstrap{% endhighlight %} +
    + +

    Jasny Bootstrap @ cdnjs

    +

    CDNJS is a community driven CDN hosted by CloudFlare, supporting over a hundred projects. To use this CDN, swap your local instances for the CDN links listed below.

    +{% highlight html %} + + + + + +{% endhighlight %} + +
    +

    Compiling Jasny Bootstrap's LESS files

    +

    If you work with Jasny Bootstrap's uncompiled source code, you need to compile the LESS files to produce usable CSS files. For compiling LESS files into CSS, we only officially support Recess, which is Twitter's CSS hinter based on less.js.

    +
    +
    + + + +
    + +

    Within the download you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.

    +

    Once downloaded, unzip the compressed folder to see the structure of (the compiled) Jasny Bootstrap. You'll see something like this:

    + + +{% highlight bash %} +jasny-bootstrap/ +├── css/ +│ ├── jasny-bootstrap.css +│ ├── jasny-bootstrap.min.css +└── js/ + ├── jasny-bootstrap.js + └── jasny-bootstrap.min.js + +{% endhighlight %} + +

    This is the most basic form of Jasny Bootstrap. We provide compiled CSS and JS (jasny-bootstrap.*), as well as compiled and minified CSS and JS (jasny-bootstrap.min.*).

    + +

    The jasny-bootstrap.* files should be loaded in conjunction with the original Twitter Bootstrap files.

    + +
    +

    jQuery required

    +

    Please note that all JavaScript plugins require jQuery to be included, as shown in the starter template. Consult our bower.json to see which versions of jQuery are supported.

    +
    +
    + + + +
    + +

    Start with this basic HTML template, or modify these examples. We hope you'll customize our templates and examples, adapting them to suit your needs.

    + +

    Copy the HTML below to begin working with a minimal Bootstrap document.

    +{% highlight html %} + + + + Bootstrap 101 Template + + + + + + + + + + +

    Hello, world!

    + + + + + + + + +{% endhighlight %} +
    + + + +
    + +

    Create diverse and advanced user interfaces using Jasny's Bootstrap components. See also Customizing Bootstrap for tips on maintaining your own Bootstrap variants.

    + +
    +
    + + + +

    Starter template

    +

    Nothing but the basics: compiled CSS and JavaScript along with a container.

    +
    +
    + + + +

    Navmenu

    +

    A basic template showing the navmenu element and demonstrates usage of the offcanvas plugin.

    +
    +
    +
    + + + +

    Off Canvas Push Menu

    +

    A template demonstrating a push effect for the off canvas navmenu.

    +
    +
    +
    + + + +

    Off Canvas Reveal Menu

    +

    A template demonstrating a reveal effect by placing the navmenu under the content.

    +
    +
    + + + +

    Off canvas navbar

    +

    A template using offcanvas for mobile view of the navbar.

    +
    +
    +
    + + + +
    + +

    Folks looking to upgrade to v3 should use this section as a general upgrade guide. We've outlined some of the major changes and provided tables that highlight key changes.

    + +

    Major class changes

    +

    This table shows the style changes between v2.x and v3.0.

    +
    + + + + + + + + + + + + + + + + + +
    Bootstrap 2.xBootstrap 3.0
    .container-semifluid.container-smooth
    .fileupload .fileupload-*.fileinput .fileinput-*
    +
    + +

    What's new

    +

    We've added new elements and changed some existing ones. Here are the new or updated styles.

    +
    + + + + + + + + + + + + + + + + + + + + + +
    ElementDescription
    Navmenu.navmenu .navmenu-default .navmenu .navmenu-inverse .navmenu-fixed-left .navmenu-fixed-right .navmenu-brand .navmenu-nav
    Fixed alerts.alert-fixed-top .alert-fixed-bottom
    Off canvas.offcanvas .offcanvas-*
    +
    + + +

    What's removed

    +

    The following elements have been dropped or changed in v3.0.

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ElementRemoved from 2.x3.0 Equivalent
    Header actions.header-actionsN/A
    Table actions.table-actionsN/A
    Desktop rows.row-desktop.row > .col-md-*
    Action links.act-*N/A
    Page alerts.pagealert.alert-fixed-top
    Iconic icons.iconic-*N/A
    Editor textarea.editorN/A
    +
    + + +

    Additional notes

    +

    Other changes in v3.0 are not immediately apparent. Base classes, key styles, and behaviors have been adjusted for flexibility and our mobile first approach. Here's a partial list:

    +
      +
    • The fileupload plugin has been renamed to fileinput. File upload was poorly chosen, since the plugin allows the creation of a styled file input element. It has nothing to do with how the file is uploaded.
    • +
    • Tab alignments are still supported in this fork (while dropped in Twitter Bootstrap).
    • +
    • Typeahead has been dropped, in favor of using Selectize.js.
    • +
    • Iconic icons are still available from P.J. Onori.
    • +
    +

    For more information on upgrading to v3.0, and code snippets from the community, see Bootply.

    +
    diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000..f26077c0 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,15 @@ +--- +layout: home +title: Jasny Bootstrap +--- + +
    +
    +

    {{ page.title }}

    +

    The missing components for you favorite front-end framework.

    +

    + Download + or Download source +

    +
    +
    diff --git a/docs/jade/customizer-nav.jade b/docs/jade/customizer-nav.jade new file mode 100644 index 00000000..c4f6ddf1 --- /dev/null +++ b/docs/jade/customizer-nav.jade @@ -0,0 +1,15 @@ +// NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-nav.jade template. +li + a(href='#less') Less components +li + a(href='#plugins') jQuery plugins +li + a(href='#less-variables') Less variables + ul.nav + each section in sections + if section.customizable + li + a(href='#'+section.id)= section.heading +li + a(href='#download') Download +// NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-nav.jade template. diff --git a/docs/jade/customizer-variables.jade b/docs/jade/customizer-variables.jade new file mode 100644 index 00000000..3c74573b --- /dev/null +++ b/docs/jade/customizer-variables.jade @@ -0,0 +1,21 @@ +// NOTE: DO NOT EDIT THE FOLLOWING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-variables.jade template. +each section in sections + if section.customizable + h2(id=section.id)= section.heading + if section.docstring + p!= section.docstring.html + each subsection in section.subsections + if subsection.heading + h3(id=subsection.id)= subsection.heading + div.row + each variable in subsection.variables + div.bs-customizer-input + label(for="input-" + variable.name)= variable.name + input.form-control( + id="input-" + variable.name + type="text" + value=variable.defaultValue + data-var=variable.name) + if variable.docstring + p.help-block!= variable.docstring.html +// NOTE: DO NOT EDIT THE PRECEDING SECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customizer-variables.jade template. diff --git a/docs/javascript.html b/docs/javascript.html new file mode 100644 index 00000000..302087a5 --- /dev/null +++ b/docs/javascript.html @@ -0,0 +1,572 @@ +--- +layout: default +title: JavaScript +slug: js +lead: "Bring Bootstrap's components to life with over a dozen custom jQuery plugins. Easily include them all, or one by one." +base_url: "../" +--- + + + +
    + + +

    Individual or compiled

    +

    Plugins can be included individually (using Jasny Bootstrap's individual *.js files), or all at once (using jasny-bootstrap.js or the minified jasn-bootstrap.min.js).

    +

    The Jasny Bootstrap plugins work with or without loading Twitter Bootstrap's bootstrap.js.

    + +
    +

    Do not attempt to include both.

    +

    Both jasny-bootstrap.js and jasny-bootstrap.min.js contain all plugins in a single file.

    +
    + +

    Data attributes

    +

    You can use all Jasny Bootstrap plugins purely through the markup API without writing a single line of JavaScript. This is Bootstrap's first-class API and should be your first consideration when using a plugin.

    + +

    That said, in some situations it may be desirable to turn this functionality off. Therefore, we also provide the ability to disable the data attribute API by unbinding all events on the document namespaced with data-api. This looks like this: +{% highlight js %} +$(document).off('.data-api') +{% endhighlight %} + +

    Alternatively, to target a specific plugin, just include the plugin's name as a namespace along with the data-api namespace like this:

    +{% highlight js %} +$(document).off('.alert.data-api') +{% endhighlight %} + +

    Programmatic API

    +

    We also believe you should be able to use all Bootstrap plugins purely through the JavaScript API. All public APIs are single, chainable methods, and return the collection acted upon.

    +{% highlight js %} +$(".fileinput").fileinput().addClass("fat") +{% endhighlight %} + +

    All methods should accept an optional options object, a string which targets a particular method, or nothing (which initiates a plugin with default behavior):

    +{% highlight js %} +$("#myMenu").offcanvas() // initialized with defaults +$("#myMenu").offcanvas({ autohide: false }) // initialized with no autohide +$("#myMenu").offcanvas('show') // initializes and invokes show immediately

    +{% endhighlight %} + +

    Each plugin also exposes its raw constructor on a Constructor property: $.fn.popover.Offcanvas. If you'd like to get a particular plugin instance, retrieve it directly from an element: $('.navmenu').data('offcanvas').

    + +

    No conflict

    +

    Sometimes it is necessary to use Bootstrap plugins with other UI frameworks. In these circumstances, namespace collisions can occasionally occur. If this happens, you may call .noConflict on the plugin you wish to revert the value of.

    +{% highlight js %} +var bootstrapButton = $.fn.button.noConflict() // return $.fn.button to previously assigned value +$.fn.bootstrapBtn = bootstrapButton // give $().bootstrapBtn the Bootstrap functionality +{% endhighlight %} + +

    Events

    +

    Bootstrap provides custom events for most plugin's unique actions. Generally, these come in an infinitive and past participle form - where the infinitive (ex. show) is triggered at the start of an event, and its past participle form (ex. shown) is trigger on the completion of an action.

    +

    As of 3.0.0, all Bootstrap events are namespaced.

    +

    All infinitive events provide preventDefault functionality. This provides the ability to stop the execution of an action before it starts.

    +{% highlight js %} +$('#myMenu').on('show.bs.offcanvas', function (e) { + if (!data) return e.preventDefault() // stops menu from being shown +}) +{% endhighlight %} +
    + + + +
    + + +

    Example

    +

    The offcanvas plugin allows you to hide an element from sight and than show it by moving either that or any other element. It's intented to be used for off canvas navigation, like push menus.

    +
    +
    + + +

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis in aliquet nisl. Praesent sed leo congue, fringilla eros eu, tempus metus. Nam mollis odio ipsum, non vehicula ipsum accumsan sodales. Morbi varius vitae elit euismod cursus. Donec a dapibus justo, in facilisis nisi. Suspendisse ut turpis dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque dui risus, tincidunt at odio ut, ultrices dignissim ipsum. Cras ultrices erat nec leo luctus varius. Nulla sollicitudin tincidunt nulla, ut porta mauris volutpat vitae. Suspendisse ornare dolor sit amet massa venenatis pulvinar.

    +
    +
    +{% highlight html %} + + +{% endhighlight %} + +
    +

    Examples

    +

    For better understanding, have a look at the off canvas slide in menu, off canvas push menu and off canvas reveal menu exapmles.

    +
    + +
    + +

    Usage

    +

    Add .offcanvas to hide an element. Alternatively add .offcanvas-* to hide an element up to a specific viewport width. Adding the .offcanvas class is not required. You may also hide an element by any other means.

    +

    The effect works best for elements positioned to the top, bottom, left or right of the window, either with absolute or fixed positioning.

    +

    When shown, the plugin adds .canvas-slid to the element that has slid.

    + +

    Via data attributes

    +

    Add data-toggle="offcanvas" and a data-target to control, assigning it to show and hide the target element. The data-target attribute accepts a CSS selector to apply the collapse to.

    +

    Optionally add a data-canvas attribute to slide a canvas instead of only the target element. For a push menu set data-canvas="body". + +

    Via JavaScript

    +

    Call the input mask via javascript:

    +{% highlight js %} +$('.navmenu').offcanvas() +{% endhighlight %} + +

    Options

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Nametypedefaultdescription
    canvasstringfalseIf set, the canvas will be moved on show and hide instead of the target element. This creates alternative effects.
    togglebooleantrueToggles the off canvas element on invocation
    placementstring'auto'Where to position the element at the start of the animation. For example, if placement is "left", the element will slide from left to right. The default option "auto" guesses the placement based on position and dimension.
    autohidebooleantrueHide the off canvas element if clicked anywhere other that the element.
    recalcbooleantrueCalculate if off canvas should be disabled for this viewport width on window resize. If your elements always gets hidden on window resize, try setting this to false.
    + +
    +

    Graceful degradation

    +

    For browsers that don't support transform (mainly IE8), the target option is ignored. In that case, the plugin will always slide the target element. In that case .canvas-slid will be added to the target element instead.

    +
    + + +

    Methods

    +

    .offcanvas(options)

    +

    Initializes the off canvas element with an optional options.

    +

    .offcanvas('toggle')

    +

    Toggles an off canvas element to shown or hidden.

    +

    .offcanvas('show')

    +

    Shows an off canvas element.

    +

    .offcanvas('hide')

    +

    Hides an off canvas element.

    + +

    Events

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Event TypeDescription
    show.bs.offcanvasThis event fires immediately when the show instance method is called.
    shown.bs.offcanvasThis event is fired when the target has been made visible to the user (will wait for CSS transitions to complete).
    hide.bs.offcanvasThis event is fired immediately when the hide instance method has been called.
    hidden.bs.offcanvasThis event is fired when the modal has finished being hidden from the user (will wait for CSS transitions to complete).
    +
    +
    + + + +
    + + + +

    This plugin turns a table row into a clickable link.

    +
    + + + + + + + + + +
    NameDescriptionActions
    Input maskInput masks can be used to force the user to enter data conform a specific format.
    jasny.netShared knowledge of Arnold Daniels aka Jasny.
    Launch modalToggle a modal via JavaScript by clicking this row.
    +
    + +{% highlight html %} + + + + + + + + + +
    NameDescriptionActions
    Input maskInput masks can be used to force the user to enter data conform a specific format.
    jasny.netShared knowledge of Arnold Daniels aka Jasny.
    Launch modalToggle a modal via JavaScript by clicking this row.
    +{% endhighlight %} + +
    + + + +

    Via data attributes

    +

    Add class .rowlink and attribute data-link="row" to a <table> or <tbody> element. For other options append the name to data-, as in data-target="a.mainlink" A cell can be excluded by adding the .rowlink-skip class to the <td>.

    + +

    Via JavaScript

    +

    Call the input mask via javascript:

    +{% highlight js %} +$('tbody.rowlink').rowlink() +{% endhighlight %} + +

    Options

    + + + + + + + + + + + + + + + + + +
    Nametypedefaultdescription
    targetstring'a'A jquery selector string, to select the link element within each row.
    + +

    Methods

    +

    .rowlink(options)

    +

    Makes the rows of a table or tbody clickable.

    +
    + + + +
    + + +

    Example

    +

    Input masks can be used to force the user to enter data conform a specific format. Unlike validation, the user can't enter any other key than the ones specified by the mask.

    + +
    + +
    +{% highlight html %} + +{% endhighlight %} + +
    + +

    Usage

    + +

    Via data attributes

    +

    Add data attributes to register an element with inputmask functionality as shown in the example above.

    + +

    Via JavaScript

    +

    Call the input mask via javascript:

    +{% highlight js %} +$('.inputmask').inputmask({ + mask: '999-99-999-9999-9' +}) +{% endhighlight %} + +

    Options

    +

    Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-mask="999-99-999-9999-9".

    + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    Nametypedefaultdescription
    maskstring''A string of formatting and literal characters, defining the input mask (see below).
    placeholderstring'_'The character that is displayed where something needs to be typed.
    +
    + +

    Format

    +

    Each typed character needs to match exactly one character in the mask option.

    + +
    + + + + + + + + + + +
    CharacterDescription
    9Number
    aLetter
    ?Alphanumeric
    *Any character
    +
    + +

    Methods

    + +

    .inputmask(options)

    +

    Initializes an input element with an input mask.

    +
    + + + + +
    + + +

    Examples

    +

    The file input plugin allows you to create a visually appealing file or image input widgets.

    + +

    File input widgets

    +
    +
    +
    +
    + Select fileChange + Remove +
    +
    +
    +{% highlight html %} +
    +
    +
    + Select fileChange + Remove +
    +
    +{% endhighlight %} + +
    +
    + Select fileChange + + × +
    +
    +{% highlight html %} +
    + Select fileChange + + × +
    +{% endhighlight %} + +

    Image upload widgets

    +

    When uploading an image, it's possible to show a thumbnail instead of the filename.

    +
    +
    +
    +
    + Select imageChange + Remove +
    +
    +
    +{% highlight html %} +
    +
    +
    + Select imageChange + Remove +
    +
    +{% endhighlight %} + +
    +
    +
    + Generic placeholder thumbnail +
    +
    +
    + Select imageChange + Remove +
    +
    +
    +{% highlight html %} +
    +
    + ... +
    +
    +
    + Select imageChange + Remove +
    +
    +{% endhighlight %} + +
    +

    Image preview only works in IE10+, FF3.6+, Safari6.0+, Chrome6.0+ and Opera11.1+. In older browsers the filename is shown instead.

    +
    + +
    + + +

    Usage

    +

    Add .fileinput to the container. Elements inside the container with .fileinput-new and .fileinput-exists are shown or hidden based on the current state. A preview of the selected file is placed in .fileinput-preview. The text of .fileinput-filename gets set to the name of the selected file.

    +

    The file input widget should be placed in a regular <form> replacing a standard <input type="file">. The server side code should handle the file upload as normal.

    + +

    Via data attributes

    +

    Add data-provides="fileinput" to the .fileinput element. Implement a button to clear the file with data-dismiss="fileinput". Add data-trigger="fileinput" to any element within the .fileinput widget to trigger the file dialog.

    + +

    Via JavaScript

    +
    $('.fileinput').fileinput()
    + +

    Layout

    +

    Using the given elements, you can layout the upload widget the way you want, either with a fixed width and height or with max-width and max-height.

    + +

    Options

    +
    + + + + + + + + + + + + + + + +
    Nametypedescription
    namestringUse this option instead of setting the name attribute on the <input> element to prevent it from being part of the post data when not changed.
    +
    + +

    Methods

    +

    .fileinput(options)

    +

    Initializes a file upload widget.

    +

    .fileinput('clear')

    +

    Clear the selected file.

    +

    .fileinput('reset')

    +

    Reset the form element to the original value.

    + +

    Events

    +
    + + + + + + + + + + + + + + + + + + + + + +
    Event TypeDescription
    change.bs.fileinputThis event is fired after a file is selected.
    clear.bs.fileinputThis event is fired when the file input is cleared.
    reset.bs.fileinputThis event is fired when the file input is reset.
    +
    +
    + diff --git a/grunt/.jshintrc b/grunt/.jshintrc new file mode 100644 index 00000000..ddc04c9a --- /dev/null +++ b/grunt/.jshintrc @@ -0,0 +1,16 @@ +{ + "asi": false, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "immed": true, + "indent": 2, + "newcap": true, + "noarg": true, + "nonbsp": true, + "quotmark": "single", + "undef": true, + "strict": true, + "trailing": true, + "node" : true +} diff --git a/grunt/bs-lessdoc-parser.js b/grunt/bs-lessdoc-parser.js new file mode 100644 index 00000000..5a86f13a --- /dev/null +++ b/grunt/bs-lessdoc-parser.js @@ -0,0 +1,236 @@ +/*! + * Bootstrap Grunt task for parsing Less docstrings + * http://getbootstrap.com + * Copyright 2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +'use strict'; + +var markdown = require('markdown').markdown; + +function markdown2html(markdownString) { + // the slice removes the

    ...

    wrapper output by Markdown processor + return markdown.toHTML(markdownString.trim()).slice(3, -4); +} + + +/* +Mini-language: + //== This is a normal heading, which starts a section. Sections group variables together. + //## Optional description for the heading + + //=== This is a subheading. + + //** Optional description for the following variable. You **can** use Markdown in descriptions to discuss `` stuff. + @foo: #ffff; + + //-- This is a heading for a section whose variables shouldn't be customizable + + All other lines are ignored completely. +*/ + + +var CUSTOMIZABLE_HEADING = /^[/]{2}={2}(.*)$/; +var UNCUSTOMIZABLE_HEADING = /^[/]{2}-{2}(.*)$/; +var SUBSECTION_HEADING = /^[/]{2}={3}(.*)$/; +var SECTION_DOCSTRING = /^[/]{2}#{2}(.*)$/; +var VAR_ASSIGNMENT = /^(@[a-zA-Z0-9_-]+):[ ]*([^ ;][^;]+);[ ]*$/; +var VAR_DOCSTRING = /^[/]{2}[*]{2}(.*)$/; + +function Section(heading, customizable) { + this.heading = heading.trim(); + this.id = this.heading.replace(/\s+/g, '-').toLowerCase(); + this.customizable = customizable; + this.docstring = null; + this.subsections = []; +} + +Section.prototype.addSubSection = function (subsection) { + this.subsections.push(subsection); +}; + +function SubSection(heading) { + this.heading = heading.trim(); + this.id = this.heading.replace(/\s+/g, '-').toLowerCase(); + this.variables = []; +} + +SubSection.prototype.addVar = function (variable) { + this.variables.push(variable); +}; + +function VarDocstring(markdownString) { + this.html = markdown2html(markdownString); +} + +function SectionDocstring(markdownString) { + this.html = markdown2html(markdownString); +} + +function Variable(name, defaultValue) { + this.name = name; + this.defaultValue = defaultValue; + this.docstring = null; +} + +function Tokenizer(fileContent) { + this._lines = fileContent.split('\n'); + this._next = undefined; +} + +Tokenizer.prototype.unshift = function (token) { + if (this._next !== undefined) { + throw new Error('Attempted to unshift twice!'); + } + this._next = token; +}; + +Tokenizer.prototype._shift = function () { + // returning null signals EOF + // returning undefined means the line was ignored + if (this._next !== undefined) { + var result = this._next; + this._next = undefined; + return result; + } + if (this._lines.length <= 0) { + return null; + } + var line = this._lines.shift(); + var match = null; + match = SUBSECTION_HEADING.exec(line); + if (match !== null) { + return new SubSection(match[1]); + } + match = CUSTOMIZABLE_HEADING.exec(line); + if (match !== null) { + return new Section(match[1], true); + } + match = UNCUSTOMIZABLE_HEADING.exec(line); + if (match !== null) { + return new Section(match[1], false); + } + match = SECTION_DOCSTRING.exec(line); + if (match !== null) { + return new SectionDocstring(match[1]); + } + match = VAR_DOCSTRING.exec(line); + if (match !== null) { + return new VarDocstring(match[1]); + } + var commentStart = line.lastIndexOf('//'); + var varLine = (commentStart === -1) ? line : line.slice(0, commentStart); + match = VAR_ASSIGNMENT.exec(varLine); + if (match !== null) { + return new Variable(match[1], match[2]); + } + return undefined; +}; + +Tokenizer.prototype.shift = function () { + while (true) { + var result = this._shift(); + if (result === undefined) { + continue; + } + return result; + } +}; + +function Parser(fileContent) { + this._tokenizer = new Tokenizer(fileContent); +} + +Parser.prototype.parseFile = function () { + var sections = []; + while (true) { + var section = this.parseSection(); + if (section === null) { + if (this._tokenizer.shift() !== null) { + throw new Error('Unexpected unparsed section of file remains!'); + } + return sections; + } + sections.push(section); + } +}; + +Parser.prototype.parseSection = function () { + var section = this._tokenizer.shift(); + if (section === null) { + return null; + } + if (!(section instanceof Section)) { + throw new Error('Expected section heading; got: ' + JSON.stringify(section)); + } + var docstring = this._tokenizer.shift(); + if (docstring instanceof SectionDocstring) { + section.docstring = docstring; + } + else { + this._tokenizer.unshift(docstring); + } + this.parseSubSections(section); + + return section; +}; + +Parser.prototype.parseSubSections = function (section) { + while (true) { + var subsection = this.parseSubSection(); + if (subsection === null) { + if (section.subsections.length === 0) { + // Presume an implicit initial subsection + subsection = new SubSection(''); + this.parseVars(subsection); + } + else { + break; + } + } + section.addSubSection(subsection); + } + + if (section.subsections.length === 1 && !(section.subsections[0].heading) && section.subsections[0].variables.length === 0) { + // Ignore lone empty implicit subsection + section.subsections = []; + } +}; + +Parser.prototype.parseSubSection = function () { + var subsection = this._tokenizer.shift(); + if (subsection instanceof SubSection) { + this.parseVars(subsection); + return subsection; + } + this._tokenizer.unshift(subsection); + return null; +}; + +Parser.prototype.parseVars = function (subsection) { + while (true) { + var variable = this.parseVar(); + if (variable === null) { + return; + } + subsection.addVar(variable); + } +}; + +Parser.prototype.parseVar = function () { + var docstring = this._tokenizer.shift(); + if (!(docstring instanceof VarDocstring)) { + this._tokenizer.unshift(docstring); + docstring = null; + } + var variable = this._tokenizer.shift(); + if (variable instanceof Variable) { + variable.docstring = docstring; + return variable; + } + this._tokenizer.unshift(variable); + return null; +}; + + +module.exports = Parser; diff --git a/grunt/bs-raw-files-generator.js b/grunt/bs-raw-files-generator.js new file mode 100644 index 00000000..5991df5d --- /dev/null +++ b/grunt/bs-raw-files-generator.js @@ -0,0 +1,31 @@ +/* global btoa: true */ +/*! + * Bootstrap Grunt task for generating raw-files.min.js for the Customizer + * http://getbootstrap.com + * Copyright 2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +'use strict'; +var btoa = require('btoa'); +var fs = require('fs'); + +function getFiles(type) { + var files = {}; + fs.readdirSync(type) + .filter(function (path) { + return new RegExp('\\.' + type + '$').test(path); + }) + .forEach(function (path) { + var fullPath = type + (path === 'variables.less' ? '/build/' : '/') + path; + files[path] = fs.readFileSync(fullPath, 'utf8'); + }); + return 'var __' + type + ' = ' + JSON.stringify(files) + '\n'; +} + +module.exports = function generateRawFilesJs(banner) { + if (!banner) { + banner = ''; + } + var files = banner + getFiles('js') + getFiles('less'); + fs.writeFileSync('docs/assets/js/raw-files.min.js', files); +}; diff --git a/grunt/shrinkwrap.js b/grunt/shrinkwrap.js new file mode 100644 index 00000000..d3292b49 --- /dev/null +++ b/grunt/shrinkwrap.js @@ -0,0 +1,28 @@ +/*! + * Bootstrap Grunt task for generating npm-shrinkwrap.canonical.json + * http://getbootstrap.com + * Copyright 2014 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/* +This Grunt task updates the npm-shrinkwrap.canonical.json file that's used as the key for Bootstrap's npm packages cache. +This task should be run and the updated file should be committed whenever Bootstrap's dependencies change. +*/ +'use strict'; +var canonicallyJsonStringify = require('canonical-json'); +var NON_CANONICAL_FILE = 'npm-shrinkwrap.json'; +var DEST_FILE = 'test-infra/npm-shrinkwrap.canonical.json'; + + +function updateShrinkwrap(grunt) { + // Assumption: Non-canonical shrinkwrap already generated by prerequisite Grunt task + var shrinkwrapData = grunt.file.readJSON(NON_CANONICAL_FILE); + grunt.log.writeln('Deleting ' + NON_CANONICAL_FILE.cyan + '...'); + grunt.file.delete(NON_CANONICAL_FILE); + // Output as Canonical JSON in correct location + grunt.file.write(DEST_FILE, canonicallyJsonStringify(shrinkwrapData)); + grunt.log.writeln('File ' + DEST_FILE.cyan + ' updated.'); +} + + +module.exports = updateShrinkwrap; diff --git a/js/.jscs.json b/js/.jscs.json new file mode 100644 index 00000000..313bfb69 --- /dev/null +++ b/js/.jscs.json @@ -0,0 +1,15 @@ +{ + "disallowKeywords": ["with"], + "requireLeftStickedOperators": [","], + "disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], + "disallowRightStickedOperators": ["?", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], + "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~"], + "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], + "requireLineFeedAtFileEnd": true, + "requireRightStickedOperators": ["!"], + "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="], + "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"], + "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!=="], + "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true }, + "validateLineBreaks": "LF" +} diff --git a/js/.jshintrc b/js/.jshintrc new file mode 100644 index 00000000..fdfdfbbf --- /dev/null +++ b/js/.jshintrc @@ -0,0 +1,14 @@ +{ + "asi" : true, + "boss" : true, + "browser" : true, + "curly" : false, + "debug" : true, + "devel" : true, + "eqeqeq" : false, + "eqnull" : true, + "expr" : true, + "laxbreak" : true, + "laxcomma" : true, + "validthis": true +} \ No newline at end of file diff --git a/js/fileinput.js b/js/fileinput.js new file mode 100644 index 00000000..76f10eb3 --- /dev/null +++ b/js/fileinput.js @@ -0,0 +1,191 @@ +/* =========================================================== + * Bootstrap: fileinput.js v3.1.0 + * http://jasny.github.com/bootstrap/javascript/#fileinput + * =========================================================== + * Copyright 2012-2014 Arnold Daniels + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + ++function ($) { "use strict"; + + var isIE = window.navigator.appName == 'Microsoft Internet Explorer' + + // FILEUPLOAD PUBLIC CLASS DEFINITION + // ================================= + + var Fileinput = function (element, options) { + this.$element = $(element) + + this.$input = this.$element.find(':file') + if (this.$input.length === 0) return + + this.name = this.$input.attr('name') || options.name + + this.$hidden = this.$element.find('input[type=hidden][name="' + this.name + '"]') + if (this.$hidden.length === 0) { + this.$hidden = $('') + this.$element.prepend(this.$hidden) + } + + this.$preview = this.$element.find('.fileinput-preview') + var height = this.$preview.css('height') + if (this.$preview.css('display') != 'inline' && height != '0px' && height != 'none') this.$preview.css('line-height', height) + + this.original = { + exists: this.$element.hasClass('fileinput-exists'), + preview: this.$preview.html(), + hiddenVal: this.$hidden.val() + } + + this.listen() + } + + Fileinput.prototype.listen = function() { + this.$input.on('change.bs.fileinput', $.proxy(this.change, this)) + $(this.$input[0].form).on('reset.bs.fileinput', $.proxy(this.reset, this)) + + this.$element.find('[data-trigger="fileinput"]').on('click.bs.fileinput', $.proxy(this.trigger, this)) + this.$element.find('[data-dismiss="fileinput"]').on('click.bs.fileinput', $.proxy(this.clear, this)) + }, + + Fileinput.prototype.change = function(e) { + if (e.target.files === undefined) e.target.files = e.target && e.target.value ? [ {name: e.target.value.replace(/^.+\\/, '')} ] : [] + if (e.target.files.length === 0) return + + this.$hidden.val('') + this.$hidden.attr('name', '') + this.$input.attr('name', this.name) + + var file = e.target.files[0] + + if (this.$preview.length > 0 && (typeof file.type !== "undefined" ? file.type.match('image.*') : file.name.match(/\.(gif|png|jpe?g)$/i)) && typeof FileReader !== "undefined") { + var reader = new FileReader() + var preview = this.$preview + var element = this.$element + + reader.onload = function(re) { + var $img = $('') // .attr('src', re.target.result) + $img[0].src = re.target.result + e.target.files[0].result = re.target.result + + element.find('.fileinput-filename').text(file.name) + + // if parent has max-height, using `(max-)height: 100%` on child doesn't take padding and border into account + if (preview.css('max-height') != 'none') $img.css('max-height', parseInt(preview.css('max-height'), 10) - parseInt(preview.css('padding-top'), 10) - parseInt(preview.css('padding-bottom'), 10) - parseInt(preview.css('border-top'), 10) - parseInt(preview.css('border-bottom'), 10)) + + preview.html($img) + element.addClass('fileinput-exists').removeClass('fileinput-new') + + element.trigger('change.bs.fileinput', e.target.files) + } + + reader.readAsDataURL(file) + } else { + this.$element.find('.fileinput-filename').text(file.name) + this.$preview.text(file.name) + + this.$element.addClass('fileinput-exists').removeClass('fileinput-new') + + this.$element.trigger('change.bs.fileinput') + } + }, + + Fileinput.prototype.clear = function(e) { + if (e) e.preventDefault() + + this.$hidden.val('') + this.$hidden.attr('name', this.name) + this.$input.attr('name', '') + + //ie8+ doesn't support changing the value of input with type=file so clone instead + if (isIE) { + var inputClone = this.$input.clone(true); + this.$input.after(inputClone); + this.$input.remove(); + this.$input = inputClone; + } else { + this.$input.val('') + } + + this.$preview.html('') + this.$element.find('.fileinput-filename').text('') + this.$element.addClass('fileinput-new').removeClass('fileinput-exists') + + if (e !== false) { + this.$input.trigger('change') + this.$element.trigger('clear.bs.fileinput') + } + }, + + Fileinput.prototype.reset = function() { + this.clear(false) + + this.$hidden.val(this.original.hiddenVal) + this.$preview.html(this.original.preview) + this.$element.find('.fileinput-filename').text('') + + if (this.original.exists) this.$element.addClass('fileinput-exists').removeClass('fileinput-new') + else this.$element.addClass('fileinput-new').removeClass('fileinput-exists') + + this.$element.trigger('reset.bs.fileinput') + }, + + Fileinput.prototype.trigger = function(e) { + this.$input.trigger('click') + e.preventDefault() + } + + + // FILEUPLOAD PLUGIN DEFINITION + // =========================== + + var old = $.fn.fileinput + + $.fn.fileinput = function (options) { + return this.each(function () { + var $this = $(this), + data = $this.data('fileinput') + if (!data) $this.data('fileinput', (data = new Fileinput(this, options))) + if (typeof options == 'string') data[options]() + }) + } + + $.fn.fileinput.Constructor = Fileinput + + + // FILEINPUT NO CONFLICT + // ==================== + + $.fn.fileinput.noConflict = function () { + $.fn.fileinput = old + return this + } + + + // FILEUPLOAD DATA-API + // ================== + + $(document).on('click.fileinput.data-api', '[data-provides="fileinput"]', function (e) { + var $this = $(this) + if ($this.data('fileinput')) return + $this.fileinput($this.data()) + + var $target = $(e.target).closest('[data-dismiss="fileinput"],[data-trigger="fileinput"]'); + if ($target.length > 0) { + e.preventDefault() + $target.trigger('click.bs.fileinput') + } + }) + +}(window.jQuery); diff --git a/js/inputmask.js b/js/inputmask.js new file mode 100644 index 00000000..7bd59b42 --- /dev/null +++ b/js/inputmask.js @@ -0,0 +1,360 @@ +/* =========================================================== + * Bootstrap: inputmask.js v3.1.0 + * http://jasny.github.io/bootstrap/javascript/#inputmask + * + * Based on Masked Input plugin by Josh Bush (digitalbush.com) + * =========================================================== + * Copyright 2012-2014 Arnold Daniels + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + ++function ($) { "use strict"; + + var isIphone = (window.orientation !== undefined) + var isAndroid = navigator.userAgent.toLowerCase().indexOf("android") > -1 + var isIE = window.navigator.appName == 'Microsoft Internet Explorer' + + // INPUTMASK PUBLIC CLASS DEFINITION + // ================================= + + var Inputmask = function (element, options) { + if (isAndroid) return // No support because caret positioning doesn't work on Android + + this.$element = $(element) + this.options = $.extend({}, Inputmask.DEFAULS, options) + this.mask = String(this.options.mask) + + this.init() + this.listen() + + this.checkVal() //Perform initial check for existing values + } + + Inputmask.DEFAULS = { + mask: "", + placeholder: "_", + definitions: { + '9': "[0-9]", + 'a': "[A-Za-z]", + '?': "[A-Za-z0-9]", + '*': "." + } + } + + Inputmask.prototype.init = function() { + var defs = this.options.definitions + var len = this.mask.length + + this.tests = [] + this.partialPosition = this.mask.length + this.firstNonMaskPos = null + + $.each(this.mask.split(""), $.proxy(function(i, c) { + if (c == '?') { + len-- + this.partialPosition = i + } else if (defs[c]) { + this.tests.push(new RegExp(defs[c])) + if (this.firstNonMaskPos === null) + this.firstNonMaskPos = this.tests.length - 1 + } else { + this.tests.push(null) + } + }, this)) + + this.buffer = $.map(this.mask.split(""), $.proxy(function(c, i) { + if (c != '?') return defs[c] ? this.options.placeholder : c + }, this)) + + this.focusText = this.$element.val() + + this.$element.data("rawMaskFn", $.proxy(function() { + return $.map(this.buffer, function(c, i) { + return this.tests[i] && c != this.options.placeholder ? c : null + }).join('') + }, this)) + } + + Inputmask.prototype.listen = function() { + if (this.$element.attr("readonly")) return + + var pasteEventName = (isIE ? 'paste' : 'input') + ".mask" + + this.$element + .on("unmask.bs.inputmask", $.proxy(this.unmask, this)) + + .on("focus.bs.inputmask", $.proxy(this.focusEvent, this)) + .on("blur.bs.inputmask", $.proxy(this.blurEvent, this)) + + .on("keydown.bs.inputmask", $.proxy(this.keydownEvent, this)) + .on("keypress.bs.inputmask", $.proxy(this.keypressEvent, this)) + + .on(pasteEventName, $.proxy(this.pasteEvent, this)) + } + + //Helper Function for Caret positioning + Inputmask.prototype.caret = function(begin, end) { + if (this.$element.length === 0) return + if (typeof begin == 'number') { + end = (typeof end == 'number') ? end : begin + return this.$element.each(function() { + if (this.setSelectionRange) { + this.setSelectionRange(begin, end) + } else if (this.createTextRange) { + var range = this.createTextRange() + range.collapse(true) + range.moveEnd('character', end) + range.moveStart('character', begin) + range.select() + } + }) + } else { + if (this.$element[0].setSelectionRange) { + begin = this.$element[0].selectionStart + end = this.$element[0].selectionEnd + } else if (document.selection && document.selection.createRange) { + var range = document.selection.createRange() + begin = 0 - range.duplicate().moveStart('character', -100000) + end = begin + range.text.length + } + return { + begin: begin, + end: end + } + } + } + + Inputmask.prototype.seekNext = function(pos) { + var len = this.mask.length + while (++pos <= len && !this.tests[pos]); + + return pos + } + + Inputmask.prototype.seekPrev = function(pos) { + while (--pos >= 0 && !this.tests[pos]); + + return pos + } + + Inputmask.prototype.shiftL = function(begin,end) { + var len = this.mask.length + + if (begin < 0) return + + for (var i = begin, j = this.seekNext(end); i < len; i++) { + if (this.tests[i]) { + if (j < len && this.tests[i].test(this.buffer[j])) { + this.buffer[i] = this.buffer[j] + this.buffer[j] = this.options.placeholder + } else + break + j = this.seekNext(j) + } + } + this.writeBuffer() + this.caret(Math.max(this.firstNonMaskPos, begin)) + } + + Inputmask.prototype.shiftR = function(pos) { + var len = this.mask.length + + for (var i = pos, c = this.options.placeholder; i < len; i++) { + if (this.tests[i]) { + var j = this.seekNext(i) + var t = this.buffer[i] + this.buffer[i] = c + if (j < len && this.tests[j].test(t)) + c = t + else + break + } + } + }, + + Inputmask.prototype.unmask = function() { + this.$element + .unbind(".mask") + .removeData("inputmask") + } + + Inputmask.prototype.focusEvent = function() { + this.focusText = this.$element.val() + var len = this.mask.length + var pos = this.checkVal() + this.writeBuffer() + + var that = this + var moveCaret = function() { + if (pos == len) + that.caret(0, pos) + else + that.caret(pos) + } + + moveCaret() + setTimeout(moveCaret, 50) + } + + Inputmask.prototype.blurEvent = function() { + this.checkVal() + if (this.$element.val() !== this.focusText) + this.$element.trigger('change') + } + + Inputmask.prototype.keydownEvent = function(e) { + var k = e.which + + //backspace, delete, and escape get special treatment + if (k == 8 || k == 46 || (isIphone && k == 127)) { + var pos = this.caret(), + begin = pos.begin, + end = pos.end + + if (end - begin === 0) { + begin = k != 46 ? this.seekPrev(begin) : (end = this.seekNext(begin - 1)) + end = k == 46 ? this.seekNext(end) : end + } + this.clearBuffer(begin, end) + this.shiftL(begin, end - 1) + + return false + } else if (k == 27) {//escape + this.$element.val(this.focusText) + this.caret(0, this.checkVal()) + return false + } + } + + Inputmask.prototype.keypressEvent = function(e) { + var len = this.mask.length + + var k = e.which, + pos = this.caret() + + if (e.ctrlKey || e.altKey || e.metaKey || k < 32) {//Ignore + return true + } else if (k) { + if (pos.end - pos.begin !== 0) { + this.clearBuffer(pos.begin, pos.end) + this.shiftL(pos.begin, pos.end - 1) + } + + var p = this.seekNext(pos.begin - 1) + if (p < len) { + var c = String.fromCharCode(k) + if (this.tests[p].test(c)) { + this.shiftR(p) + this.buffer[p] = c + this.writeBuffer() + var next = this.seekNext(p) + this.caret(next) + } + } + return false + } + } + + Inputmask.prototype.pasteEvent = function() { + var that = this + + setTimeout(function() { + that.caret(that.checkVal(true)) + }, 0) + } + + Inputmask.prototype.clearBuffer = function(start, end) { + var len = this.mask.length + + for (var i = start; i < end && i < len; i++) { + if (this.tests[i]) + this.buffer[i] = this.options.placeholder + } + } + + Inputmask.prototype.writeBuffer = function() { + return this.$element.val(this.buffer.join('')).val() + } + + Inputmask.prototype.checkVal = function(allow) { + var len = this.mask.length + //try to place characters where they belong + var test = this.$element.val() + var lastMatch = -1 + + for (var i = 0, pos = 0; i < len; i++) { + if (this.tests[i]) { + this.buffer[i] = this.options.placeholder + while (pos++ < test.length) { + var c = test.charAt(pos - 1) + if (this.tests[i].test(c)) { + this.buffer[i] = c + lastMatch = i + break + } + } + if (pos > test.length) + break + } else if (this.buffer[i] == test.charAt(pos) && i != this.partialPosition) { + pos++ + lastMatch = i + } + } + if (!allow && lastMatch + 1 < this.partialPosition) { + this.$element.val("") + this.clearBuffer(0, len) + } else if (allow || lastMatch + 1 >= this.partialPosition) { + this.writeBuffer() + if (!allow) this.$element.val(this.$element.val().substring(0, lastMatch + 1)) + } + return (this.partialPosition ? i : this.firstNonMaskPos) + } + + + // INPUTMASK PLUGIN DEFINITION + // =========================== + + var old = $.fn.inputmask + + $.fn.inputmask = function (options) { + return this.each(function () { + var $this = $(this) + var data = $this.data('inputmask') + + if (!data) $this.data('inputmask', (data = new Inputmask(this, options))) + }) + } + + $.fn.inputmask.Constructor = Inputmask + + + // INPUTMASK NO CONFLICT + // ==================== + + $.fn.inputmask.noConflict = function () { + $.fn.inputmask = old + return this + } + + + // INPUTMASK DATA-API + // ================== + + $(document).on('focus.bs.inputmask.data-api', '[data-mask]', function (e) { + var $this = $(this) + if ($this.data('inputmask')) return + $this.inputmask($this.data()) + }) + +}(window.jQuery); diff --git a/js/offcanvas.js b/js/offcanvas.js new file mode 100644 index 00000000..aef5570d --- /dev/null +++ b/js/offcanvas.js @@ -0,0 +1,296 @@ +/* ======================================================================== + * Bootstrap: offcanvas.js v3.1.0 + * http://jasny.github.io/bootstrap/javascript/#offcanvas + * + * Based on Boostrap collapse.js by Twitter, Inc. + * ======================================================================== + * Copyright 2013-2014 Arnold Daniels + * + * Licensed under the Apache License, Version 2.0 (the "License") + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================================== */ + ++function ($) { "use strict"; + + // OFFCANVAS PUBLIC CLASS DEFINITION + // ================================= + + var OffCanvas = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, OffCanvas.DEFAULTS, options) + this.state = null + + if (this.options.recalc) { + this.calcClone() + $(window).on('resize', $.proxy(this.recalc, this)) + } + + if (this.options.autohide) + $(document).on('click', $.proxy(this.autohide, this)) + + if (this.options.toggle) this.toggle() + } + + OffCanvas.DEFAULTS = { + toggle: true, + placement: 'left', + autohide: true, + recalc: true + } + + OffCanvas.prototype.offset = function () { + switch (this.options.placement) { + case 'left': + case 'right': return this.$element.outerWidth() + case 'top': + case 'bottom': return this.$element.outerHeight() + } + } + + OffCanvas.prototype.calcPlacement = function () { + var horizontal = $(window).width() / this.$element.width(), + vertical = $(window).height() / this.$element.height() + + if (!this.$element.hasClass('in')) { + this.$element.css('visiblity', 'hidden !important').addClass('in') + } + + var element = this.$element + function ab(a, b) { + if (element.css(b) === 'auto') return a + if (element.css(a) === 'auto') return b + + var size_a = parseInt(element.css(a), 10), + size_b = parseInt(element.css(b), 10) + + return size_a > size_b ? b : a + } + + this.options.placement = horizontal > vertical ? ab('left', 'right') : ab('top', 'bottom') + + if (this.$element.css('visibility') === 'hidden !important') { + this.$element.removeClass('in').css('visiblity', '') + } + } + + OffCanvas.prototype.opposite = function (placement) { + switch (placement) { + case 'top': return 'bottom' + case 'left': return 'right' + case 'bottom': return 'top' + case 'right': return 'left' + } + } + + OffCanvas.prototype.getCanvasElements = function() { + // Return a set containing the canvas plus all fixed elements + var canvas = this.options.canvas ? $(this.options.canvas) : this.$element + + var fixed_elements = canvas.find('*').filter(function() { + return $(this).css('position') === 'fixed' + }).not(this.options.exclude) + + return canvas.add(fixed_elements) + } + + OffCanvas.prototype.slide = function (elements, offset, callback) { + // Use jQuery animation if CSS transitions aren't supported + if (!$.support.transition) { + var anim = {} + anim[this.options.placement] = "+=" + offset + return elements.animate(anim, 350, callback) + } + + var placement = this.options.placement, + opposite = this.opposite(placement) + + elements.each(function() { + if ($(this).css(placement) !== 'auto') + $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset) + + if ($(this).css(opposite) !== 'auto') + $(this).css(opposite, (parseInt($(this).css(opposite), 10) || 0) - offset) + }) + + this.$element + .one($.support.transition.end, callback) + .emulateTransitionEnd(350) + } + + OffCanvas.prototype.disableScrolling = function() { + var bodyWidth = $('body').width() + var prop = 'padding-' + this.opposite(this.options.placement) + + if ($('body').data('offcanvas-style') === undefined) $('body').data('offcanvas-style', $('body').attr('style')) + + $('body').css('overflow', 'hidden') + + if ($('body').width() > bodyWidth) { + var padding = parseInt($('body').css(prop), 10) + $('body').width() - bodyWidth + + setTimeout(function() { + $('body').css(prop, padding) + }, 1) + } + } + + OffCanvas.prototype.show = function () { + if (this.state) return + + var startEvent = $.Event('show.bs.offcanvas') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + if (this.options.placement === 'auto') this.calcPlacement() + + this.state = 'sliding' + + var elements = this.getCanvasElements() + var offset = this.offset(), + placement = this.options.placement, + opposite = this.opposite(placement) + + elements.addClass('canvas-sliding').each(function() { + $(this).data('offcanvas-style', $(this).attr('style') || '') + if ($(this).css('position') === 'static') $(this).css('position', 'relative') + if (($(this).css(placement) === 'auto' || $(this).css(placement) === '0px') && + ($(this).css(opposite) === 'auto' || $(this).css(opposite) === '0px')) { + $(this).css(placement, 0) + } + }) + + if (elements.index(this.$element) !== -1) this.$element.css(placement, -1 * offset) + + this.disableScrolling() + + var complete = function () { + this.state = 'slid' + + elements.removeClass('canvas-sliding').addClass('canvas-slid') + this.$element.trigger('shown.bs.offcanvas') + } + + setTimeout($.proxy(function() { + this.$element.addClass('in') + this.slide(elements, offset, $.proxy(complete, this)) + }, this), 1) + } + + OffCanvas.prototype.hide = function (fast) { + if (this.state !== 'slid') return + + var startEvent = $.Event('hide.bs.offcanvas') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + this.state = 'sliding' + + var elements = $('.canvas-slid') + var offset = -1 * this.offset() + + var complete = function () { + this.state = null + + this.$element.removeClass('in') + + elements.removeClass('canvas-sliding') + elements.add('body').each(function() { + $(this).attr('style', $(this).data('offcanvas-style')).removeData('offcanvas-style') + }) + + this.$element.trigger('hidden.bs.offcanvas') + } + + elements.removeClass('canvas-slid').addClass('canvas-sliding') + + setTimeout($.proxy(function() { + this.slide(elements, offset, $.proxy(complete, this)) + }, this), 1) + } + + OffCanvas.prototype.toggle = function () { + if (this.state === 'sliding') return + this[this.state === 'slid' ? 'hide' : 'show']() + } + + OffCanvas.prototype.calcClone = function() { + this.$calcClone = this.$element.clone() + .html('') + .addClass('offcanvas-clone').removeClass('in') + .appendTo($('body')) + } + + OffCanvas.prototype.recalc = function () { + if (this.state() !== 'slid' || this.$calcClone.css('display') === 'none') return + + var offset = -1 * this.offset() + + var placement = this.options.placement + this.getCanvasElements().each(function() { + $(this).css(placement, (parseInt($(this).css(placement), 10) || 0) + offset) + }).removeClass('canvas-slid') + + $('body').css('overflow', '') + this.$element.css(placement, '').removeClass('in canvas-slid') + } + + OffCanvas.prototype.autohide = function (e) { + if ($(e.target).closest(this.$element).length === 0) this.hide() + } + + // OFFCANVAS PLUGIN DEFINITION + // ========================== + + var old = $.fn.offcanvas + + $.fn.offcanvas = function (option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.offcanvas') + var options = $.extend({}, OffCanvas.DEFAULTS, $this.data(), typeof option == 'object' && option) + + if (!data) $this.data('bs.offcanvas', (data = new OffCanvas(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.offcanvas.Constructor = OffCanvas + + + // OFFCANVAS NO CONFLICT + // ==================== + + $.fn.offcanvas.noConflict = function () { + $.fn.offcanvas = old + return this + } + + + // OFFCANVAS DATA-API + // ================= + + $(document).on('click.bs.offcanvas.data-api', '[data-toggle=offcanvas]', function (e) { + var $this = $(this), href + var target = $this.attr('data-target') + || e.preventDefault() + || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 + var $canvas = $(target) + var data = $canvas.data('bs.offcanvas') + var option = data ? 'toggle' : $this.data() + + e.stopPropagation() + + if (data) data.toggle() + else $canvas.offcanvas(option) + }) + +}(window.jQuery); diff --git a/js/rowlink.js b/js/rowlink.js new file mode 100644 index 00000000..410fa26e --- /dev/null +++ b/js/rowlink.js @@ -0,0 +1,84 @@ +/* ============================================================ + * Bootstrap: rowlink.js v3.1.0 + * http://jasny.github.io/bootstrap/javascript/#rowlink + * ============================================================ + * Copyright 2012-2014 Arnold Daniels + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + ++function ($) { "use strict"; + + var Rowlink = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Rowlink.DEFAULTS, options) + + this.$element.on('click.bs.rowlink', 'td:not(.rowlink-skip)', $.proxy(this.click, this)) + } + + Rowlink.DEFAULTS = { + target: "a" + } + + Rowlink.prototype.click = function(e) { + var target = $(e.currentTarget).closest('tr').find(this.options.target)[0] + if ($(e.target)[0] === target) return + + e.preventDefault(); + + if (target.click) { + target.click() + } else if (document.createEvent) { + var evt = document.createEvent("MouseEvents"); + evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); + target.dispatchEvent(evt); + } + } + + + // ROWLINK PLUGIN DEFINITION + // =========================== + + var old = $.fn.rowlink + + $.fn.rowlink = function (options) { + return this.each(function () { + var $this = $(this) + var data = $this.data('rowlink') + if (!data) $this.data('rowlink', (data = new Rowlink(this, options))) + }) + } + + $.fn.rowlink.Constructor = Rowlink + + + // ROWLINK NO CONFLICT + // ==================== + + $.fn.rowlink.noConflict = function () { + $.fn.rowlink = old + return this + } + + + // ROWLINK DATA-API + // ================== + + $(document).on('click.bs.rowlink.data-api', '[data-link="row"]', function (e) { + var $this = $(this) + if ($this.data('rowlink')) return + $this.rowlink($this.data()) + $(e.target).trigger('click.bs.rowlink') + }) + +}(window.jQuery); diff --git a/js/tests/index.html b/js/tests/index.html new file mode 100644 index 00000000..8f72cc27 --- /dev/null +++ b/js/tests/index.html @@ -0,0 +1,39 @@ + + + + Bootstrap Plugin Test Suite + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + diff --git a/js/tests/unit/fileinput.js b/js/tests/unit/fileinput.js new file mode 100644 index 00000000..38b37f89 --- /dev/null +++ b/js/tests/unit/fileinput.js @@ -0,0 +1,20 @@ +$(function () { + + module('fileinput') + + test('should provide no conflict', function () { + var fileinput = $.fn.fileinput.noConflict() + ok(!$.fn.fileinput, 'fileinput was set back to undefined (org value)') + $.fn.fileinput = fileinput + }) + + test('should be defined on jquery object', function () { + ok($(document.body).fileinput, 'fileinput method is defined') + }) + + test('should return element', function () { + ok($(document.body).fileinput()[0] == document.body, 'document.body returned') + }) + + // TODO: add fileinput tests +}) diff --git a/js/tests/unit/inputmask.js b/js/tests/unit/inputmask.js new file mode 100644 index 00000000..cac5aa36 --- /dev/null +++ b/js/tests/unit/inputmask.js @@ -0,0 +1,20 @@ +$(function () { + + module('inputmask') + + test('should provide no conflict', function () { + var inputmask = $.fn.inputmask.noConflict() + ok(!$.fn.inputmask, 'inputmask was set back to undefined (org value)') + $.fn.inputmask = inputmask + }) + + test('should be defined on jquery object', function () { + ok($(document.body).inputmask, 'inputmask method is defined') + }) + + test('should return element', function () { + ok($(document.body).inputmask()[0] == document.body, 'document.body returned') + }) + + // TODO: add inputmask tests +}) diff --git a/js/tests/unit/offcanvas.js b/js/tests/unit/offcanvas.js new file mode 100644 index 00000000..4b2a147b --- /dev/null +++ b/js/tests/unit/offcanvas.js @@ -0,0 +1,20 @@ +$(function () { + + module('offcanvas') + + test('should provide no conflict', function () { + var offcanvas = $.fn.offcanvas.noConflict() + ok(!$.fn.offcanvas, 'offcanvas was set back to undefined (org value)') + $.fn.offcanvas = offcanvas + }) + + test('should be defined on jquery object', function () { + ok($(document.body).offcanvas, 'offcanvas method is defined') + }) + + test('should return element', function () { + ok($(document.body).offcanvas()[0] == document.body, 'document.body returned') + }) + + // TODO: add offcanvas tests +}) diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js new file mode 100644 index 00000000..bf480eca --- /dev/null +++ b/js/tests/unit/phantom.js @@ -0,0 +1,69 @@ +/* + * grunt-contrib-qunit + * http://gruntjs.com/ + * + * Copyright (c) 2013 'Cowboy' Ben Alman, contributors + * Licensed under the MIT license. + */ + +/*global QUnit:true, alert:true*/ +(function () { + 'use strict'; + + // Don't re-order tests. + QUnit.config.reorder = false + // Run tests serially, not in parallel. + QUnit.config.autorun = false + + // Send messages to the parent PhantomJS process via alert! Good times!! + function sendMessage() { + var args = [].slice.call(arguments) + alert(JSON.stringify(args)) + } + + // These methods connect QUnit to PhantomJS. + QUnit.log = function (obj) { + // What is this I don’t even + if (obj.message === '[object Object], undefined:undefined') { return } + // Parse some stuff before sending it. + var actual = QUnit.jsDump.parse(obj.actual) + var expected = QUnit.jsDump.parse(obj.expected) + // Send it. + sendMessage('qunit.log', obj.result, actual, expected, obj.message, obj.source) + } + + QUnit.testStart = function (obj) { + sendMessage('qunit.testStart', obj.name) + } + + QUnit.testDone = function (obj) { + sendMessage('qunit.testDone', obj.name, obj.failed, obj.passed, obj.total) + } + + QUnit.moduleStart = function (obj) { + sendMessage('qunit.moduleStart', obj.name) + } + + QUnit.begin = function () { + sendMessage('qunit.begin') + console.log('Starting test suite') + console.log('================================================\n') + } + + QUnit.moduleDone = function (opts) { + if (opts.failed === 0) { + console.log('\r\u2714 All tests passed in "' + opts.name + '" module') + } else { + console.log('\u2716 ' + opts.failed + ' tests failed in "' + opts.name + '" module') + } + sendMessage('qunit.moduleDone', opts.name, opts.failed, opts.passed, opts.total) + } + + QUnit.done = function (opts) { + console.log('\n================================================') + console.log('Tests completed in ' + opts.runtime + ' milliseconds') + console.log(opts.passed + ' tests of ' + opts.total + ' passed, ' + opts.failed + ' failed.') + sendMessage('qunit.done', opts.failed, opts.passed, opts.total, opts.runtime) + } + +}()) diff --git a/js/tests/unit/rowlink.js b/js/tests/unit/rowlink.js new file mode 100644 index 00000000..b04672b8 --- /dev/null +++ b/js/tests/unit/rowlink.js @@ -0,0 +1,20 @@ +$(function () { + + module('rowlink') + + test('should provide no conflict', function () { + var rowlink = $.fn.rowlink.noConflict() + ok(!$.fn.rowlink, 'rowlink was set back to undefined (org value)') + $.fn.rowlink = rowlink + }) + + test('should be defined on jquery object', function () { + ok($(document.body).rowlink, 'rowlink method is defined') + }) + + test('should return element', function () { + ok($(document.body).rowlink()[0] == document.body, 'document.body returned') + }) + + // TODO: add rowlink tests +}) diff --git a/js/tests/vendor/jquery.js b/js/tests/vendor/jquery.js new file mode 100644 index 00000000..73f33fb3 --- /dev/null +++ b/js/tests/vendor/jquery.js @@ -0,0 +1,4 @@ +/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m="1.11.0",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(l.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:k&&!k.call("\ufeff\xa0")?function(a){return null==a?"":k.call(a)}:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void 0},now:function(){return+new Date},support:l}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s="sizzle"+-new Date,t=a.document,u=0,v=0,w=eb(),x=eb(),y=eb(),z=function(a,b){return a===b&&(j=!0),0},A="undefined",B=1<<31,C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=D.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",M=L.replace("w","w#"),N="\\["+K+"*("+L+")"+K+"*(?:([*^$|!~]?=)"+K+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+M+")|)|)"+K+"*\\]",O=":("+L+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+N.replace(3,8)+")*)|.*)\\)|)",P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(O),U=new RegExp("^"+M+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L.replace("w","w*")+")"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=/'|\\/g,ab=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),bb=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{G.apply(D=H.call(t.childNodes),t.childNodes),D[t.childNodes.length].nodeType}catch(cb){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function db(a,b,d,e){var f,g,h,i,j,m,p,q,u,v;if((b?b.ownerDocument||b:t)!==l&&k(b),b=b||l,d=d||[],!a||"string"!=typeof a)return d;if(1!==(i=b.nodeType)&&9!==i)return[];if(n&&!e){if(f=Z.exec(a))if(h=f[1]){if(9===i){if(g=b.getElementById(h),!g||!g.parentNode)return d;if(g.id===h)return d.push(g),d}else if(b.ownerDocument&&(g=b.ownerDocument.getElementById(h))&&r(b,g)&&g.id===h)return d.push(g),d}else{if(f[2])return G.apply(d,b.getElementsByTagName(a)),d;if((h=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(h)),d}if(c.qsa&&(!o||!o.test(a))){if(q=p=s,u=b,v=9===i&&a,1===i&&"object"!==b.nodeName.toLowerCase()){m=ob(a),(p=b.getAttribute("id"))?q=p.replace(_,"\\$&"):b.setAttribute("id",q),q="[id='"+q+"'] ",j=m.length;while(j--)m[j]=q+pb(m[j]);u=$.test(a)&&mb(b.parentNode)||b,v=m.join(",")}if(v)try{return G.apply(d,u.querySelectorAll(v)),d}catch(w){}finally{p||b.removeAttribute("id")}}}return xb(a.replace(P,"$1"),b,d,e)}function eb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function fb(a){return a[s]=!0,a}function gb(a){var b=l.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function hb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function ib(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||B)-(~a.sourceIndex||B);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function jb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function kb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function lb(a){return fb(function(b){return b=+b,fb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function mb(a){return a&&typeof a.getElementsByTagName!==A&&a}c=db.support={},f=db.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultView;return e!==l&&9===e.nodeType&&e.documentElement?(l=e,m=e.documentElement,n=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){k()},!1):g.attachEvent&&g.attachEvent("onunload",function(){k()})),c.attributes=gb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=gb(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(e.getElementsByClassName)&&gb(function(a){return a.innerHTML="
    ",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=gb(function(a){return m.appendChild(a).id=s,!e.getElementsByName||!e.getElementsByName(s).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==A&&n){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){var c=typeof a.getAttributeNode!==A&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==A?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==A&&n?b.getElementsByClassName(a):void 0},p=[],o=[],(c.qsa=Y.test(e.querySelectorAll))&&(gb(function(a){a.innerHTML="",a.querySelectorAll("[t^='']").length&&o.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||o.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll(":checked").length||o.push(":checked")}),gb(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&o.push("name"+K+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||o.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),o.push(",.*:")})),(c.matchesSelector=Y.test(q=m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&gb(function(a){c.disconnectedMatch=q.call(a,"div"),q.call(a,"[s!='']:x"),p.push("!=",O)}),o=o.length&&new RegExp(o.join("|")),p=p.length&&new RegExp(p.join("|")),b=Y.test(m.compareDocumentPosition),r=b||Y.test(m.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},z=b?function(a,b){if(a===b)return j=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===t&&r(t,a)?-1:b===e||b.ownerDocument===t&&r(t,b)?1:i?I.call(i,a)-I.call(i,b):0:4&d?-1:1)}:function(a,b){if(a===b)return j=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],k=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:i?I.call(i,a)-I.call(i,b):0;if(f===g)return ib(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)k.unshift(c);while(h[d]===k[d])d++;return d?ib(h[d],k[d]):h[d]===t?-1:k[d]===t?1:0},e):l},db.matches=function(a,b){return db(a,null,null,b)},db.matchesSelector=function(a,b){if((a.ownerDocument||a)!==l&&k(a),b=b.replace(S,"='$1']"),!(!c.matchesSelector||!n||p&&p.test(b)||o&&o.test(b)))try{var d=q.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return db(b,l,null,[a]).length>0},db.contains=function(a,b){return(a.ownerDocument||a)!==l&&k(a),r(a,b)},db.attr=function(a,b){(a.ownerDocument||a)!==l&&k(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!n):void 0;return void 0!==f?f:c.attributes||!n?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},db.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},db.uniqueSort=function(a){var b,d=[],e=0,f=0;if(j=!c.detectDuplicates,i=!c.sortStable&&a.slice(0),a.sort(z),j){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return i=null,a},e=db.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=db.selectors={cacheLength:50,createPseudo:fb,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ab,bb),a[3]=(a[4]||a[5]||"").replace(ab,bb),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||db.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&db.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return V.CHILD.test(a[0])?null:(a[3]&&void 0!==a[4]?a[2]=a[4]:c&&T.test(c)&&(b=ob(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ab,bb).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=w[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&w(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==A&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=db.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),t=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&t){k=q[s]||(q[s]={}),j=k[a]||[],n=j[0]===u&&j[1],m=j[0]===u&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[u,n,m];break}}else if(t&&(j=(b[s]||(b[s]={}))[a])&&j[0]===u)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(t&&((l[s]||(l[s]={}))[a]=[u,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||db.error("unsupported pseudo: "+a);return e[s]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?fb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:fb(function(a){var b=[],c=[],d=g(a.replace(P,"$1"));return d[s]?fb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:fb(function(a){return function(b){return db(a,b).length>0}}),contains:fb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:fb(function(a){return U.test(a||"")||db.error("unsupported lang: "+a),a=a.replace(ab,bb).toLowerCase(),function(b){var c;do if(c=n?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===m},focus:function(a){return a===l.activeElement&&(!l.hasFocus||l.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:lb(function(){return[0]}),last:lb(function(a,b){return[b-1]}),eq:lb(function(a,b,c){return[0>c?c+b:c]}),even:lb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:lb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:lb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:lb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function qb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=v++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[u,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[s]||(b[s]={}),(h=i[d])&&h[0]===u&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function rb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function tb(a,b,c,d,e,f){return d&&!d[s]&&(d=tb(d)),e&&!e[s]&&(e=tb(e,f)),fb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||wb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:sb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=sb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=sb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ub(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],i=g||d.relative[" "],j=g?1:0,k=qb(function(a){return a===b},i,!0),l=qb(function(a){return I.call(b,a)>-1},i,!0),m=[function(a,c,d){return!g&&(d||c!==h)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>j;j++)if(c=d.relative[a[j].type])m=[qb(rb(m),c)];else{if(c=d.filter[a[j].type].apply(null,a[j].matches),c[s]){for(e=++j;f>e;e++)if(d.relative[a[e].type])break;return tb(j>1&&rb(m),j>1&&pb(a.slice(0,j-1).concat({value:" "===a[j-2].type?"*":""})).replace(P,"$1"),c,e>j&&ub(a.slice(j,e)),f>e&&ub(a=a.slice(e)),f>e&&pb(a))}m.push(c)}return rb(m)}function vb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,i,j,k){var m,n,o,p=0,q="0",r=f&&[],s=[],t=h,v=f||e&&d.find.TAG("*",k),w=u+=null==t?1:Math.random()||.1,x=v.length;for(k&&(h=g!==l&&g);q!==x&&null!=(m=v[q]);q++){if(e&&m){n=0;while(o=a[n++])if(o(m,g,i)){j.push(m);break}k&&(u=w)}c&&((m=!o&&m)&&p--,f&&r.push(m))}if(p+=q,c&&q!==p){n=0;while(o=b[n++])o(r,s,g,i);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=E.call(j));s=sb(s)}G.apply(j,s),k&&!f&&s.length>0&&p+b.length>1&&db.uniqueSort(j)}return k&&(u=w,h=t),r};return c?fb(f):f}g=db.compile=function(a,b){var c,d=[],e=[],f=y[a+" "];if(!f){b||(b=ob(a)),c=b.length;while(c--)f=ub(b[c]),f[s]?d.push(f):e.push(f);f=y(a,vb(e,d))}return f};function wb(a,b,c){for(var d=0,e=b.length;e>d;d++)db(a,b[d],c);return c}function xb(a,b,e,f){var h,i,j,k,l,m=ob(a);if(!f&&1===m.length){if(i=m[0]=m[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&c.getById&&9===b.nodeType&&n&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(ab,bb),b)||[])[0],!b)return e;a=a.slice(i.shift().value.length)}h=V.needsContext.test(a)?0:i.length;while(h--){if(j=i[h],d.relative[k=j.type])break;if((l=d.find[k])&&(f=l(j.matches[0].replace(ab,bb),$.test(i[0].type)&&mb(b.parentNode)||b))){if(i.splice(h,1),a=f.length&&pb(i),!a)return G.apply(e,f),e;break}}}return g(a,m)(f,b,!n,e,$.test(a)&&mb(b.parentNode)||b),e}return c.sortStable=s.split("").sort(z).join("")===s,c.detectDuplicates=!!j,k(),c.sortDetached=gb(function(a){return 1&a.compareDocumentPosition(l.createElement("div"))}),gb(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||hb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&gb(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||hb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),gb(function(a){return null==a.getAttribute("disabled")})||hb(J,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),db}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=a.document,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,B=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:A.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=z.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return y.find(a);this.length=1,this[0]=d}return this.context=z,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};B.prototype=n.fn,y=n(z);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!n(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return E(a,"nextSibling")},prev:function(a){return E(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.unique(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\S+/g,G={};function H(a){var b=G[a]={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?G[a]||H(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&n.each(arguments,function(a,c){var d;while((d=n.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){if(a===!0?!--n.readyWait:!n.isReady){if(!z.body)return setTimeout(n.ready);n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(z,[n]),n.fn.trigger&&n(z).trigger("ready").off("ready"))}}});function J(){z.addEventListener?(z.removeEventListener("DOMContentLoaded",K,!1),a.removeEventListener("load",K,!1)):(z.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(z.addEventListener||"load"===event.type||"complete"===z.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===z.readyState)setTimeout(n.ready);else if(z.addEventListener)z.addEventListener("DOMContentLoaded",K,!1),a.addEventListener("load",K,!1);else{z.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&z.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!n.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}J(),n.ready()}}()}return I.promise(b)};var L="undefined",M;for(M in n(l))break;l.ownLast="0"!==M,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c=z.getElementsByTagName("body")[0];c&&(a=z.createElement("div"),a.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",b=z.createElement("div"),c.appendChild(a).appendChild(b),typeof b.style.zoom!==L&&(b.style.cssText="border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1",(l.inlineBlockNeedsLayout=3===b.offsetWidth)&&(c.style.zoom=1)),c.removeChild(a),a=b=null)}),function(){var a=z.createElement("div");if(null==l.deleteExpando){l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}}a=null}(),n.acceptData=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(n.acceptData(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f +}}function S(a,b,c){if(n.acceptData(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d]));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},X=/^(?:checkbox|radio)$/i;!function(){var a=z.createDocumentFragment(),b=z.createElement("div"),c=z.createElement("input");if(b.setAttribute("className","t"),b.innerHTML="
    a",l.leadingWhitespace=3===b.firstChild.nodeType,l.tbody=!b.getElementsByTagName("tbody").length,l.htmlSerialize=!!b.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==z.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,a.appendChild(c),l.appendChecked=c.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,a.appendChild(b),b.innerHTML="",l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){l.noCloneEvent=!1}),b.cloneNode(!0).click()),null==l.deleteExpando){l.deleteExpando=!0;try{delete b.test}catch(d){l.deleteExpando=!1}}a=b=c=null}(),function(){var b,c,d=z.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),l[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var Y=/^(?:input|select|textarea)$/i,Z=/^key/,$=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,ab=/^([^.]*)(?:\.(.+)|)$/;function bb(){return!0}function cb(){return!1}function db(){try{return z.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof n===L||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(F)||[""],h=b.length;while(h--)f=ab.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(F)||[""],j=b.length;while(j--)if(h=ab.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,m,o=[d||z],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||z,3!==d.nodeType&&8!==d.nodeType&&!_.test(p+n.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[n.expando]?b:new n.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),k=n.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!n.isWindow(d)){for(i=k.delegateType||p,_.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||z)&&o.push(l.defaultView||l.parentWindow||a)}m=0;while((h=o[m++])&&!b.isPropagationStopped())b.type=m>1?i:k.bindType||p,f=(n._data(h,"events")||{})[b.type]&&n._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&n.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&n.acceptData(d)&&g&&d[p]&&!n.isWindow(d)){l=d[g],l&&(d[g]=null),n.event.triggered=p;try{d[p]()}catch(r){}n.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((n.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?n(c,this).index(i)>=0:n.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ib=/^\s+/,jb=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,kb=/<([\w:]+)/,lb=/\s*$/g,sb={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:l.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},tb=eb(z),ub=tb.appendChild(z.createElement("div"));sb.optgroup=sb.option,sb.tbody=sb.tfoot=sb.colgroup=sb.caption=sb.thead,sb.th=sb.td;function vb(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==L?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==L?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,vb(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function wb(a){X.test(a.type)&&(a.defaultChecked=a.checked)}function xb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function yb(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function zb(a){var b=qb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ab(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}function Bb(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Cb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(yb(b).text=a.text,zb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&X.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}n.extend({clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!hb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ub.innerHTML=a.outerHTML,ub.removeChild(f=ub.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=vb(f),h=vb(a),g=0;null!=(e=h[g]);++g)d[g]&&Cb(e,d[g]);if(b)if(c)for(h=h||vb(a),d=d||vb(f),g=0;null!=(e=h[g]);g++)Bb(e,d[g]);else Bb(a,f);return d=vb(f,"script"),d.length>0&&Ab(d,!i&&vb(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k,m=a.length,o=eb(b),p=[],q=0;m>q;q++)if(f=a[q],f||0===f)if("object"===n.type(f))n.merge(p,f.nodeType?[f]:f);else if(mb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(kb.exec(f)||["",""])[1].toLowerCase(),k=sb[i]||sb._default,h.innerHTML=k[1]+f.replace(jb,"<$1>")+k[2],e=k[0];while(e--)h=h.lastChild;if(!l.leadingWhitespace&&ib.test(f)&&p.push(b.createTextNode(ib.exec(f)[0])),!l.tbody){f="table"!==i||lb.test(f)?""!==k[1]||lb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)n.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}n.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),l.appendChecked||n.grep(vb(p,"input"),wb),q=0;while(f=p[q++])if((!d||-1===n.inArray(f,d))&&(g=n.contains(f.ownerDocument,f),h=vb(o.appendChild(f),"script"),g&&Ab(h),c)){e=0;while(f=h[e++])pb.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.deleteExpando,m=n.event.special;null!=(d=a[h]);h++)if((b||n.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k?delete d[i]:typeof d.removeAttribute!==L?d.removeAttribute(i):d[i]=null,c.push(f))}}}),n.fn.extend({text:function(a){return W(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||z).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(vb(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&Ab(vb(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(vb(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return W(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(gb,""):void 0;if(!("string"!=typeof a||nb.test(a)||!l.htmlSerialize&&hb.test(a)||!l.leadingWhitespace&&ib.test(a)||sb[(kb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(jb,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(vb(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(vb(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,k=this.length,m=this,o=k-1,p=a[0],q=n.isFunction(p);if(q||k>1&&"string"==typeof p&&!l.checkClone&&ob.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(k&&(i=n.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=n.map(vb(i,"script"),yb),f=g.length;k>j;j++)d=i,j!==o&&(d=n.clone(d,!0,!0),f&&n.merge(g,vb(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,n.map(g,zb),j=0;f>j;j++)d=g[j],pb.test(d.type||"")&&!n._data(d,"globalEval")&&n.contains(h,d)&&(d.src?n._evalUrl&&n._evalUrl(d.src):n.globalEval((d.text||d.textContent||d.innerHTML||"").replace(rb,"")));i=c=null}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],g=n(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Db,Eb={};function Fb(b,c){var d=n(c.createElement(b)).appendTo(c.body),e=a.getDefaultComputedStyle?a.getDefaultComputedStyle(d[0]).display:n.css(d[0],"display");return d.detach(),e}function Gb(a){var b=z,c=Eb[a];return c||(c=Fb(a,b),"none"!==c&&c||(Db=(Db||n("