├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── automaton ├── Icon ├── __init__.py ├── config │ ├── Configuration.py │ └── __init__.py ├── core │ ├── Icon │ ├── Module.py │ └── __init__.py ├── input.csv ├── js │ ├── ConnectionListener.js │ └── MessengerListener.js ├── libs │ └── pygooglevoice │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── README │ │ ├── README.rst │ │ ├── bin │ │ ├── asterisk-gvoice-setup │ │ ├── gvi │ │ └── gvoice │ │ ├── docs │ │ ├── Makefile │ │ ├── api.txt │ │ ├── changelog.txt │ │ ├── conf.py │ │ ├── config.txt │ │ ├── examples.txt │ │ ├── index.txt │ │ ├── install.txt │ │ └── scripts.txt │ │ ├── examples │ │ ├── call.py │ │ ├── delete.py │ │ ├── download-mp3.py │ │ ├── folders.py │ │ ├── parse_sms.py │ │ ├── phones.py │ │ ├── search.py │ │ ├── settings.py │ │ ├── sms.py │ │ └── voicemail.py │ │ ├── googlevoice │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── settings.py │ │ ├── tests.py │ │ ├── util.py │ │ └── voice.py │ │ └── setup.py ├── logic.json ├── modules │ ├── Module1.py │ ├── Module2.py │ ├── Module3.py │ └── Module4.py ├── requirements.txt ├── run.sh ├── server.py └── utils │ ├── CsvHelper.py │ ├── DatabaseHelper.py │ ├── DatasourceHelper.py │ ├── LinkedinHelper.py │ ├── LogHelper.py │ ├── MBFHelper.py │ ├── MailHelper.py │ ├── NetworkHelper.py │ ├── SeleniumHelper.py │ ├── SheetsHelper.py │ ├── StateMachineHelper.py │ ├── TextHelper.py │ ├── VoiceHelper.py │ └── __init__.py ├── deploy.php ├── samples ├── google_crawler │ ├── input.csv │ ├── logic.json │ └── modules │ │ ├── testcrawler1.py │ │ ├── testcrawler2.py │ │ └── testcrawler3.py ├── linkedin_recruitment │ ├── logic.json │ └── modules │ │ ├── BotsCreator │ │ ├── BotsCreator.py │ │ ├── Icon │ │ └── __init__.py │ │ ├── BotsCreatorModule.py │ │ ├── ConnectionListener │ │ ├── ConnectionListener.py │ │ └── __init__.py │ │ ├── ConnectionListenerModule.py │ │ ├── ConnectionRequester │ │ ├── ConnectionRequester.py │ │ └── __init__.py │ │ ├── ConnectionRequesterModule.py │ │ ├── Messenger │ │ ├── Messenger.py │ │ └── __init__.py │ │ ├── MessengerListener │ │ ├── MessengerListener.py │ │ └── __init__.py │ │ ├── MessengerListenerModule.py │ │ ├── MessengerModule.py │ │ ├── ProfilesExtractor │ │ ├── ProfilesExtractor.py │ │ └── __init__.py │ │ ├── ProfilesExtractorModule.py │ │ ├── ProfilesFinder │ │ ├── ProfilesFinder.py │ │ └── __init__.py │ │ ├── ProfilesFinderModule.py │ │ ├── ProfilesGenerator │ │ ├── ProfilesGenerator.py │ │ └── __init__.py │ │ ├── ProfilesGeneratorModule.py │ │ ├── UserRequester │ │ ├── UserRequester.py │ │ └── __init__.py │ │ ├── UserRequesterModule.py │ │ └── __init__.py └── numeric_pipeline │ ├── input.csv │ ├── logic.json │ └── modules │ ├── Module1.py │ ├── Module2.py │ ├── Module3.py │ └── Module4.py └── ui ├── bower.json ├── build ├── .DS_Store ├── assets │ ├── common │ │ ├── css │ │ │ ├── main.min.css │ │ │ └── source │ │ │ │ ├── apps │ │ │ │ ├── calendar.css │ │ │ │ ├── gallery.css │ │ │ │ ├── mail.css │ │ │ │ ├── messaging.css │ │ │ │ └── profile.css │ │ │ │ ├── components │ │ │ │ ├── badges-labels.css │ │ │ │ ├── carousel.css │ │ │ │ ├── collapse.css │ │ │ │ ├── modal.css │ │ │ │ ├── notifications-alerts.css │ │ │ │ ├── pagination.css │ │ │ │ ├── progress-bars.css │ │ │ │ ├── steps.css │ │ │ │ ├── tables.css │ │ │ │ ├── tabs.css │ │ │ │ ├── tooltips-popovers.css │ │ │ │ ├── utilities.css │ │ │ │ └── widgets.css │ │ │ │ ├── forms │ │ │ │ ├── autocomplete.css │ │ │ │ ├── basic-form-elements.css │ │ │ │ ├── buttons.css │ │ │ │ ├── checkboxes-radio.css │ │ │ │ ├── dropdowns.css │ │ │ │ ├── form-validation.css │ │ │ │ └── selectboxes.css │ │ │ │ ├── helpers │ │ │ │ ├── base.default.css │ │ │ │ ├── base.responsive.css │ │ │ │ ├── fonts.css │ │ │ │ ├── rtl.version.css │ │ │ │ └── typography.css │ │ │ │ ├── main.css │ │ │ │ ├── pages │ │ │ │ └── pricing-table.css │ │ │ │ ├── themes │ │ │ │ ├── theme-blue.css │ │ │ │ ├── theme-dark.css │ │ │ │ ├── theme-green.css │ │ │ │ ├── theme-inverse.css │ │ │ │ ├── theme-orange.css │ │ │ │ └── theme-red.css │ │ │ │ └── vendors │ │ │ │ ├── chartist-tooltip-plugin.css │ │ │ │ ├── chartist.css │ │ │ │ ├── datatables-fixedcolumns.css │ │ │ │ ├── datatables-responsive.css │ │ │ │ ├── editable-table.css │ │ │ │ ├── eonasdan-bootstrap-datetimepicker.css │ │ │ │ ├── fullcalendar.css │ │ │ │ ├── ionrangeslider.css │ │ │ │ ├── jscrollpane.css │ │ │ │ ├── nestable.css │ │ │ │ ├── select2.css │ │ │ │ └── summernote.css │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.otf │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── icomoon-ultimate.eot │ │ │ ├── icomoon-ultimate.svg │ │ │ ├── icomoon-ultimate.ttf │ │ │ └── icomoon-ultimate.woff │ │ ├── img │ │ │ ├── favicon.114x114.png │ │ │ ├── favicon.144x144.png │ │ │ ├── favicon.57x57.png │ │ │ ├── favicon.72x72.png │ │ │ ├── favicon.png │ │ │ ├── gray.png │ │ │ ├── logo-inverse.png │ │ │ ├── logo.png │ │ │ └── temp │ │ │ │ ├── amazon.jpg │ │ │ │ ├── avatars │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ └── 5.jpg │ │ │ │ ├── login │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── 4.jpg │ │ │ │ └── photos │ │ │ │ ├── 1.jpeg │ │ │ │ ├── 10.jpeg │ │ │ │ ├── 2.jpeg │ │ │ │ ├── 3.jpeg │ │ │ │ ├── 4.jpeg │ │ │ │ ├── 5.jpeg │ │ │ │ ├── 6.jpeg │ │ │ │ ├── 7.jpeg │ │ │ │ ├── 8.jpeg │ │ │ │ └── 9.jpeg │ │ └── js │ │ │ ├── common.js │ │ │ ├── demo.temp.js │ │ │ └── version_angular │ │ │ └── app.js │ └── vendors │ │ ├── angular-route │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── angular-route.js │ │ ├── angular-route.min.js │ │ ├── angular-route.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── angular │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── autosize │ │ ├── LICENSE.md │ │ ├── bower.json │ │ ├── build.js │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── autosize.js │ │ │ └── autosize.min.js │ │ ├── example │ │ │ └── index.html │ │ ├── package.json │ │ ├── readme.md │ │ └── src │ │ │ └── autosize.js │ │ ├── bootstrap-rtl │ │ ├── Gruntfile.js │ │ ├── LICENSE.bootstrap │ │ ├── README.md │ │ ├── assets │ │ │ ├── ico │ │ │ │ └── favicon.png │ │ │ └── js │ │ │ │ ├── holder.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── respond.min.js │ │ ├── bower.json │ │ ├── dist │ │ │ ├── cdnjs │ │ │ │ ├── 3.1.1-rc1 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.1.1-rc2 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.1.1 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.1.2 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.2.0-rc1 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.2.0-rc2 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.2.0-rc3 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.2.0-rc4 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.3.1-rc1 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.3.1-rc2 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── 3.3.1 │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ └── 3.3.4 │ │ │ │ │ └── css │ │ │ │ │ ├── bootstrap-flipped.css │ │ │ │ │ ├── bootstrap-flipped.css.map │ │ │ │ │ ├── bootstrap-flipped.min.css │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ ├── css │ │ │ │ ├── bootstrap-flipped.css │ │ │ │ ├── bootstrap-flipped.css.map │ │ │ │ ├── bootstrap-flipped.min.css │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ └── bootstrap-rtl.min.css │ │ │ └── js │ │ │ │ ├── holder.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── respond.min.js │ │ ├── examples │ │ │ ├── carousel │ │ │ │ ├── carousel.css │ │ │ │ └── index.html │ │ │ ├── originals │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── assets │ │ │ │ │ ├── flash │ │ │ │ │ │ └── ZeroClipboard.swf │ │ │ │ │ └── js │ │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ │ │ │ ├── ie8-responsive-file-warning.js │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── holder.js │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ │ ├── bootstrap-rtl.min.css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ └── examples │ │ │ │ │ ├── blog │ │ │ │ │ ├── blog.css │ │ │ │ │ └── index.html │ │ │ │ │ ├── carousel │ │ │ │ │ ├── carousel.css │ │ │ │ │ └── index.html │ │ │ │ │ ├── cover │ │ │ │ │ ├── cover.css │ │ │ │ │ └── index.html │ │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.css │ │ │ │ │ └── index.html │ │ │ │ │ ├── grid │ │ │ │ │ ├── grid.css │ │ │ │ │ └── index.html │ │ │ │ │ ├── jumbotron-narrow │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron-narrow.css │ │ │ │ │ ├── jumbotron │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron.css │ │ │ │ │ ├── justified-nav │ │ │ │ │ ├── index.html │ │ │ │ │ └── justified-nav.css │ │ │ │ │ ├── navbar-fixed-top │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-fixed-top.css │ │ │ │ │ ├── navbar-static-top │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-static-top.css │ │ │ │ │ ├── navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar.css │ │ │ │ │ ├── non-responsive │ │ │ │ │ ├── index.html │ │ │ │ │ └── non-responsive.css │ │ │ │ │ ├── offcanvas │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ └── offcanvas.js │ │ │ │ │ ├── signin │ │ │ │ │ ├── index.html │ │ │ │ │ └── signin.css │ │ │ │ │ ├── starter-template │ │ │ │ │ ├── index.html │ │ │ │ │ └── starter-template.css │ │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ │ ├── sticky-footer │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer.css │ │ │ │ │ ├── theme │ │ │ │ │ ├── index.html │ │ │ │ │ └── theme.css │ │ │ │ │ └── tooltip-viewport │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tooltip-viewport.css │ │ │ │ │ └── tooltip-viewport.js │ │ │ └── rtl │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ ├── input-groups.html │ │ │ │ ├── navbar.html │ │ │ │ ├── popovers.html │ │ │ │ └── rtl.css │ │ ├── less │ │ │ ├── alerts-rtl.less │ │ │ ├── badges-rtl.less │ │ │ ├── bootstrap-flipped.less │ │ │ ├── bootstrap-rtl.less │ │ │ ├── button-groups-rtl.less │ │ │ ├── carousel-rtl.less │ │ │ ├── close-rtl.less │ │ │ ├── dropdowns-rtl.less │ │ │ ├── flipped.less │ │ │ ├── forms-rtl.less │ │ │ ├── grid-rtl.less │ │ │ ├── input-groups-rtl.less │ │ │ ├── list-group-rtl.less │ │ │ ├── media-rtl.less │ │ │ ├── mixins-flipped.less │ │ │ ├── mixins-rtl.less │ │ │ ├── mixins │ │ │ │ ├── border-radius-flipped.less │ │ │ │ ├── gradients-rtl.less │ │ │ │ ├── grid-framework-rtl.less │ │ │ │ ├── grid-rtl.less │ │ │ │ └── pagination-rtl.less │ │ │ ├── modals-rtl.less │ │ │ ├── navbar-rtl.less │ │ │ ├── navs-rtl.less │ │ │ ├── normalize-rtl.less │ │ │ ├── pager-rtl.less │ │ │ ├── pagination-rtl.less │ │ │ ├── panels-rtl.less │ │ │ ├── popovers-rtl.less │ │ │ ├── progress-bars-rtl.less │ │ │ ├── responsive-embed-rtl.less │ │ │ ├── tables-rtl.less │ │ │ ├── type-rtl.less │ │ │ ├── utilities-rtl.less │ │ │ └── variables-rtl.less │ │ └── package.json │ │ ├── bootstrap-show-password │ │ ├── README.md │ │ ├── assets │ │ │ ├── bootstrap-v2 │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── bootstrap-v3 │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ └── jquery.min.js │ │ ├── bootstrap-show-password.jquery.json │ │ ├── bootstrap-show-password.js │ │ ├── bootstrap-show-password.min.js │ │ ├── bower.json │ │ ├── gulpfile.js │ │ ├── index.html │ │ ├── package.json │ │ ├── v2.html │ │ └── v3.html │ │ ├── bootstrap-sweetalert │ │ ├── Gruntfile.coffee │ │ ├── README.md │ │ ├── assets │ │ │ ├── bootstrap-sweetalert.png │ │ │ ├── docs.css │ │ │ └── thumbs-up.jpg │ │ ├── bootstrap │ │ │ ├── mixins.less │ │ │ └── variables.less │ │ ├── bower.json │ │ ├── dev │ │ │ ├── gulpfile-wrap-template.js │ │ │ ├── ie9.css │ │ │ ├── loader-animation.css │ │ │ ├── modules │ │ │ │ ├── default-params.js │ │ │ │ ├── handle-click.js │ │ │ │ ├── handle-dom.js │ │ │ │ ├── handle-key.js │ │ │ │ ├── handle-swal-dom.js │ │ │ │ ├── injected-html.js │ │ │ │ ├── set-params.js │ │ │ │ └── utils.js │ │ │ └── sweetalert.es6.js │ │ ├── dist │ │ │ ├── sweetalert.css │ │ │ ├── sweetalert.js │ │ │ └── sweetalert.min.js │ │ ├── index.html │ │ ├── lib │ │ │ ├── sweet-alert-animations.less │ │ │ ├── sweet-alert-combine.less │ │ │ └── sweet-alert.less │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ └── tests.js │ │ ├── bootstrap │ │ ├── CHANGELOG.md │ │ ├── Gemfile.lock │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── npm.js │ │ │ │ └── umd │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util.js │ │ ├── grunt │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-sass-compile │ │ │ │ ├── libsass.js │ │ │ │ └── sass.js │ │ │ ├── change-version.js │ │ │ ├── configBridge.json │ │ │ ├── npm-shrinkwrap.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.js.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ └── src │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util.js │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.nuspec │ │ │ └── bootstrap.sass.nuspec │ │ ├── package.js │ │ ├── package.json │ │ ├── sache.json │ │ └── scss │ │ │ ├── _alert.scss │ │ │ ├── _animation.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities-background.scss │ │ │ ├── _utilities-responsive.scss │ │ │ ├── _utilities-spacing.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-flex.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ └── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _label.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _navbar-align.scss │ │ │ ├── _pagination.scss │ │ │ ├── _progress.scss │ │ │ ├── _pulls.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ └── _text-truncate.scss │ │ ├── c3 │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── c3.css │ │ ├── c3.js │ │ ├── c3.min.css │ │ ├── c3.min.js │ │ ├── extensions │ │ │ ├── chart-bubble │ │ │ │ ├── bubble.js │ │ │ │ └── index.html │ │ │ ├── exporter │ │ │ │ ├── config.json │ │ │ │ ├── phantom-exporter.js │ │ │ │ └── test.png │ │ │ └── js │ │ │ │ └── c3ext.js │ │ └── karma.conf.js │ │ ├── chartist-plugin-tooltip │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── chartist-plugin-tooltip.js │ │ │ ├── chartist-plugin-tooltip.min.js │ │ │ └── chartist-plugin-tooltip.min.js.map │ │ └── tasks │ │ │ ├── aliases.yml │ │ │ ├── clean.js │ │ │ ├── copy.js │ │ │ ├── jasmine.js │ │ │ ├── jshint.js │ │ │ ├── uglify.js │ │ │ └── umd.js │ │ ├── chartist │ │ ├── CHANGELOG.md │ │ ├── CODINGSTYLE.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ └── dist │ │ │ ├── chartist.css │ │ │ ├── chartist.css.map │ │ │ ├── chartist.js │ │ │ ├── chartist.min.css │ │ │ ├── chartist.min.js │ │ │ ├── chartist.min.js.map │ │ │ └── scss │ │ │ ├── chartist.scss │ │ │ └── settings │ │ │ └── _chartist-settings.scss │ │ ├── cleanhtmlaudioplayer │ │ └── src │ │ │ ├── jquery.cleanaudioplayer.js │ │ │ ├── player.css │ │ │ └── player.less │ │ ├── cleanhtmlvideoplayer │ │ └── src │ │ │ ├── jquery.cleanvideoplayer.js │ │ │ ├── player.css │ │ │ └── player.less │ │ ├── d3 │ │ ├── README.md │ │ ├── bower.json │ │ ├── d3.js │ │ └── d3.min.js │ │ ├── datatables-fixedcolumns │ │ ├── Issue_template.txt │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── fixedColumns.bootstrap.scss │ │ │ ├── fixedColumns.bootstrap4.scss │ │ │ ├── fixedColumns.dataTables.scss │ │ │ ├── fixedColumns.foundation.scss │ │ │ ├── fixedColumns.jqueryui.scss │ │ │ └── fixedColumns.semanticui.scss │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── fixedColumns().cellIndex().xml │ │ │ │ ├── fixedColumns().relayout().xml │ │ │ │ ├── fixedColumns().rowIndex().xml │ │ │ │ ├── fixedColumns().update().xml │ │ │ │ ├── fixedColumns().xml │ │ │ │ └── rows().recalcHeight().xml │ │ │ └── option │ │ │ │ ├── fixedColumns.heightMatch.xml │ │ │ │ ├── fixedColumns.leftColumns.xml │ │ │ │ ├── fixedColumns.rightColumns.xml │ │ │ │ └── fixedColumns.xml │ │ ├── examples │ │ │ ├── index.xml │ │ │ ├── initialisation │ │ │ │ ├── colvis.xml │ │ │ │ ├── css_size.xml │ │ │ │ ├── index.xml │ │ │ │ ├── index_column.xml │ │ │ │ ├── left_right_columns.xml │ │ │ │ ├── right_column.xml │ │ │ │ ├── server-side-processing.xml │ │ │ │ ├── simple.xml │ │ │ │ ├── size_fixed.xml │ │ │ │ ├── size_fluid.xml │ │ │ │ └── two_columns.xml │ │ │ ├── integration │ │ │ │ ├── api.xml │ │ │ │ ├── index.xml │ │ │ │ ├── select-checkbox.xml │ │ │ │ └── select.xml │ │ │ └── styling │ │ │ │ ├── bootstrap.xml │ │ │ │ ├── bootstrap4.xml │ │ │ │ ├── col_filter.xml │ │ │ │ ├── colvis.xml │ │ │ │ ├── foundation.xml │ │ │ │ ├── index.xml │ │ │ │ ├── jqueryui.xml │ │ │ │ ├── rowspan.xml │ │ │ │ ├── rtl.xml │ │ │ │ ├── semanticui.xml │ │ │ │ └── server-side-processing.xml │ │ ├── js │ │ │ └── dataTables.fixedColumns.js │ │ └── make.sh │ │ ├── datatables-responsive │ │ ├── License.txt │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── responsive.bootstrap.scss │ │ │ ├── responsive.dataTables.scss │ │ │ ├── responsive.foundation.scss │ │ │ └── responsive.jqueryui.scss │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── responsive.index().xml │ │ │ │ ├── responsive.rebuild().xml │ │ │ │ └── responsive.recalc().xml │ │ │ └── option │ │ │ │ ├── responsive.breakpoints.xml │ │ │ │ ├── responsive.details.renderer.xml │ │ │ │ ├── responsive.details.target.xml │ │ │ │ ├── responsive.details.type.xml │ │ │ │ ├── responsive.details.xml │ │ │ │ └── responsive.xml │ │ ├── examples │ │ │ ├── child-rows │ │ │ │ ├── column-control.xml │ │ │ │ ├── custom-renderer.xml │ │ │ │ ├── disable-child-rows.xml │ │ │ │ ├── index.xml │ │ │ │ ├── right-column.xml │ │ │ │ └── whole-row-control.xml │ │ │ ├── display-control │ │ │ │ ├── auto.xml │ │ │ │ ├── classes.xml │ │ │ │ ├── complexHeader.xml │ │ │ │ ├── fixedHeader.xml │ │ │ │ ├── index.xml │ │ │ │ └── init-classes.xml │ │ │ ├── index.xml │ │ │ ├── initialisation │ │ │ │ ├── ajax.xml │ │ │ │ ├── className.xml │ │ │ │ ├── default.xml │ │ │ │ ├── index.xml │ │ │ │ ├── new.xml │ │ │ │ └── option.xml │ │ │ └── styling │ │ │ │ ├── bootstrap.xml │ │ │ │ ├── compact.xml │ │ │ │ ├── foundation.xml │ │ │ │ ├── index.xml │ │ │ │ ├── jqueryui.xml │ │ │ │ └── scrolling.xml │ │ ├── js │ │ │ └── dataTables.responsive.js │ │ └── make.sh │ │ ├── datatables │ │ ├── Contributing.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── license.txt │ │ └── media │ │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.min.css │ │ │ ├── dataTables.bootstrap4.css │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ ├── dataTables.foundation.css │ │ │ ├── dataTables.foundation.min.css │ │ │ ├── dataTables.jqueryui.css │ │ │ ├── dataTables.jqueryui.min.css │ │ │ ├── dataTables.material.css │ │ │ ├── dataTables.material.min.css │ │ │ ├── dataTables.semanticui.css │ │ │ ├── dataTables.semanticui.min.css │ │ │ ├── dataTables.uikit.css │ │ │ ├── dataTables.uikit.min.css │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.min.css │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── favicon.ico │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── dataTables.bootstrap4.js │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ ├── dataTables.foundation.js │ │ │ ├── dataTables.foundation.min.js │ │ │ ├── dataTables.jqueryui.js │ │ │ ├── dataTables.jqueryui.min.js │ │ │ ├── dataTables.material.js │ │ │ ├── dataTables.material.min.js │ │ │ ├── dataTables.semanticui.js │ │ │ ├── dataTables.semanticui.min.js │ │ │ ├── dataTables.uikit.js │ │ │ ├── dataTables.uikit.min.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.js │ │ ├── editable-table │ │ ├── README.md │ │ ├── external │ │ │ └── google-code-prettify │ │ │ │ ├── lang-apollo.js │ │ │ │ ├── lang-basic.js │ │ │ │ ├── lang-clj.js │ │ │ │ ├── lang-css.js │ │ │ │ ├── lang-dart.js │ │ │ │ ├── lang-erlang.js │ │ │ │ ├── lang-go.js │ │ │ │ ├── lang-hs.js │ │ │ │ ├── lang-lisp.js │ │ │ │ ├── lang-llvm.js │ │ │ │ ├── lang-lua.js │ │ │ │ ├── lang-matlab.js │ │ │ │ ├── lang-ml.js │ │ │ │ ├── lang-mumps.js │ │ │ │ ├── lang-n.js │ │ │ │ ├── lang-pascal.js │ │ │ │ ├── lang-proto.js │ │ │ │ ├── lang-r.js │ │ │ │ ├── lang-rd.js │ │ │ │ ├── lang-scala.js │ │ │ │ ├── lang-sql.js │ │ │ │ ├── lang-tcl.js │ │ │ │ ├── lang-tex.js │ │ │ │ ├── lang-vb.js │ │ │ │ ├── lang-vhdl.js │ │ │ │ ├── lang-wiki.js │ │ │ │ ├── lang-xq.js │ │ │ │ ├── lang-yaml.js │ │ │ │ ├── prettify.css │ │ │ │ ├── prettify.js │ │ │ │ └── run_prettify.js │ │ ├── index.css │ │ ├── index.html │ │ ├── mindmup-editabletable.js │ │ ├── numeric-input-example.js │ │ └── republish.sh │ │ ├── eonasdan-bootstrap-datetimepicker │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── css │ │ │ │ ├── bootstrap-datetimepicker-standalone.css │ │ │ │ ├── bootstrap-datetimepicker.css │ │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ └── js │ │ │ │ └── bootstrap-datetimepicker.min.js │ │ ├── component.json │ │ ├── composer.json │ │ ├── docs │ │ │ ├── ChangeLog.md │ │ │ ├── ContributorsGuide.md │ │ │ ├── Events.md │ │ │ ├── Extras.md │ │ │ ├── FAQ.md │ │ │ ├── Functions.md │ │ │ ├── Installing.md │ │ │ ├── Options.md │ │ │ ├── Version 4 Changelog.md │ │ │ ├── Version 4 Contributors guide.md │ │ │ └── index.md │ │ ├── mkdocs.yml │ │ ├── package.json │ │ ├── src │ │ │ ├── js │ │ │ │ └── bootstrap-datetimepicker.js │ │ │ ├── less │ │ │ │ ├── _bootstrap-datetimepicker.less │ │ │ │ └── bootstrap-datetimepicker-build.less │ │ │ ├── nuget │ │ │ │ ├── Bootstrap.v3.Datetimepicker.CSS.nuspec │ │ │ │ ├── Bootstrap.v3.Datetimepicker.nuspec │ │ │ │ ├── NuGet.exe │ │ │ │ └── install.ps1 │ │ │ └── sass │ │ │ │ ├── _bootstrap-datetimepicker.scss │ │ │ │ └── bootstrap-datetimepicker-build.scss │ │ └── tasks │ │ │ └── bump_version.js │ │ ├── fullcalendar │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ └── dist │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ ├── gcal.js │ │ │ ├── lang-all.js │ │ │ └── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── gsap │ │ ├── README.md │ │ ├── bower.json │ │ ├── package.json │ │ └── src │ │ │ ├── minified │ │ │ ├── TimelineLite.min.js │ │ │ ├── TimelineMax.min.js │ │ │ ├── TweenLite.min.js │ │ │ ├── TweenMax.min.js │ │ │ ├── easing │ │ │ │ └── EasePack.min.js │ │ │ ├── jquery.gsap.min.js │ │ │ ├── plugins │ │ │ │ ├── AttrPlugin.min.js │ │ │ │ ├── BezierPlugin.min.js │ │ │ │ ├── CSSPlugin.min.js │ │ │ │ ├── CSSRulePlugin.min.js │ │ │ │ ├── ColorPropsPlugin.min.js │ │ │ │ ├── DirectionalRotationPlugin.min.js │ │ │ │ ├── EaselPlugin.min.js │ │ │ │ ├── EndArrayPlugin.min.js │ │ │ │ ├── ModifiersPlugin.min.js │ │ │ │ ├── RaphaelPlugin.min.js │ │ │ │ ├── RoundPropsPlugin.min.js │ │ │ │ ├── ScrollToPlugin.min.js │ │ │ │ └── TextPlugin.min.js │ │ │ └── utils │ │ │ │ └── Draggable.min.js │ │ │ └── uncompressed │ │ │ ├── TimelineLite.js │ │ │ ├── TimelineMax.js │ │ │ ├── TweenLite.js │ │ │ ├── TweenMax.js │ │ │ ├── easing │ │ │ └── EasePack.js │ │ │ ├── jquery.gsap.js │ │ │ ├── plugins │ │ │ ├── AttrPlugin.js │ │ │ ├── BezierPlugin.js │ │ │ ├── CSSPlugin.js │ │ │ ├── CSSRulePlugin.js │ │ │ ├── ColorPropsPlugin.js │ │ │ ├── DirectionalRotationPlugin.js │ │ │ ├── EaselPlugin.js │ │ │ ├── EndArrayPlugin.js │ │ │ ├── ModifiersPlugin.js │ │ │ ├── RaphaelPlugin.js │ │ │ ├── RoundPropsPlugin.js │ │ │ ├── ScrollToPlugin.js │ │ │ ├── TEMPLATE_Plugin.js │ │ │ └── TextPlugin.js │ │ │ └── utils │ │ │ └── Draggable.js │ │ ├── hackertyper │ │ ├── hackertyper.js │ │ └── kernel.txt │ │ ├── html5-form-validation │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.validation.js │ │ │ └── jquery.validation.min.js │ │ ├── example │ │ │ ├── demo.html │ │ │ ├── jquery.validation.css │ │ │ └── loader-medium.gif │ │ ├── html5-form-validation.jquery.json │ │ ├── package.json │ │ └── src │ │ │ └── jquery.validation.js │ │ ├── ionrangeslider │ │ ├── _tmp │ │ │ └── logo-ion-range-slider.png │ │ ├── bower.json │ │ ├── css │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ ├── ion.rangeSlider.skinHTML5.css │ │ │ ├── ion.rangeSlider.skinModern.css │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ └── normalize.css │ │ ├── history.md │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-modern.png │ │ │ ├── sprite-skin-nice.png │ │ │ └── sprite-skin-simple.png │ │ ├── index.md │ │ ├── js │ │ │ ├── ion.rangeSlider.js │ │ │ └── ion.rangeSlider.min.js │ │ ├── package.json │ │ ├── readme.md │ │ └── readme.ru.md │ │ ├── jquery-countTo │ │ ├── LICENSE.txt │ │ ├── bower.json │ │ ├── example.html │ │ ├── jquery.countTo.js │ │ ├── package.json │ │ └── readme.md │ │ ├── jquery-mask-plugin │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── dist │ │ │ ├── jquery.mask.js │ │ │ └── jquery.mask.min.js │ │ ├── docker-compose.yml │ │ ├── package.js │ │ ├── package.json │ │ └── src │ │ │ └── jquery.mask.js │ │ ├── jquery-mousewheel │ │ ├── ChangeLog.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mousewheel.js │ │ └── jquery.mousewheel.min.js │ │ ├── jquery-typeahead │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.typeahead.min.css │ │ │ └── jquery.typeahead.min.js │ │ ├── example │ │ │ ├── backdrop_v1 │ │ │ │ ├── demo-backdrop_v1.css │ │ │ │ └── demo-backdrop_v1.html │ │ │ ├── demo-bootstrap3.html │ │ │ ├── demo-country_v2.html │ │ │ ├── demo-groupTemplate_v1.html │ │ │ ├── demo-hockey_v1.html │ │ │ ├── game_v3 │ │ │ │ ├── game_v3.css │ │ │ │ └── game_v3.html │ │ │ ├── navigation_v1 │ │ │ │ ├── navigation_v1.css │ │ │ │ └── navigation_v1.html │ │ │ └── requirejs_v1 │ │ │ │ ├── requirejs_v1.html │ │ │ │ └── requirejs_v1.js │ │ ├── gulpfile.babel.js │ │ ├── package.json │ │ ├── src │ │ │ ├── jquery.typeahead.css │ │ │ ├── jquery.typeahead.js │ │ │ └── jquery.typeahead.scss │ │ ├── test │ │ │ ├── integration │ │ │ │ ├── anyValueType-test.js │ │ │ │ ├── request-test.js │ │ │ │ └── sanitize-test.js │ │ │ ├── option │ │ │ │ ├── display-test.js │ │ │ │ ├── dropdownFilter-test.js │ │ │ │ ├── emptyTemplate-test.js │ │ │ │ ├── groupTemplate-test.js │ │ │ │ └── source-test.js │ │ │ ├── test.js │ │ │ └── unit │ │ │ │ ├── config-test.js │ │ │ │ └── helper-test.js │ │ └── typeahead.jquery.json │ │ ├── jquery │ │ ├── AUTHORS.txt │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── release-notes.js │ │ │ └── release.js │ │ ├── component.json │ │ ├── composer.json │ │ ├── jquery-migrate.js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── package.json │ │ ├── speed │ │ │ ├── benchmark.js │ │ │ ├── benchmarker.css │ │ │ ├── benchmarker.js │ │ │ ├── closest.html │ │ │ ├── css.html │ │ │ ├── event.html │ │ │ ├── filter.html │ │ │ ├── find.html │ │ │ ├── index.html │ │ │ ├── jquery-basis.js │ │ │ └── slice.vs.concat.html │ │ ├── src │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── script.js │ │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── css.js │ │ │ ├── data.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── event-alias.js │ │ │ ├── event.js │ │ │ ├── exports.js │ │ │ ├── intro.js │ │ │ ├── manipulation.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── serialize.js │ │ │ ├── sizzle-jquery.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ └── wrap.js │ │ └── test │ │ │ ├── data │ │ │ ├── 1x1.jpg │ │ │ ├── ajax │ │ │ │ └── unreleasedXHR.html │ │ │ ├── atom+xml.php │ │ │ ├── badcall.js │ │ │ ├── badjson.js │ │ │ ├── cleanScript.html │ │ │ ├── core │ │ │ │ └── cc_on.html │ │ │ ├── dashboard.xml │ │ │ ├── dimensions │ │ │ │ ├── documentLarge.html │ │ │ │ └── documentSmall.html │ │ │ ├── echoData.php │ │ │ ├── echoQuery.php │ │ │ ├── errorWithJSON.php │ │ │ ├── errorWithText.php │ │ │ ├── etag.php │ │ │ ├── evalScript.php │ │ │ ├── event │ │ │ │ ├── focusElem.html │ │ │ │ ├── longLoadScript.php │ │ │ │ ├── promiseReady.html │ │ │ │ └── syncReady.html │ │ │ ├── headers.php │ │ │ ├── if_modified_since.php │ │ │ ├── iframe.html │ │ │ ├── jquery-1.9.1.ajax_xhr.min.js │ │ │ ├── json.php │ │ │ ├── json_obj.js │ │ │ ├── jsonp.php │ │ │ ├── manipulation │ │ │ │ └── iframe-denied.html │ │ │ ├── name.html │ │ │ ├── name.php │ │ │ ├── nocontent.php │ │ │ ├── offset │ │ │ │ ├── absolute.html │ │ │ │ ├── body.html │ │ │ │ ├── fixed.html │ │ │ │ ├── relative.html │ │ │ │ ├── scroll.html │ │ │ │ ├── static.html │ │ │ │ └── table.html │ │ │ ├── params_html.php │ │ │ ├── readywaitasset.js │ │ │ ├── readywaitloader.js │ │ │ ├── script.php │ │ │ ├── selector │ │ │ │ ├── html5_selector.html │ │ │ │ └── sizzle_cache.html │ │ │ ├── statusText.php │ │ │ ├── support │ │ │ │ ├── bodyBackground.html │ │ │ │ ├── boxSizing.html │ │ │ │ ├── csp.js │ │ │ │ ├── csp.php │ │ │ │ ├── shrinkWrapBlocks.html │ │ │ │ └── testElementCrash.html │ │ │ ├── test.html │ │ │ ├── test.js │ │ │ ├── test.php │ │ │ ├── test2.html │ │ │ ├── test3.html │ │ │ ├── testinit.js │ │ │ ├── testrunner.js │ │ │ ├── testsuite.css │ │ │ ├── text.php │ │ │ ├── ua.txt │ │ │ ├── with_fries.xml │ │ │ └── with_fries_over_jsonp.php │ │ │ ├── delegatetest.html │ │ │ ├── hovertest.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── localfile.html │ │ │ ├── networkerror.html │ │ │ ├── readywait.html │ │ │ ├── unit │ │ │ ├── ajax.js │ │ │ ├── attributes.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── css.js │ │ │ ├── data.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── event.js │ │ │ ├── exports.js │ │ │ ├── manipulation.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ └── wrap.js │ │ │ └── xhtml.php │ │ ├── jscrollpane │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── ajax.html │ │ ├── ajax_content.html │ │ ├── anchors.html │ │ ├── api.html │ │ ├── arrow_hover.html │ │ ├── arrow_positions.html │ │ ├── arrows.html │ │ ├── auto_reinitialise.html │ │ ├── basic.html │ │ ├── bower.json │ │ ├── build │ │ │ ├── Gruntfile.js │ │ │ └── package.json │ │ ├── caps.html │ │ ├── changelog.html │ │ ├── destroy.html │ │ ├── drag_size.html │ │ ├── dynamic_content.html │ │ ├── dynamic_height.html │ │ ├── dynamic_width.html │ │ ├── events.html │ │ ├── faqs.html │ │ ├── fixed_width.html │ │ ├── focus.html │ │ ├── fullpage_scroll.html │ │ ├── iframe.html │ │ ├── iframe2.html │ │ ├── iframe_content1.html │ │ ├── iframe_content2.html │ │ ├── iframe_content3.html │ │ ├── iframe_content4.html │ │ ├── image.html │ │ ├── image │ │ │ └── logo.png │ │ ├── image2.html │ │ ├── index.html │ │ ├── invisibles.html │ │ ├── issues │ │ │ ├── 7 │ │ │ │ ├── after.html │ │ │ │ ├── before.html │ │ │ │ ├── index.html │ │ │ │ ├── jscrollpane-2b1.css │ │ │ │ ├── jscrollpane-2b2.js │ │ │ │ └── native.html │ │ │ ├── 11 │ │ │ │ ├── after.html │ │ │ │ ├── before.html │ │ │ │ ├── brs_main.css │ │ │ │ ├── index.html │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ ├── jscrollpane-2b3.css │ │ │ │ ├── jscrollpane-2b3.js │ │ │ │ └── native.html │ │ │ └── 12 │ │ │ │ ├── after.html │ │ │ │ ├── after_reinit.html │ │ │ │ ├── before.html │ │ │ │ ├── before_reinit.html │ │ │ │ ├── brs_main.css │ │ │ │ ├── index.html │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ ├── jscrollpane-2b3.css │ │ │ │ ├── jscrollpane-2b3.js │ │ │ │ ├── native.html │ │ │ │ └── wrapped.html │ │ ├── known_issues.html │ │ ├── less_basic.html │ │ ├── mwheel_intent.html │ │ ├── override_animate.html │ │ ├── runeimp.html │ │ ├── runeimp2.html │ │ ├── script │ │ │ ├── demo.js │ │ │ ├── jquery.jscrollpane.js │ │ │ ├── jquery.jscrollpane.min.js │ │ │ ├── jquery.mousewheel.js │ │ │ └── mwheelIntent.js │ │ ├── scroll_on_left.html │ │ ├── scroll_to.html │ │ ├── scroll_to_animate.html │ │ ├── settings.html │ │ ├── short.html │ │ ├── style │ │ │ ├── demo.css │ │ │ └── jquery.jscrollpane.css │ │ ├── themes │ │ │ └── lozenge │ │ │ │ ├── image │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── index.html │ │ │ │ └── style │ │ │ │ └── jquery.jscrollpane.lozenge.css │ │ └── v1.html │ │ ├── ladda │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── ladda-themed.scss │ │ │ └── ladda.scss │ │ ├── dist │ │ │ ├── ladda-themeless.min.css │ │ │ ├── ladda.jquery.min.js │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── ladda.jquery.js │ │ │ ├── ladda.js │ │ │ └── spin.js │ │ └── test │ │ │ ├── bootstrap.html │ │ │ ├── bootstrap.jquery.html │ │ │ └── form.html │ │ ├── moment-timezone │ │ ├── README.md │ │ ├── bower.json │ │ ├── builds │ │ │ ├── moment-timezone-with-data-2010-2020.js │ │ │ ├── moment-timezone-with-data-2010-2020.min.js │ │ │ ├── moment-timezone-with-data.js │ │ │ ├── moment-timezone-with-data.min.js │ │ │ └── moment-timezone.min.js │ │ ├── changelog.md │ │ ├── composer.json │ │ ├── data │ │ │ ├── meta │ │ │ │ └── latest.json │ │ │ ├── packed │ │ │ │ └── latest.json │ │ │ └── unpacked │ │ │ │ └── latest.json │ │ ├── moment-timezone-utils.js │ │ └── moment-timezone.js │ │ ├── moment │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ ├── moment.min.js │ │ │ └── tests.js │ │ ├── moment.d.ts │ │ ├── moment.js │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── create │ │ │ │ │ ├── check-overflow.js │ │ │ │ │ ├── date-from-array.js │ │ │ │ │ ├── from-anything.js │ │ │ │ │ ├── from-array.js │ │ │ │ │ ├── from-object.js │ │ │ │ │ ├── from-string-and-array.js │ │ │ │ │ ├── from-string-and-format.js │ │ │ │ │ ├── from-string.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── parsing-flags.js │ │ │ │ │ ├── utc.js │ │ │ │ │ └── valid.js │ │ │ │ ├── duration │ │ │ │ │ ├── abs.js │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── as.js │ │ │ │ │ ├── bubble.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── duration.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── humanize.js │ │ │ │ │ ├── iso-string.js │ │ │ │ │ └── prototype.js │ │ │ │ ├── format │ │ │ │ │ └── format.js │ │ │ │ ├── locale │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── invalid.js │ │ │ │ │ ├── lists.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── ordinal.js │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── relative.js │ │ │ │ │ └── set.js │ │ │ │ ├── moment │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── compare.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── creation-data.js │ │ │ │ │ ├── diff.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── from.js │ │ │ │ │ ├── get-set.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── min-max.js │ │ │ │ │ ├── moment.js │ │ │ │ │ ├── now.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── start-end-of.js │ │ │ │ │ ├── to-type.js │ │ │ │ │ ├── to.js │ │ │ │ │ └── valid.js │ │ │ │ ├── parse │ │ │ │ │ ├── regex.js │ │ │ │ │ └── token.js │ │ │ │ ├── units │ │ │ │ │ ├── aliases.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── day-of-month.js │ │ │ │ │ ├── day-of-week.js │ │ │ │ │ ├── day-of-year.js │ │ │ │ │ ├── hour.js │ │ │ │ │ ├── millisecond.js │ │ │ │ │ ├── minute.js │ │ │ │ │ ├── month.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── quarter.js │ │ │ │ │ ├── second.js │ │ │ │ │ ├── timestamp.js │ │ │ │ │ ├── timezone.js │ │ │ │ │ ├── units.js │ │ │ │ │ ├── week-calendar-utils.js │ │ │ │ │ ├── week-year.js │ │ │ │ │ ├── week.js │ │ │ │ │ └── year.js │ │ │ │ └── utils │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ ├── abs-floor.js │ │ │ │ │ ├── abs-round.js │ │ │ │ │ ├── compare-arrays.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── deprecate.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── is-array.js │ │ │ │ │ ├── is-date.js │ │ │ │ │ ├── is-function.js │ │ │ │ │ ├── is-object.js │ │ │ │ │ ├── is-undefined.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── to-int.js │ │ │ │ │ └── zero-fill.js │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── th.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.js │ │ └── templates │ │ │ ├── amd-named.js │ │ │ ├── amd.js │ │ │ ├── default.js │ │ │ ├── globals.js │ │ │ ├── locale-header.js │ │ │ └── test-header.js │ │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ └── jquery.nestable.js │ │ ├── owl.carousel │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── _config.json │ │ ├── bower.json │ │ ├── dist │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── owl.carousel.css │ │ │ │ ├── owl.carousel.min.css │ │ │ │ ├── owl.theme.default.css │ │ │ │ ├── owl.theme.default.min.css │ │ │ │ ├── owl.theme.green.css │ │ │ │ ├── owl.theme.green.min.css │ │ │ │ └── owl.video.play.png │ │ │ ├── owl.carousel.js │ │ │ └── owl.carousel.min.js │ │ ├── docs_src │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── animate.css │ │ │ │ ├── img │ │ │ │ │ ├── bird_blue_32.png │ │ │ │ │ ├── download.png │ │ │ │ │ ├── feature-drag.png │ │ │ │ │ ├── feature-modern.png │ │ │ │ │ ├── feature-module.png │ │ │ │ │ ├── feature-options.png │ │ │ │ │ ├── feature-responsive.png │ │ │ │ │ ├── feature-zombie.png │ │ │ │ │ ├── owl-logo.png │ │ │ │ │ └── twitter_25.png │ │ │ │ ├── js │ │ │ │ │ ├── app.js │ │ │ │ │ └── foundation.min.js │ │ │ │ ├── scss │ │ │ │ │ ├── _settings.scss │ │ │ │ │ ├── custom.scss │ │ │ │ │ ├── demos.scss │ │ │ │ │ ├── docs.scss │ │ │ │ │ ├── docs.theme.scss │ │ │ │ │ └── highlight.scss │ │ │ │ └── vendors │ │ │ │ │ ├── foundation.min.js │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ └── jquery.mousewheel.min.js │ │ │ ├── data │ │ │ │ ├── classes.json │ │ │ │ ├── events.json │ │ │ │ ├── features.json │ │ │ │ └── options.json │ │ │ ├── helpers │ │ │ │ ├── modulo.js │ │ │ │ └── test.js │ │ │ └── templates │ │ │ │ ├── layouts │ │ │ │ ├── demos.hbs │ │ │ │ ├── docs.hbs │ │ │ │ └── home.hbs │ │ │ │ ├── pages │ │ │ │ ├── demos │ │ │ │ │ ├── animate.hbs │ │ │ │ │ ├── autoheight.hbs │ │ │ │ │ ├── autoplay.hbs │ │ │ │ │ ├── autowidth.hbs │ │ │ │ │ ├── basic.hbs │ │ │ │ │ ├── center.hbs │ │ │ │ │ ├── demos.hbs │ │ │ │ │ ├── events.hbs │ │ │ │ │ ├── lazyLoad.hbs │ │ │ │ │ ├── merge.hbs │ │ │ │ │ ├── mousewheel.hbs │ │ │ │ │ ├── responsive.hbs │ │ │ │ │ ├── rtl.hbs │ │ │ │ │ ├── stagepadding.hbs │ │ │ │ │ ├── test.hbs │ │ │ │ │ ├── urlhashnav.hbs │ │ │ │ │ └── video.hbs │ │ │ │ ├── docs │ │ │ │ │ ├── api-classes.hbs │ │ │ │ │ ├── api-events.hbs │ │ │ │ │ ├── api-options.hbs │ │ │ │ │ ├── dev-buildin-plugins.hbs │ │ │ │ │ ├── dev-external.hbs │ │ │ │ │ ├── dev-plugin-api.hbs │ │ │ │ │ ├── dev-styles.hbs │ │ │ │ │ ├── started-faq.hbs │ │ │ │ │ ├── started-installation.hbs │ │ │ │ │ ├── started-welcome.hbs │ │ │ │ │ ├── support-changelog.hbs │ │ │ │ │ ├── support-contact.hbs │ │ │ │ │ └── support-contributing.hbs │ │ │ │ └── index.hbs │ │ │ │ └── partials │ │ │ │ ├── footer.hbs │ │ │ │ ├── head.hbs │ │ │ │ ├── header.hbs │ │ │ │ ├── home-carousel.hbs │ │ │ │ ├── home-features.hbs │ │ │ │ ├── home-hero.hbs │ │ │ │ ├── home-teaser-text.hbs │ │ │ │ ├── javascripts.hbs │ │ │ │ ├── releated-docs.hbs │ │ │ │ ├── sidenav-docs.hbs │ │ │ │ ├── title.hbs │ │ │ │ └── vendors.hbs │ │ ├── package.json │ │ ├── src │ │ │ ├── img │ │ │ │ ├── ajax-loader.gif │ │ │ │ └── owl.video.play.png │ │ │ ├── js │ │ │ │ ├── owl.animate.js │ │ │ │ ├── owl.autoheight.js │ │ │ │ ├── owl.autoplay.js │ │ │ │ ├── owl.autorefresh.js │ │ │ │ ├── owl.carousel.js │ │ │ │ ├── owl.hash.js │ │ │ │ ├── owl.lazyload.js │ │ │ │ ├── owl.navigation.js │ │ │ │ ├── owl.support.js │ │ │ │ ├── owl.support.modernizr.js │ │ │ │ └── owl.video.js │ │ │ └── scss │ │ │ │ ├── _animate.scss │ │ │ │ ├── _autoheight.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _lazyload.scss │ │ │ │ ├── _theme.default.scss │ │ │ │ ├── _theme.green.scss │ │ │ │ ├── _theme.scss │ │ │ │ ├── _video.scss │ │ │ │ ├── owl.carousel.scss │ │ │ │ ├── owl.theme.default.scss │ │ │ │ └── owl.theme.green.scss │ │ └── test │ │ │ ├── index.html │ │ │ └── unit │ │ │ └── core.js │ │ ├── peity │ │ ├── CHANGELOG.md │ │ ├── Gemfile.lock │ │ ├── README.markdown │ │ ├── bower.json │ │ ├── docs │ │ │ └── style.css │ │ ├── index.html │ │ ├── jquery.peity.js │ │ ├── jquery.peity.min.js │ │ ├── package.json │ │ └── test │ │ │ ├── app.js │ │ │ ├── chart.js │ │ │ ├── charts.json │ │ │ ├── fixtures.js │ │ │ ├── fixtures │ │ │ ├── bar1.png │ │ │ ├── bar10.png │ │ │ ├── bar11.png │ │ │ ├── bar12.png │ │ │ ├── bar13.png │ │ │ ├── bar14.png │ │ │ ├── bar2.png │ │ │ ├── bar3.png │ │ │ ├── bar4.png │ │ │ ├── bar5.png │ │ │ ├── bar6.png │ │ │ ├── bar7.png │ │ │ ├── bar8.png │ │ │ ├── bar9.png │ │ │ ├── donut1.png │ │ │ ├── donut10.png │ │ │ ├── donut11.png │ │ │ ├── donut12.png │ │ │ ├── donut13.png │ │ │ ├── donut2.png │ │ │ ├── donut3.png │ │ │ ├── donut4.png │ │ │ ├── donut5.png │ │ │ ├── donut6.png │ │ │ ├── donut7.png │ │ │ ├── donut8.png │ │ │ ├── donut9.png │ │ │ ├── line1.png │ │ │ ├── line10.png │ │ │ ├── line11.png │ │ │ ├── line12.png │ │ │ ├── line2.png │ │ │ ├── line3.png │ │ │ ├── line4.png │ │ │ ├── line5.png │ │ │ ├── line6.png │ │ │ ├── line7.png │ │ │ ├── line8.png │ │ │ ├── line9.png │ │ │ ├── pie1.png │ │ │ ├── pie10.png │ │ │ ├── pie11.png │ │ │ ├── pie12.png │ │ │ ├── pie2.png │ │ │ ├── pie3.png │ │ │ ├── pie4.png │ │ │ ├── pie5.png │ │ │ ├── pie6.png │ │ │ ├── pie7.png │ │ │ ├── pie8.png │ │ │ └── pie9.png │ │ │ ├── index.js │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── server.js │ │ │ ├── style.css │ │ │ └── views │ │ │ ├── chart.ejs │ │ │ ├── index.ejs │ │ │ └── show.ejs │ │ ├── remarkable-bootstrap-notify │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bootstrap-notify.js │ │ ├── bootstrap-notify.min.js │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── bootstrap-notify.js │ │ │ └── bootstrap-notify.min.js │ │ ├── jshintrc.json │ │ ├── package.js │ │ ├── package.json │ │ └── test_meteor.js │ │ ├── select2 │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ └── select2.min.js │ │ ├── docs │ │ │ ├── README.md │ │ │ ├── _includes │ │ │ │ ├── examples │ │ │ │ │ ├── basics.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── disabled-mode.html │ │ │ │ │ ├── disabled-results.html │ │ │ │ │ ├── hide-search.html │ │ │ │ │ ├── localization-rtl-diacritics.html │ │ │ │ │ ├── matcher.html │ │ │ │ │ ├── multiple-max.html │ │ │ │ │ ├── placeholders.html │ │ │ │ │ ├── programmatic-control.html │ │ │ │ │ ├── tags.html │ │ │ │ │ ├── themes-templating-responsive-design.html │ │ │ │ │ └── tokenizer.html │ │ │ │ ├── footer.html │ │ │ │ ├── ga.html │ │ │ │ ├── head.html │ │ │ │ ├── js-source-states.html │ │ │ │ ├── nav │ │ │ │ │ ├── announcements-4.0.html │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── options-old.html │ │ │ │ │ └── options.html │ │ │ │ ├── navigation.html │ │ │ │ ├── notice-previous.html │ │ │ │ ├── options-old │ │ │ │ │ ├── adapters.html │ │ │ │ │ ├── backwards-compatibility.html │ │ │ │ │ ├── core-options.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── events.html │ │ │ │ │ └── setting-default-options.html │ │ │ │ ├── options │ │ │ │ │ ├── compatibility.html │ │ │ │ │ ├── compatibility │ │ │ │ │ │ ├── initial-selection.html │ │ │ │ │ │ ├── introduction.html │ │ │ │ │ │ ├── matcher.html │ │ │ │ │ │ ├── query-function.html │ │ │ │ │ │ └── text-input.html │ │ │ │ │ ├── core.html │ │ │ │ │ ├── core │ │ │ │ │ │ ├── amd-support.html │ │ │ │ │ │ ├── data-attributes.html │ │ │ │ │ │ └── options.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── array.html │ │ │ │ │ │ └── select.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── filtering.html │ │ │ │ │ │ ├── placement.html │ │ │ │ │ │ ├── selections.html │ │ │ │ │ │ └── tagging.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── events │ │ │ │ │ │ ├── internal.html │ │ │ │ │ │ └── jquery.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── not-written.html │ │ │ │ │ ├── selections.html │ │ │ │ │ └── selections │ │ │ │ │ │ ├── clearing-selections.html │ │ │ │ │ │ ├── multiple.html │ │ │ │ │ │ ├── placeholder.html │ │ │ │ │ │ └── templating.html │ │ │ │ └── social-buttons.html │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ └── home.html │ │ │ ├── _sass │ │ │ │ ├── _alert.scss │ │ │ │ ├── _anchorjs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _dl-panels.scss │ │ │ │ ├── _examples.scss │ │ │ │ ├── _featurette.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _hamburger.scss │ │ │ │ ├── _home.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _prettify.scss │ │ │ │ ├── _result-repository.scss │ │ │ │ ├── _sidenav.scss │ │ │ │ ├── _social.scss │ │ │ │ ├── _syntax-highlighting.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── vendor │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _badges.scss │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ ├── _button-groups.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _carousel.scss │ │ │ │ │ ├── _close.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _component-animations.scss │ │ │ │ │ ├── _dropdowns.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _glyphicons.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _input-groups.scss │ │ │ │ │ ├── _jumbotron.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ ├── _media.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modals.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _navs.scss │ │ │ │ │ ├── _normalize.scss │ │ │ │ │ ├── _pager.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _panels.scss │ │ │ │ │ ├── _popovers.scss │ │ │ │ │ ├── _print.scss │ │ │ │ │ ├── _progress-bars.scss │ │ │ │ │ ├── _responsive-embed.scss │ │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ │ ├── _scaffolding.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _theme.scss │ │ │ │ │ ├── _thumbnails.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ ├── _utilities.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── _wells.scss │ │ │ │ │ └── mixins │ │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ │ ├── _forms.scss │ │ │ │ │ │ ├── _gradients.scss │ │ │ │ │ │ ├── _grid-framework.scss │ │ │ │ │ │ ├── _grid.scss │ │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ │ ├── _image.scss │ │ │ │ │ │ ├── _labels.scss │ │ │ │ │ │ ├── _list-group.scss │ │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ │ ├── _panels.scss │ │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ │ ├── _resize.scss │ │ │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ │ │ ├── _size.scss │ │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ │ ├── _table-row.scss │ │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ │ └── _vendor-prefixes.scss │ │ │ │ │ └── font-awesome │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ └── _variables.scss │ │ │ ├── announcements-4.0.html │ │ │ ├── browserconfig.xml │ │ │ ├── community.html │ │ │ ├── css │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ └── s2-docs.scss │ │ │ ├── examples.html │ │ │ ├── images │ │ │ │ ├── android-chrome-36x36.png │ │ │ │ ├── android-chrome-48x48.png │ │ │ │ ├── android-chrome-72x72.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── logo.png │ │ │ │ ├── manifest.json │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ └── safari-pinned-tab.svg │ │ │ ├── index.html │ │ │ ├── options-old.html │ │ │ ├── options.html │ │ │ └── vendor │ │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── images │ │ │ │ └── flags │ │ │ │ │ ├── ak.png │ │ │ │ │ ├── al.png │ │ │ │ │ ├── ar.png │ │ │ │ │ ├── az.png │ │ │ │ │ ├── ca.png │ │ │ │ │ ├── co.png │ │ │ │ │ ├── ct.png │ │ │ │ │ ├── de.png │ │ │ │ │ ├── fl.png │ │ │ │ │ ├── ga.png │ │ │ │ │ ├── hi.png │ │ │ │ │ ├── ia.png │ │ │ │ │ ├── id.png │ │ │ │ │ ├── il.png │ │ │ │ │ ├── in.png │ │ │ │ │ ├── ks.png │ │ │ │ │ ├── ky.png │ │ │ │ │ ├── la.png │ │ │ │ │ ├── ma.png │ │ │ │ │ ├── md.png │ │ │ │ │ ├── me.png │ │ │ │ │ ├── mi.png │ │ │ │ │ ├── mn.png │ │ │ │ │ ├── mo.png │ │ │ │ │ ├── ms.png │ │ │ │ │ ├── mt.png │ │ │ │ │ ├── nc.png │ │ │ │ │ ├── nd.png │ │ │ │ │ ├── ne.png │ │ │ │ │ ├── nh.png │ │ │ │ │ ├── nj.png │ │ │ │ │ ├── nm.png │ │ │ │ │ ├── nv.png │ │ │ │ │ ├── ny.png │ │ │ │ │ ├── oh.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── or.png │ │ │ │ │ ├── pa.png │ │ │ │ │ ├── ri.png │ │ │ │ │ ├── sc.png │ │ │ │ │ ├── sd.png │ │ │ │ │ ├── tn.png │ │ │ │ │ ├── tx.png │ │ │ │ │ ├── ut.png │ │ │ │ │ ├── va.png │ │ │ │ │ ├── vt.png │ │ │ │ │ ├── wa.png │ │ │ │ │ ├── wi.png │ │ │ │ │ ├── wv.png │ │ │ │ │ └── wy.png │ │ │ │ └── js │ │ │ │ ├── anchor.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── placeholders.jquery.min.js │ │ │ │ └── prettify.min.js │ │ ├── package.json │ │ ├── select2.jquery.json │ │ ├── src │ │ │ ├── js │ │ │ │ ├── banner.end.js │ │ │ │ ├── banner.start.js │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ ├── jquery.select2.js │ │ │ │ ├── jquery.shim.js │ │ │ │ ├── select2 │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── containerCss.js │ │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ │ ├── initSelection.js │ │ │ │ │ │ ├── inputData.js │ │ │ │ │ │ ├── matcher.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── tags.js │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── diacritics.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── attachBody.js │ │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── options.js │ │ │ │ │ ├── results.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── allowClear.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── clickMask.js │ │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── single.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── translation.js │ │ │ │ │ └── utils.js │ │ │ │ ├── wrapper.end.js │ │ │ │ └── wrapper.start.js │ │ │ └── scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ ├── core.scss │ │ │ │ ├── mixins │ │ │ │ └── _gradients.scss │ │ │ │ └── theme │ │ │ │ ├── classic │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ │ │ └── default │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ ├── tests │ │ │ ├── a11y │ │ │ │ ├── search-tests.js │ │ │ │ └── selection-tests.js │ │ │ ├── data │ │ │ │ ├── array-tests.js │ │ │ │ ├── base-tests.js │ │ │ │ ├── inputData-tests.js │ │ │ │ ├── maximumInputLength-tests.js │ │ │ │ ├── maximumSelectionLength-tests.js │ │ │ │ ├── minimumInputLength-tests.js │ │ │ │ ├── select-tests.js │ │ │ │ ├── tags-tests.js │ │ │ │ └── tokenizer-tests.js │ │ │ ├── dropdown │ │ │ │ ├── dropdownCss-tests.js │ │ │ │ ├── positioning-tests.js │ │ │ │ ├── selectOnClose-tests.js │ │ │ │ └── stopPropagation-tests.js │ │ │ ├── helpers.js │ │ │ ├── integration.html │ │ │ ├── integration │ │ │ │ ├── dom-changes.js │ │ │ │ ├── jquery-calls.js │ │ │ │ └── select2-methods.js │ │ │ ├── options │ │ │ │ ├── ajax-tests.js │ │ │ │ ├── data-tests.js │ │ │ │ ├── deprecated-tests.js │ │ │ │ ├── translation-tests.js │ │ │ │ └── width-tests.js │ │ │ ├── results │ │ │ │ └── focusing-tests.js │ │ │ ├── selection │ │ │ │ ├── allowClear-tests.js │ │ │ │ ├── containerCss-tests.js │ │ │ │ ├── multiple-tests.js │ │ │ │ ├── placeholder-tests.js │ │ │ │ ├── search-tests.js │ │ │ │ ├── single-tests.js │ │ │ │ └── stopPropagation-tests.js │ │ │ ├── unit.html │ │ │ ├── utils │ │ │ │ ├── decorator-tests.js │ │ │ │ └── escapeMarkup-tests.js │ │ │ └── vendor │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ ├── qunit-1.23.1.css │ │ │ │ └── qunit-1.23.1.js │ │ └── vendor │ │ │ └── jquery-2.1.0.js │ │ ├── spin.js │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.spin.js │ │ └── spin.js │ │ ├── summernote │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── font │ │ │ │ ├── summernote.eot │ │ │ │ ├── summernote.ttf │ │ │ │ └── summernote.woff │ │ │ ├── lang │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ ├── summernote-da-DK.js │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ ├── summernote-de-DE.js │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ ├── summernote-es-ES.js │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ ├── summernote-es-EU.js │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ ├── summernote-he-IL.js │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ ├── summernote-id-ID.js │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ ├── summernote-it-IT.js │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ ├── summernote-th-TH.js │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ └── summernote-zh-TW.min.js │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ └── summernote.min.js │ │ ├── examples │ │ │ ├── airmode.html │ │ │ ├── bs3fa4.html │ │ │ ├── codemirror.html │ │ │ ├── external-api.html │ │ │ ├── get-button.html │ │ │ ├── hint-emoji.html │ │ │ ├── hint-userdefine.html │ │ │ ├── jquery-custom-event.html │ │ │ ├── jquery18lt.html │ │ │ ├── lang.html │ │ │ ├── nativestyle.html │ │ │ ├── ondialog-multitab.html │ │ │ ├── ondialog.html │ │ │ ├── plugin-hello.html │ │ │ ├── rtl.html │ │ │ └── textarea.html │ │ ├── ie8.html │ │ ├── index.html │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-bg-BG.js │ │ │ ├── summernote-ca-ES.js │ │ │ ├── summernote-cs-CZ.js │ │ │ ├── summernote-da-DK.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fi-FI.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-he-IL.js │ │ │ ├── summernote-hu-HU.js │ │ │ ├── summernote-id-ID.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-ko-KR.js │ │ │ ├── summernote-lt-LT.js │ │ │ ├── summernote-nb-NO.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-ro-RO.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-sk-SK.js │ │ │ ├── summernote-sl-SI.js │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ ├── summernote-sr-RS.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-th-TH.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-vi-VN.js │ │ │ ├── summernote-zh-CN.js │ │ │ └── summernote-zh-TW.js │ │ ├── lite.html │ │ ├── meteor │ │ │ ├── README.md │ │ │ ├── package-standalone.js │ │ │ ├── package.js │ │ │ ├── publish.sh │ │ │ ├── runtests.sh │ │ │ └── test.js │ │ ├── package.json │ │ ├── plugin │ │ │ ├── hello │ │ │ │ └── summernote-ext-hello.js │ │ │ └── specialchars │ │ │ │ └── summernote-ext-specialchars.js │ │ └── src │ │ │ ├── icons │ │ │ ├── align-center.svg │ │ │ ├── align-indent.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-outdent.svg │ │ │ ├── align-right.svg │ │ │ ├── align.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── bold.svg │ │ │ ├── caret.svg │ │ │ ├── chain-broken.svg │ │ │ ├── circle.svg │ │ │ ├── close.svg │ │ │ ├── code.svg │ │ │ ├── eraser.svg │ │ │ ├── font.svg │ │ │ ├── frame.svg │ │ │ ├── italic.svg │ │ │ ├── link.svg │ │ │ ├── magic.svg │ │ │ ├── menu-check.svg │ │ │ ├── minus.svg │ │ │ ├── orderedlist.svg │ │ │ ├── pencil.svg │ │ │ ├── picture.svg │ │ │ ├── question.svg │ │ │ ├── redo.svg │ │ │ ├── special-character.svg │ │ │ ├── square.svg │ │ │ ├── strikethrough.svg │ │ │ ├── subscript.svg │ │ │ ├── summernote.svg │ │ │ ├── superscript.svg │ │ │ ├── table.svg │ │ │ ├── templates │ │ │ │ ├── summernote.css │ │ │ │ └── summernote.json │ │ │ ├── text-height.svg │ │ │ ├── trash.svg │ │ │ ├── underline.svg │ │ │ ├── undo.svg │ │ │ ├── unorderedlist.svg │ │ │ └── video.svg │ │ │ ├── js │ │ │ ├── app.js │ │ │ ├── base │ │ │ │ ├── Context.js │ │ │ │ ├── core │ │ │ │ │ ├── agent.js │ │ │ │ │ ├── async.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── func.js │ │ │ │ │ ├── key.js │ │ │ │ │ ├── list.js │ │ │ │ │ └── range.js │ │ │ │ ├── editing │ │ │ │ │ ├── Bullet.js │ │ │ │ │ ├── History.js │ │ │ │ │ ├── Style.js │ │ │ │ │ ├── Table.js │ │ │ │ │ └── Typing.js │ │ │ │ ├── module │ │ │ │ │ ├── AutoLink.js │ │ │ │ │ ├── AutoSync.js │ │ │ │ │ ├── Clipboard.js │ │ │ │ │ ├── Codeview.js │ │ │ │ │ ├── Dropzone.js │ │ │ │ │ ├── Editor.js │ │ │ │ │ ├── Fullscreen.js │ │ │ │ │ ├── Handle.js │ │ │ │ │ ├── Placeholder.js │ │ │ │ │ └── Statusbar.js │ │ │ │ ├── renderer.js │ │ │ │ └── summernote-en-US.js │ │ │ ├── bs3 │ │ │ │ ├── module │ │ │ │ │ ├── AirPopover.js │ │ │ │ │ ├── Buttons.js │ │ │ │ │ ├── HelpDialog.js │ │ │ │ │ ├── HintPopover.js │ │ │ │ │ ├── ImageDialog.js │ │ │ │ │ ├── ImagePopover.js │ │ │ │ │ ├── LinkDialog.js │ │ │ │ │ ├── LinkPopover.js │ │ │ │ │ ├── Toolbar.js │ │ │ │ │ └── VideoDialog.js │ │ │ │ ├── settings.js │ │ │ │ └── ui.js │ │ │ ├── intro.js │ │ │ ├── lite │ │ │ │ ├── module │ │ │ │ │ └── Toolbar.js │ │ │ │ ├── settings.js │ │ │ │ └── ui.js │ │ │ ├── outro.js │ │ │ └── summernote.js │ │ │ └── less │ │ │ ├── elements.less │ │ │ ├── elements.scss │ │ │ ├── summernote-lite.less │ │ │ ├── summernote.less │ │ │ └── summernote.scss │ │ └── tether │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── dist │ │ ├── css │ │ │ ├── tether-theme-arrows-dark.css │ │ │ ├── tether-theme-arrows-dark.min.css │ │ │ ├── tether-theme-arrows.css │ │ │ ├── tether-theme-arrows.min.css │ │ │ ├── tether-theme-basic.css │ │ │ ├── tether-theme-basic.min.css │ │ │ ├── tether.css │ │ │ └── tether.min.css │ │ └── js │ │ │ ├── tether.js │ │ │ └── tether.min.js │ │ ├── docs │ │ ├── 1-Overview │ │ │ ├── 1-why_you_should_use_tether.md │ │ │ ├── 2-repositioning.md │ │ │ └── 3-why_we_dont_support_IE_8.md │ │ ├── 2-Examples │ │ │ ├── 1-list_of_examples.md │ │ │ └── 2-projects_using_tether.md │ │ ├── 3-Advanced │ │ │ ├── 1-embedding_tether.md │ │ │ └── 2-extending_tether.md │ │ ├── coffee │ │ │ └── intro.coffee │ │ ├── css │ │ │ └── intro.css │ │ ├── intro.md │ │ ├── js │ │ │ ├── intro.js │ │ │ └── markAttachment.js │ │ ├── sass │ │ │ └── intro.sass │ │ └── welcome │ │ │ ├── browser-demo.html │ │ │ ├── coffee │ │ │ └── welcome.coffee │ │ │ ├── css │ │ │ ├── browser-demo.css │ │ │ ├── prism.css │ │ │ └── welcome.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── drop.js │ │ │ ├── jquery.js │ │ │ ├── log.js │ │ │ ├── tether-v0.1.3.js │ │ │ └── welcome.js │ │ │ └── sass │ │ │ ├── _inline-block.sass │ │ │ ├── browser-demo.sass │ │ │ └── welcome.sass │ │ ├── examples │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ ├── chosen.css │ │ │ ├── chosen.js │ │ │ └── index.html │ │ ├── common │ │ │ └── css │ │ │ │ └── style.css │ │ ├── content-visible │ │ │ └── index.html │ │ ├── dolls │ │ │ ├── dolls.css │ │ │ ├── dolls.js │ │ │ └── index.html │ │ ├── element-scroll │ │ │ └── index.html │ │ ├── enable-disable │ │ │ └── index.html │ │ ├── facebook │ │ │ ├── facebook.css │ │ │ └── index.html │ │ ├── out-of-bounds │ │ │ └── index.html │ │ ├── pin │ │ │ └── index.html │ │ ├── resources │ │ │ ├── css │ │ │ │ └── base.css │ │ │ └── js │ │ │ │ ├── jquery.js │ │ │ │ └── log.js │ │ ├── scroll │ │ │ └── index.html │ │ ├── simple │ │ │ └── index.html │ │ ├── testbed │ │ │ └── index.html │ │ ├── tooltip │ │ │ └── index.html │ │ └── viewport │ │ │ ├── colors.css │ │ │ └── index.html │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── src │ │ ├── css │ │ ├── helpers │ │ │ ├── _tether-theme-arrows.sass │ │ │ ├── _tether-theme-basic.sass │ │ │ └── _tether.sass │ │ ├── mixins │ │ │ ├── _inline-block.sass │ │ │ └── _pie-clearfix.sass │ │ ├── tether-theme-arrows-dark.sass │ │ ├── tether-theme-arrows.sass │ │ ├── tether-theme-basic.sass │ │ └── tether.sass │ │ └── js │ │ ├── abutment.js │ │ ├── constraint.js │ │ ├── markAttachment.js │ │ ├── shift.js │ │ ├── tether.js │ │ └── utils.js ├── favicon.ico ├── index.html ├── version_angular │ ├── apps │ │ ├── calendar.html │ │ ├── gallery.html │ │ ├── mail.html │ │ ├── messaging.html │ │ └── profile.html │ ├── charts │ │ ├── c3.html │ │ ├── chartistjs.html │ │ └── peity.html │ ├── components │ │ ├── badges-labels.html │ │ ├── calendar.html │ │ ├── carousel.html │ │ ├── collapse.html │ │ ├── date-picker.html │ │ ├── media-players.html │ │ ├── modal.html │ │ ├── nestable.html │ │ ├── notifications-alerts.html │ │ ├── pagination.html │ │ ├── progress-bars.html │ │ ├── slider.html │ │ ├── steps.html │ │ ├── tabs.html │ │ ├── text-editor.html │ │ └── tooltips-popovers.html │ ├── dashboards │ │ ├── alpha.html │ │ ├── beta.html │ │ └── dash03.html │ ├── diagrams │ │ ├── diagram1.html │ │ └── index_files │ │ │ ├── additional-methods.js │ │ │ ├── app.css │ │ │ ├── app.js │ │ │ ├── back.json │ │ │ ├── bootstrap.min.css │ │ │ ├── braintree.js │ │ │ ├── data.json │ │ │ ├── font-awesome.css │ │ │ ├── gollum-template.css │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.simulate.drag-n-drop.js │ │ │ ├── jquery.simulate.ext.js │ │ │ ├── jquery.simulate.js │ │ │ ├── jquery.simulate.key-combo.js │ │ │ ├── jquery.simulate.key-sequence.js │ │ │ ├── jquery.validate.js │ │ │ ├── jsPlumb-2.2.8.js │ │ │ ├── jsPlumbToolkit-defaults.css │ │ │ ├── jsPlumbToolkit-demo.css │ │ │ ├── logo-docs-jsplumb.png │ │ │ ├── logo-jsplumb-green.png │ │ │ ├── logo-medium-jsplumb.png │ │ │ └── main.css │ ├── documentation │ │ └── index.html │ ├── forms │ │ ├── autocomplete.html │ │ ├── basic-form-elements.html │ │ ├── buttons.html │ │ ├── checkboxes-radio.html │ │ ├── dropdowns.html │ │ ├── extras.html │ │ ├── form-validation.html │ │ ├── input-mask.html │ │ └── selectboxes.html │ ├── icons │ │ ├── fontawesome.html │ │ └── icomoon-ultimate.html │ ├── index.html │ ├── index_boxed.html │ ├── index_horizontal.html │ ├── index_horizontal_boxed.html │ ├── index_horizontal_theme_dark.html │ ├── index_iconbar.html │ ├── index_inverse.html │ ├── index_theme_default.html │ ├── index_theme_orange.html │ ├── layout │ │ ├── grid.html │ │ ├── panels.html │ │ ├── sidebars.html │ │ ├── typography.html │ │ └── utilities.html │ ├── pages │ │ ├── invoice.html │ │ ├── lockscreen.ctrl.js │ │ ├── lockscreen.html │ │ ├── login.ctrl.js │ │ ├── login.html │ │ ├── page-404.html │ │ ├── page-500.html │ │ ├── pricing-tables.html │ │ ├── register.ctrl.js │ │ └── register.html │ └── tables │ │ ├── basic-tables.html │ │ ├── datatables.html │ │ └── editable-tables.html └── version_html │ ├── apps-calendar.html │ ├── apps-gallery.html │ ├── apps-mail.html │ ├── apps-messaging.html │ ├── apps-profile.html │ ├── charts-c3.html │ ├── charts-chartistjs.html │ ├── charts-peity.html │ ├── components-badges-labels.html │ ├── components-calendar.html │ ├── components-carousel.html │ ├── components-collapse.html │ ├── components-date-picker.html │ ├── components-media-players.html │ ├── components-modal.html │ ├── components-nestable.html │ ├── components-notifications-alerts.html │ ├── components-pagination.html │ ├── components-progress-bars.html │ ├── components-slider.html │ ├── components-steps.html │ ├── components-tabs.html │ ├── components-text-editor.html │ ├── components-tooltips-popovers.html │ ├── dashboards-beta.html │ ├── documentation.html │ ├── forms-autocomplete.html │ ├── forms-basic-form-elements.html │ ├── forms-buttons.html │ ├── forms-checkboxes-radio.html │ ├── forms-dropdowns.html │ ├── forms-extras.html │ ├── forms-form-validation.html │ ├── forms-input-mask.html │ ├── forms-selectboxes.html │ ├── icons-fontawesome.html │ ├── icons-icomoon-ultimate.html │ ├── index.html │ ├── layout-grid.html │ ├── layout-panels.html │ ├── layout-sidebars.html │ ├── layout-typography.html │ ├── layout-utilities.html │ ├── pages-invoice.html │ ├── pages-lockscreen.html │ ├── pages-login.html │ ├── pages-page-404.html │ ├── pages-page-500.html │ ├── pages-pricing-tables.html │ ├── pages-register.html │ ├── tables-basic-tables.html │ ├── tables-datatables.html │ └── tables-editable-tables.html ├── contributors.txt ├── gulpfile.js ├── package.json ├── run.sh └── src ├── assets ├── Icon ├── common │ ├── Icon │ ├── css │ │ ├── Icon │ │ ├── apps │ │ │ ├── Icon │ │ │ ├── calendar.scss │ │ │ ├── gallery.scss │ │ │ ├── mail.scss │ │ │ ├── messaging.scss │ │ │ └── profile.scss │ │ ├── components │ │ │ ├── Icon │ │ │ ├── badges-labels.scss │ │ │ ├── carousel.scss │ │ │ ├── collapse.scss │ │ │ ├── modal.scss │ │ │ ├── notifications-alerts.scss │ │ │ ├── pagination.scss │ │ │ ├── progress-bars.scss │ │ │ ├── steps.scss │ │ │ ├── tables.scss │ │ │ ├── tabs.scss │ │ │ ├── tooltips-popovers.scss │ │ │ ├── utilities.scss │ │ │ └── widgets.scss │ │ ├── forms │ │ │ ├── Icon │ │ │ ├── autocomplete.scss │ │ │ ├── basic-form-elements.scss │ │ │ ├── buttons.scss │ │ │ ├── checkboxes-radio.scss │ │ │ ├── dropdowns.scss │ │ │ ├── form-validation.scss │ │ │ └── selectboxes.scss │ │ ├── helpers │ │ │ ├── Icon │ │ │ ├── base.default.scss │ │ │ ├── base.responsive.scss │ │ │ ├── fonts.scss │ │ │ ├── rtl.version.scss │ │ │ └── typography.scss │ │ ├── main.scss │ │ ├── mixins.scss │ │ ├── pages │ │ │ ├── Icon │ │ │ └── pricing-table.scss │ │ ├── themes │ │ │ ├── Icon │ │ │ ├── theme-blue.scss │ │ │ ├── theme-dark.scss │ │ │ ├── theme-green.scss │ │ │ ├── theme-inverse.scss │ │ │ ├── theme-orange.scss │ │ │ └── theme-red.scss │ │ └── vendors │ │ │ ├── Icon │ │ │ ├── chartist-tooltip-plugin.scss │ │ │ ├── chartist.scss │ │ │ ├── datatables-fixedcolumns.scss │ │ │ ├── datatables-responsive.scss │ │ │ ├── editable-table.scss │ │ │ ├── eonasdan-bootstrap-datetimepicker.scss │ │ │ ├── fullcalendar.scss │ │ │ ├── ionrangeslider.scss │ │ │ ├── jscrollpane.scss │ │ │ ├── nestable.scss │ │ │ ├── select2.scss │ │ │ └── summernote.scss │ ├── fonts │ │ ├── Icon │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.otf │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── icomoon-ultimate.eot │ │ ├── icomoon-ultimate.svg │ │ ├── icomoon-ultimate.ttf │ │ └── icomoon-ultimate.woff │ ├── img │ │ ├── Icon │ │ ├── favicon.114x114.png │ │ ├── favicon.144x144.png │ │ ├── favicon.57x57.png │ │ ├── favicon.72x72.png │ │ ├── favicon.png │ │ ├── gray.png │ │ ├── logo-inverse.png │ │ ├── logo.png │ │ └── temp │ │ │ ├── Icon │ │ │ ├── amazon.jpg │ │ │ ├── avatars │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── Icon │ │ │ ├── login │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ └── Icon │ │ │ └── photos │ │ │ ├── 1.jpeg │ │ │ ├── 10.jpeg │ │ │ ├── 2.jpeg │ │ │ ├── 3.jpeg │ │ │ ├── 4.jpeg │ │ │ ├── 5.jpeg │ │ │ ├── 6.jpeg │ │ │ ├── 7.jpeg │ │ │ ├── 8.jpeg │ │ │ ├── 9.jpeg │ │ │ └── Icon │ └── js │ │ ├── Icon │ │ ├── common.js │ │ ├── demo.temp.js │ │ └── version_angular │ │ ├── Icon │ │ └── app.js └── vendors │ ├── Icon │ ├── manual │ ├── Icon │ ├── cleanhtmlaudioplayer │ │ ├── Icon │ │ └── src │ │ │ ├── Icon │ │ │ ├── jquery.cleanaudioplayer.js │ │ │ ├── player.css │ │ │ └── player.less │ ├── cleanhtmlvideoplayer │ │ ├── Icon │ │ └── src │ │ │ ├── Icon │ │ │ ├── jquery.cleanvideoplayer.js │ │ │ ├── player.css │ │ │ └── player.less │ ├── editable-table │ │ ├── Icon │ │ ├── LICENSE │ │ ├── README.md │ │ ├── external │ │ │ ├── Icon │ │ │ └── google-code-prettify │ │ │ │ ├── Icon │ │ │ │ ├── lang-apollo.js │ │ │ │ ├── lang-basic.js │ │ │ │ ├── lang-clj.js │ │ │ │ ├── lang-css.js │ │ │ │ ├── lang-dart.js │ │ │ │ ├── lang-erlang.js │ │ │ │ ├── lang-go.js │ │ │ │ ├── lang-hs.js │ │ │ │ ├── lang-lisp.js │ │ │ │ ├── lang-llvm.js │ │ │ │ ├── lang-lua.js │ │ │ │ ├── lang-matlab.js │ │ │ │ ├── lang-ml.js │ │ │ │ ├── lang-mumps.js │ │ │ │ ├── lang-n.js │ │ │ │ ├── lang-pascal.js │ │ │ │ ├── lang-proto.js │ │ │ │ ├── lang-r.js │ │ │ │ ├── lang-rd.js │ │ │ │ ├── lang-scala.js │ │ │ │ ├── lang-sql.js │ │ │ │ ├── lang-tcl.js │ │ │ │ ├── lang-tex.js │ │ │ │ ├── lang-vb.js │ │ │ │ ├── lang-vhdl.js │ │ │ │ ├── lang-wiki.js │ │ │ │ ├── lang-xq.js │ │ │ │ ├── lang-yaml.js │ │ │ │ ├── prettify.css │ │ │ │ ├── prettify.js │ │ │ │ └── run_prettify.js │ │ ├── index.css │ │ ├── index.html │ │ ├── mindmup-editabletable.js │ │ ├── numeric-input-example.js │ │ └── republish.sh │ └── hackertyper │ │ ├── Icon │ │ ├── hackertyper.js │ │ └── kernel.txt │ └── readme.txt ├── templates ├── Icon ├── apps │ ├── Icon │ ├── calendar.html │ ├── gallery.html │ ├── mail.html │ ├── messaging.html │ └── profile.html ├── charts │ ├── Icon │ ├── c3.html │ ├── chartistjs.html │ └── peity.html ├── components │ ├── Icon │ ├── badges-labels.html │ ├── calendar.html │ ├── carousel.html │ ├── collapse.html │ ├── date-picker.html │ ├── media-players.html │ ├── modal.html │ ├── nestable.html │ ├── notifications-alerts.html │ ├── pagination.html │ ├── progress-bars.html │ ├── slider.html │ ├── steps.html │ ├── tabs.html │ ├── text-editor.html │ └── tooltips-popovers.html ├── dashboards │ ├── Icon │ ├── alpha.html │ └── beta.html ├── documentation │ ├── Icon │ └── index.html ├── forms │ ├── Icon │ ├── autocomplete.html │ ├── basic-form-elements.html │ ├── buttons.html │ ├── checkboxes-radio.html │ ├── dropdowns.html │ ├── extras.html │ ├── form-validation.html │ ├── input-mask.html │ └── selectboxes.html ├── icons │ ├── Icon │ ├── fontawesome.html │ └── icomoon-ultimate.html ├── layout │ ├── Icon │ ├── grid.html │ ├── panels.html │ ├── sidebars.html │ ├── typography.html │ └── utilities.html ├── pages │ ├── Icon │ ├── invoice.html │ ├── lockscreen.html │ ├── login.html │ ├── page-404.html │ ├── page-500.html │ ├── pricing-tables.html │ └── register.html └── tables │ ├── Icon │ ├── basic-tables.html │ ├── datatables.html │ └── editable-tables.html ├── version_angular ├── Icon ├── _footer.html ├── _header.html ├── _left-menu.html ├── _top-menu.html ├── apps │ ├── Icon │ ├── calendar.html │ ├── gallery.html │ ├── mail.html │ ├── messaging.html │ └── profile.html ├── charts │ ├── Icon │ ├── c3.html │ ├── chartistjs.html │ └── peity.html ├── components │ ├── Icon │ ├── badges-labels.html │ ├── calendar.html │ ├── carousel.html │ ├── collapse.html │ ├── date-picker.html │ ├── media-players.html │ ├── modal.html │ ├── nestable.html │ ├── notifications-alerts.html │ ├── pagination.html │ ├── progress-bars.html │ ├── slider.html │ ├── steps.html │ ├── tabs.html │ ├── text-editor.html │ └── tooltips-popovers.html ├── dashboards │ ├── Icon │ ├── alpha.html │ ├── beta.html │ └── dash03.html ├── diagrams │ ├── Icon │ ├── diagram1.html │ └── index_files │ │ ├── Icon │ │ ├── additional-methods.js │ │ ├── app.css │ │ ├── app.js │ │ ├── bootstrap.min.css │ │ ├── braintree.js │ │ ├── css │ │ ├── data.json │ │ ├── font-awesome.css │ │ ├── gollum-template.css │ │ ├── jquery-ui.custom.min.js │ │ ├── jquery.min.js │ │ ├── jquery.simulate.ext.js │ │ ├── jquery.simulate.js │ │ ├── jquery.simulate.key-combo.js │ │ ├── jquery.simulate.key-sequence.js │ │ ├── jquery.validate.js │ │ ├── jsPlumbToolkit-demo.css │ │ ├── logo-docs-jsplumb.png │ │ ├── logo-jsplumb-green.png │ │ ├── logo-medium-jsplumb.png │ │ └── main.css ├── documentation │ ├── Icon │ └── index.html ├── forms │ ├── Icon │ ├── autocomplete.html │ ├── basic-form-elements.html │ ├── buttons.html │ ├── checkboxes-radio.html │ ├── dropdowns.html │ ├── extras.html │ ├── form-validation.html │ ├── input-mask.html │ └── selectboxes.html ├── icons │ ├── Icon │ ├── fontawesome.html │ └── icomoon-ultimate.html ├── index.html ├── index_boxed.html ├── index_horizontal.html ├── index_horizontal_boxed.html ├── index_horizontal_theme_dark.html ├── index_iconbar.html ├── index_inverse.html ├── index_theme_default.html ├── index_theme_orange.html ├── layout │ ├── Icon │ ├── grid.html │ ├── panels.html │ └── utilities.html ├── pages │ ├── Icon │ ├── invoice.html │ ├── lockscreen.ctrl.js │ ├── lockscreen.html │ ├── login.ctrl.js │ ├── login.html │ ├── page-404.html │ ├── page-500.html │ ├── pricing-tables.html │ ├── register.ctrl.js │ └── register.html └── tables │ ├── Icon │ ├── basic-tables.html │ ├── datatables.html │ └── editable-tables.html └── version_html ├── Icon ├── _footer.html ├── _header.html ├── _left-menu.html ├── _top-menu.html ├── apps-calendar.html ├── apps-gallery.html ├── apps-mail.html ├── apps-messaging.html ├── apps-profile.html ├── charts-c3.html ├── charts-chartistjs.html ├── charts-peity.html ├── components-badges-labels.html ├── components-calendar.html ├── components-carousel.html ├── components-collapse.html ├── components-date-picker.html ├── components-media-players.html ├── components-modal.html ├── components-nestable.html ├── components-notifications-alerts.html ├── components-pagination.html ├── components-progress-bars.html ├── components-slider.html ├── components-steps.html ├── components-tabs.html ├── components-text-editor.html ├── components-tooltips-popovers.html ├── dashboards-beta.html ├── documentation.html ├── forms-autocomplete.html ├── forms-basic-form-elements.html ├── forms-buttons.html ├── forms-checkboxes-radio.html ├── forms-dropdowns.html ├── forms-extras.html ├── forms-form-validation.html ├── forms-input-mask.html ├── forms-selectboxes.html ├── icons-fontawesome.html ├── icons-icomoon-ultimate.html ├── index.html ├── layout-grid.html ├── layout-panels.html ├── layout-sidebars.html ├── layout-typography.html ├── layout-utilities.html ├── pages-invoice.html ├── pages-lockscreen.html ├── pages-login.html ├── pages-page-404.html ├── pages-page-500.html ├── pages-pricing-tables.html ├── pages-register.html ├── tables-basic-tables.html ├── tables-datatables.html └── tables-editable-tables.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automaton/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automaton/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automaton/config/Configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/config/Configuration.py -------------------------------------------------------------------------------- /automaton/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automaton/core/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automaton/core/Module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/core/Module.py -------------------------------------------------------------------------------- /automaton/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automaton/input.csv: -------------------------------------------------------------------------------- 1 | 5,6 2 | -------------------------------------------------------------------------------- /automaton/js/ConnectionListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/js/ConnectionListener.js -------------------------------------------------------------------------------- /automaton/js/MessengerListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/js/MessengerListener.js -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/.gitignore -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/LICENSE.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/README -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/README.rst -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/bin/gvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/bin/gvi -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/bin/gvoice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/bin/gvoice -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/Makefile -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/api.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/changelog.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/conf.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/config.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/examples.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/index.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/install.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/docs/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/docs/scripts.txt -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/call.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/delete.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/folders.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/phones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/phones.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/search.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/settings.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/examples/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/examples/sms.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/googlevoice/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/googlevoice/conf.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/googlevoice/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/googlevoice/tests.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/googlevoice/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/googlevoice/util.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/googlevoice/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/googlevoice/voice.py -------------------------------------------------------------------------------- /automaton/libs/pygooglevoice/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/libs/pygooglevoice/setup.py -------------------------------------------------------------------------------- /automaton/logic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/logic.json -------------------------------------------------------------------------------- /automaton/modules/Module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/modules/Module1.py -------------------------------------------------------------------------------- /automaton/modules/Module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/modules/Module2.py -------------------------------------------------------------------------------- /automaton/modules/Module3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/modules/Module3.py -------------------------------------------------------------------------------- /automaton/modules/Module4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/modules/Module4.py -------------------------------------------------------------------------------- /automaton/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/requirements.txt -------------------------------------------------------------------------------- /automaton/run.sh: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt 2 | python server.py 3 | -------------------------------------------------------------------------------- /automaton/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/server.py -------------------------------------------------------------------------------- /automaton/utils/CsvHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/CsvHelper.py -------------------------------------------------------------------------------- /automaton/utils/DatabaseHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/DatabaseHelper.py -------------------------------------------------------------------------------- /automaton/utils/DatasourceHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/DatasourceHelper.py -------------------------------------------------------------------------------- /automaton/utils/LinkedinHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/LinkedinHelper.py -------------------------------------------------------------------------------- /automaton/utils/LogHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/LogHelper.py -------------------------------------------------------------------------------- /automaton/utils/MBFHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/MBFHelper.py -------------------------------------------------------------------------------- /automaton/utils/MailHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/MailHelper.py -------------------------------------------------------------------------------- /automaton/utils/NetworkHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/NetworkHelper.py -------------------------------------------------------------------------------- /automaton/utils/SeleniumHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/SeleniumHelper.py -------------------------------------------------------------------------------- /automaton/utils/SheetsHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/SheetsHelper.py -------------------------------------------------------------------------------- /automaton/utils/StateMachineHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/StateMachineHelper.py -------------------------------------------------------------------------------- /automaton/utils/TextHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/TextHelper.py -------------------------------------------------------------------------------- /automaton/utils/VoiceHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/automaton/utils/VoiceHelper.py -------------------------------------------------------------------------------- /automaton/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/deploy.php -------------------------------------------------------------------------------- /samples/google_crawler/input.csv: -------------------------------------------------------------------------------- 1 | 5,6 2 | -------------------------------------------------------------------------------- /samples/google_crawler/logic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/google_crawler/logic.json -------------------------------------------------------------------------------- /samples/google_crawler/modules/testcrawler1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/google_crawler/modules/testcrawler1.py -------------------------------------------------------------------------------- /samples/google_crawler/modules/testcrawler2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/google_crawler/modules/testcrawler2.py -------------------------------------------------------------------------------- /samples/google_crawler/modules/testcrawler3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/google_crawler/modules/testcrawler3.py -------------------------------------------------------------------------------- /samples/linkedin_recruitment/logic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/linkedin_recruitment/logic.json -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/BotsCreator/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/BotsCreator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/ConnectionListener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/ConnectionRequester/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/Messenger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/MessengerListener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/ProfilesExtractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/ProfilesFinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/ProfilesGenerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/UserRequester/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/linkedin_recruitment/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/numeric_pipeline/input.csv: -------------------------------------------------------------------------------- 1 | 5,6 2 | -------------------------------------------------------------------------------- /samples/numeric_pipeline/logic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/numeric_pipeline/logic.json -------------------------------------------------------------------------------- /samples/numeric_pipeline/modules/Module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/numeric_pipeline/modules/Module1.py -------------------------------------------------------------------------------- /samples/numeric_pipeline/modules/Module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/numeric_pipeline/modules/Module2.py -------------------------------------------------------------------------------- /samples/numeric_pipeline/modules/Module3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/numeric_pipeline/modules/Module3.py -------------------------------------------------------------------------------- /samples/numeric_pipeline/modules/Module4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/samples/numeric_pipeline/modules/Module4.py -------------------------------------------------------------------------------- /ui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/bower.json -------------------------------------------------------------------------------- /ui/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/.DS_Store -------------------------------------------------------------------------------- /ui/build/assets/common/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/css/main.min.css -------------------------------------------------------------------------------- /ui/build/assets/common/css/source/apps/mail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/css/source/apps/mail.css -------------------------------------------------------------------------------- /ui/build/assets/common/css/source/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/css/source/main.css -------------------------------------------------------------------------------- /ui/build/assets/common/fonts/icomoon-ultimate.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/fonts/icomoon-ultimate.eot -------------------------------------------------------------------------------- /ui/build/assets/common/fonts/icomoon-ultimate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/fonts/icomoon-ultimate.svg -------------------------------------------------------------------------------- /ui/build/assets/common/fonts/icomoon-ultimate.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/fonts/icomoon-ultimate.ttf -------------------------------------------------------------------------------- /ui/build/assets/common/img/favicon.114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/favicon.114x114.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/favicon.144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/favicon.144x144.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/favicon.57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/favicon.57x57.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/favicon.72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/favicon.72x72.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/favicon.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/gray.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/logo-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/logo-inverse.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/logo.png -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/amazon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/amazon.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/avatars/1.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/avatars/2.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/avatars/3.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/avatars/4.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/avatars/5.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/login/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/login/1.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/login/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/login/2.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/login/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/login/3.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/login/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/login/4.jpg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/1.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/10.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/2.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/3.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/4.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/5.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/6.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/7.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/8.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/img/temp/photos/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/img/temp/photos/9.jpeg -------------------------------------------------------------------------------- /ui/build/assets/common/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/js/common.js -------------------------------------------------------------------------------- /ui/build/assets/common/js/demo.temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/js/demo.temp.js -------------------------------------------------------------------------------- /ui/build/assets/common/js/version_angular/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/common/js/version_angular/app.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular-route/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular-route/LICENSE.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular-route/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular-route/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular-route/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular-route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular-route/index.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/LICENSE.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/angular-csp.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/angular.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/angular.min.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/index.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/angular/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/LICENSE.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/build.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/changelog.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/dist/autosize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/dist/autosize.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/readme.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/autosize/src/autosize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/autosize/src/autosize.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap-rtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap-rtl/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap-rtl/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap-rtl/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/package.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/sache.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /ui/build/assets/vendors/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/CONTRIBUTING.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/c3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/c3.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/c3.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/c3.min.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/c3.min.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/extensions/js/c3ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/extensions/js/c3ext.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/c3/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/c3/karma.conf.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/chartist/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/chartist/CHANGELOG.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/chartist/CODINGSTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/chartist/CODINGSTYLE.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/chartist/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/chartist/CONTRIBUTING.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/chartist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/chartist/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/chartist/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/chartist/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/chartist/dist/chartist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/chartist/dist/chartist.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/d3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/d3/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/d3/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/d3/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/d3/d3.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/d3/d3.min.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/datatables-fixedcolumns/css/fixedColumns.bootstrap4.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'fixedColumns.bootstrap.scss'; 3 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/datatables-responsive/css/responsive.jqueryui.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'responsive.dataTables.scss'; 3 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/datatables/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/datatables/Readme.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/datatables/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/datatables/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/datatables/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/datatables/license.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/editable-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/editable-table/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/editable-table/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/editable-table/index.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/editable-table/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/editable-table/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/fullcalendar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/fullcalendar/CHANGELOG.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/fullcalendar/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/fullcalendar/LICENSE.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/fullcalendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/fullcalendar/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/fullcalendar/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/fullcalendar/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/fullcalendar/dist/gcal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/fullcalendar/dist/gcal.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/gsap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/gsap/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/gsap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/gsap/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/gsap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/gsap/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/hackertyper/kernel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/hackertyper/kernel.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/ionrangeslider/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ionrangeslider/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/ionrangeslider/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ionrangeslider/history.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/ionrangeslider/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ionrangeslider/index.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/ionrangeslider/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ionrangeslider/readme.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery-countTo/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery-countTo/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery-countTo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery-countTo/readme.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/CONTRIBUTING.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/Gruntfile.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/build/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/build/release.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/component.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/composer.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/jquery-migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/jquery-migrate.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/jquery.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/jquery.min.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/jquery.min.map -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/benchmark.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/closest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/closest.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/css.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/event.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/filter.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/find.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/speed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/speed/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/ajax.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/attributes.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/callbacks.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/core.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/css.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/data.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/deferred.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/deprecated.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/dimensions.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/effects.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/event-alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/event-alias.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/event.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/exports.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/intro.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/offset.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | })( window ); 3 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/queue.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/serialize.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/support.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/traversing.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/src/wrap.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/1x1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/data/1x1.jpg -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/echoData.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/echoQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/errorWithText.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/readywaitasset.js: -------------------------------------------------------------------------------- 1 | var delayedMessage = "It worked!"; 2 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/data/test.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/data/test.php -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/data/text.php -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/data/ua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/data/ua.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/jquery.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/ajax.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/core.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/css.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/data.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/event.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/queue.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/unit/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/unit/wrap.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/jquery/test/xhtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jquery/test/xhtml.php -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/ajax.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/anchors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/anchors.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/api.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/arrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/arrows.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/basic.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/caps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/caps.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/destroy.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/events.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/faqs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/faqs.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/focus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/focus.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/iframe.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/iframe2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/iframe2.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/image.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/image2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/image2.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/runeimp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/runeimp.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/runeimp2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/runeimp2.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/settings.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/short.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/short.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/jscrollpane/v1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/jscrollpane/v1.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/Gruntfile.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/css/demo.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/css/ladda.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/css/ladda.scss -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/dist/ladda.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/dist/ladda.min.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/dist/ladda.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/dist/ladda.min.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/dist/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/dist/spin.min.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/js/ladda.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/js/ladda.jquery.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/js/ladda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/js/ladda.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/js/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/js/spin.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/test/bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/test/bootstrap.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/ladda/test/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/ladda/test/form.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment-timezone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment-timezone/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/CHANGELOG.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/af.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ar.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/az.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/be.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/bg.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/bn.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/bo.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/br.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/bs.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ca.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/cs.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/cv.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/cy.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/da.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/de-at.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/de.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/dv.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/el.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/en-au.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/en-ca.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/en-gb.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/en-ie.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/en-nz.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/eo.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/es.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/et.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/eu.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fa.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fi.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fo.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fr.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/fy.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/gd.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/gl.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/he.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/hi.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/hr.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/hu.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/hy-am.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/id.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/is.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/it.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ja.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/jv.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ka.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/kk.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/km.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ko.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ky.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/lb.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/lo.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/lt.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/lv.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/me.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/mk.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ml.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/mr.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ms-my.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ms.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/my.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/nb.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ne.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/nl.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/nn.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/pa-in.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/pl.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/pt-br.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/pt.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ro.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ru.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/se.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/si.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sk.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sl.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sq.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sr-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sr-cyrl.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sr.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ss.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sv.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/sw.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/ta.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/te.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/th.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/tlh.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/tr.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/tzl.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/tzm-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/tzm-latn.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/tzm.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/uk.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/uz.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/vi.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/x-pseudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/x-pseudo.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/min/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/min/locales.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/min/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/min/tests.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/moment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/moment.d.ts -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/moment.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/moment/src/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/moment/src/moment.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/nestable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/nestable/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/nestable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/nestable/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/owl.carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/owl.carousel/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/owl.carousel/docs_src/helpers/modulo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/owl.carousel/docs_src/templates/partials/releated-docs.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/owl.carousel/src/scss/owl.theme.default.scss: -------------------------------------------------------------------------------- 1 | @import "theme.default"; -------------------------------------------------------------------------------- /ui/build/assets/vendors/owl.carousel/src/scss/owl.theme.green.scss: -------------------------------------------------------------------------------- 1 | @import "theme.green"; -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/CHANGELOG.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/Gemfile.lock -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/README.markdown -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/docs/style.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/jquery.peity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/jquery.peity.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/app.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/chart.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/charts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/charts.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/fixtures.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/index.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/server.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/peity/test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/peity/test/style.css -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/Gruntfile.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/LICENSE.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/component.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/composer.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/docs/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/select2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/select2/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/spin.js/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/spin.js/LICENSE.txt -------------------------------------------------------------------------------- /ui/build/assets/vendors/spin.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/spin.js/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/spin.js/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/spin.js/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/spin.js/jquery.spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/spin.js/jquery.spin.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/spin.js/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/spin.js/spin.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/summernote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/summernote/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/summernote/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/summernote/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/summernote/ie8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/summernote/ie8.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/summernote/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/summernote/index.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/summernote/lite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/summernote/lite.html -------------------------------------------------------------------------------- /ui/build/assets/vendors/summernote/src/js/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/CHANGELOG.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/CONTRIBUTING.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/README.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/bower.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/component.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/docs/intro.md -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/gulpfile.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/package.json -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/src/js/shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/src/js/shift.js -------------------------------------------------------------------------------- /ui/build/assets/vendors/tether/src/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/assets/vendors/tether/src/js/utils.js -------------------------------------------------------------------------------- /ui/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/favicon.ico -------------------------------------------------------------------------------- /ui/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/index.html -------------------------------------------------------------------------------- /ui/build/version_angular/apps/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/apps/calendar.html -------------------------------------------------------------------------------- /ui/build/version_angular/apps/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/apps/gallery.html -------------------------------------------------------------------------------- /ui/build/version_angular/apps/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/apps/mail.html -------------------------------------------------------------------------------- /ui/build/version_angular/apps/messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/apps/messaging.html -------------------------------------------------------------------------------- /ui/build/version_angular/apps/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/apps/profile.html -------------------------------------------------------------------------------- /ui/build/version_angular/charts/c3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/charts/c3.html -------------------------------------------------------------------------------- /ui/build/version_angular/charts/peity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/charts/peity.html -------------------------------------------------------------------------------- /ui/build/version_angular/components/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/components/modal.html -------------------------------------------------------------------------------- /ui/build/version_angular/components/steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/components/steps.html -------------------------------------------------------------------------------- /ui/build/version_angular/components/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/components/tabs.html -------------------------------------------------------------------------------- /ui/build/version_angular/dashboards/alpha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/dashboards/alpha.html -------------------------------------------------------------------------------- /ui/build/version_angular/dashboards/beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/dashboards/beta.html -------------------------------------------------------------------------------- /ui/build/version_angular/forms/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/forms/buttons.html -------------------------------------------------------------------------------- /ui/build/version_angular/forms/dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/forms/dropdowns.html -------------------------------------------------------------------------------- /ui/build/version_angular/forms/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/forms/extras.html -------------------------------------------------------------------------------- /ui/build/version_angular/forms/input-mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/forms/input-mask.html -------------------------------------------------------------------------------- /ui/build/version_angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/index.html -------------------------------------------------------------------------------- /ui/build/version_angular/index_boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/index_boxed.html -------------------------------------------------------------------------------- /ui/build/version_angular/index_horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/index_horizontal.html -------------------------------------------------------------------------------- /ui/build/version_angular/index_iconbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/index_iconbar.html -------------------------------------------------------------------------------- /ui/build/version_angular/index_inverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/index_inverse.html -------------------------------------------------------------------------------- /ui/build/version_angular/layout/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/layout/grid.html -------------------------------------------------------------------------------- /ui/build/version_angular/layout/panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/layout/panels.html -------------------------------------------------------------------------------- /ui/build/version_angular/layout/sidebars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/layout/sidebars.html -------------------------------------------------------------------------------- /ui/build/version_angular/layout/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/layout/utilities.html -------------------------------------------------------------------------------- /ui/build/version_angular/pages/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/invoice.html -------------------------------------------------------------------------------- /ui/build/version_angular/pages/lockscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/lockscreen.html -------------------------------------------------------------------------------- /ui/build/version_angular/pages/login.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/login.ctrl.js -------------------------------------------------------------------------------- /ui/build/version_angular/pages/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/login.html -------------------------------------------------------------------------------- /ui/build/version_angular/pages/page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/page-404.html -------------------------------------------------------------------------------- /ui/build/version_angular/pages/page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/page-500.html -------------------------------------------------------------------------------- /ui/build/version_angular/pages/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_angular/pages/register.html -------------------------------------------------------------------------------- /ui/build/version_html/apps-calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/apps-calendar.html -------------------------------------------------------------------------------- /ui/build/version_html/apps-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/apps-gallery.html -------------------------------------------------------------------------------- /ui/build/version_html/apps-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/apps-mail.html -------------------------------------------------------------------------------- /ui/build/version_html/apps-messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/apps-messaging.html -------------------------------------------------------------------------------- /ui/build/version_html/apps-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/apps-profile.html -------------------------------------------------------------------------------- /ui/build/version_html/charts-c3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/charts-c3.html -------------------------------------------------------------------------------- /ui/build/version_html/charts-chartistjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/charts-chartistjs.html -------------------------------------------------------------------------------- /ui/build/version_html/charts-peity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/charts-peity.html -------------------------------------------------------------------------------- /ui/build/version_html/components-calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-calendar.html -------------------------------------------------------------------------------- /ui/build/version_html/components-carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-carousel.html -------------------------------------------------------------------------------- /ui/build/version_html/components-collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-collapse.html -------------------------------------------------------------------------------- /ui/build/version_html/components-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-modal.html -------------------------------------------------------------------------------- /ui/build/version_html/components-nestable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-nestable.html -------------------------------------------------------------------------------- /ui/build/version_html/components-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-slider.html -------------------------------------------------------------------------------- /ui/build/version_html/components-steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-steps.html -------------------------------------------------------------------------------- /ui/build/version_html/components-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/components-tabs.html -------------------------------------------------------------------------------- /ui/build/version_html/dashboards-beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/dashboards-beta.html -------------------------------------------------------------------------------- /ui/build/version_html/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/documentation.html -------------------------------------------------------------------------------- /ui/build/version_html/forms-autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/forms-autocomplete.html -------------------------------------------------------------------------------- /ui/build/version_html/forms-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/forms-buttons.html -------------------------------------------------------------------------------- /ui/build/version_html/forms-dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/forms-dropdowns.html -------------------------------------------------------------------------------- /ui/build/version_html/forms-extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/forms-extras.html -------------------------------------------------------------------------------- /ui/build/version_html/forms-input-mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/forms-input-mask.html -------------------------------------------------------------------------------- /ui/build/version_html/forms-selectboxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/forms-selectboxes.html -------------------------------------------------------------------------------- /ui/build/version_html/icons-fontawesome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/icons-fontawesome.html -------------------------------------------------------------------------------- /ui/build/version_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/index.html -------------------------------------------------------------------------------- /ui/build/version_html/layout-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/layout-grid.html -------------------------------------------------------------------------------- /ui/build/version_html/layout-panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/layout-panels.html -------------------------------------------------------------------------------- /ui/build/version_html/layout-sidebars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/layout-sidebars.html -------------------------------------------------------------------------------- /ui/build/version_html/layout-typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/layout-typography.html -------------------------------------------------------------------------------- /ui/build/version_html/layout-utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/layout-utilities.html -------------------------------------------------------------------------------- /ui/build/version_html/pages-invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/pages-invoice.html -------------------------------------------------------------------------------- /ui/build/version_html/pages-lockscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/pages-lockscreen.html -------------------------------------------------------------------------------- /ui/build/version_html/pages-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/pages-login.html -------------------------------------------------------------------------------- /ui/build/version_html/pages-page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/pages-page-404.html -------------------------------------------------------------------------------- /ui/build/version_html/pages-page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/pages-page-500.html -------------------------------------------------------------------------------- /ui/build/version_html/pages-register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/pages-register.html -------------------------------------------------------------------------------- /ui/build/version_html/tables-basic-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/tables-basic-tables.html -------------------------------------------------------------------------------- /ui/build/version_html/tables-datatables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/build/version_html/tables-datatables.html -------------------------------------------------------------------------------- /ui/contributors.txt: -------------------------------------------------------------------------------- 1 | Mediatec Software 2 | -------------------------------------------------------------------------------- /ui/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/gulpfile.js -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/run.sh -------------------------------------------------------------------------------- /ui/src/assets/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/apps/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/apps/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/apps/calendar.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/apps/gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/apps/gallery.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/apps/mail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/apps/mail.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/apps/messaging.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/apps/messaging.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/apps/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/apps/profile.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/components/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/components/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/components/modal.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/components/steps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/components/steps.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/components/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/components/tabs.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/forms/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/forms/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/forms/buttons.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/forms/dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/forms/dropdowns.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/helpers/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/helpers/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/helpers/fonts.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/main.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/mixins.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/pages/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/themes/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/themes/theme-red.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/themes/theme-red.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/vendors/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/css/vendors/chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/vendors/chartist.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/vendors/nestable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/vendors/nestable.scss -------------------------------------------------------------------------------- /ui/src/assets/common/css/vendors/select2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/css/vendors/select2.scss -------------------------------------------------------------------------------- /ui/src/assets/common/fonts/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/img/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/img/favicon.114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/favicon.114x114.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/favicon.144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/favicon.144x144.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/favicon.57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/favicon.57x57.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/favicon.72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/favicon.72x72.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/favicon.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/gray.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/logo-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/logo-inverse.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/logo.png -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/amazon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/amazon.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/avatars/1.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/avatars/2.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/avatars/3.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/avatars/4.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/avatars/5.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/avatars/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/login/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/login/1.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/login/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/login/2.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/login/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/login/3.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/login/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/login/4.jpg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/login/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/1.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/10.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/2.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/3.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/4.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/5.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/6.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/7.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/8.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/img/temp/photos/9.jpeg -------------------------------------------------------------------------------- /ui/src/assets/common/img/temp/photos/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/js/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/js/common.js -------------------------------------------------------------------------------- /ui/src/assets/common/js/demo.temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/js/demo.temp.js -------------------------------------------------------------------------------- /ui/src/assets/common/js/version_angular/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/common/js/version_angular/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/common/js/version_angular/app.js -------------------------------------------------------------------------------- /ui/src/assets/vendors/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/cleanhtmlaudioplayer/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/cleanhtmlaudioplayer/src/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/cleanhtmlvideoplayer/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/cleanhtmlvideoplayer/src/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/editable-table/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/editable-table/external/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/editable-table/external/google-code-prettify/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/manual/hackertyper/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/assets/vendors/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/assets/vendors/readme.txt -------------------------------------------------------------------------------- /ui/src/templates/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/apps/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/apps/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/apps/calendar.html -------------------------------------------------------------------------------- /ui/src/templates/apps/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/apps/gallery.html -------------------------------------------------------------------------------- /ui/src/templates/apps/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/apps/mail.html -------------------------------------------------------------------------------- /ui/src/templates/apps/messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/apps/messaging.html -------------------------------------------------------------------------------- /ui/src/templates/apps/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/apps/profile.html -------------------------------------------------------------------------------- /ui/src/templates/charts/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/charts/c3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/charts/c3.html -------------------------------------------------------------------------------- /ui/src/templates/charts/chartistjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/charts/chartistjs.html -------------------------------------------------------------------------------- /ui/src/templates/charts/peity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/charts/peity.html -------------------------------------------------------------------------------- /ui/src/templates/components/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/components/badges-labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/badges-labels.html -------------------------------------------------------------------------------- /ui/src/templates/components/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/calendar.html -------------------------------------------------------------------------------- /ui/src/templates/components/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/carousel.html -------------------------------------------------------------------------------- /ui/src/templates/components/collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/collapse.html -------------------------------------------------------------------------------- /ui/src/templates/components/date-picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/date-picker.html -------------------------------------------------------------------------------- /ui/src/templates/components/media-players.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/media-players.html -------------------------------------------------------------------------------- /ui/src/templates/components/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/modal.html -------------------------------------------------------------------------------- /ui/src/templates/components/nestable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/nestable.html -------------------------------------------------------------------------------- /ui/src/templates/components/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/pagination.html -------------------------------------------------------------------------------- /ui/src/templates/components/progress-bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/progress-bars.html -------------------------------------------------------------------------------- /ui/src/templates/components/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/slider.html -------------------------------------------------------------------------------- /ui/src/templates/components/steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/steps.html -------------------------------------------------------------------------------- /ui/src/templates/components/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/tabs.html -------------------------------------------------------------------------------- /ui/src/templates/components/text-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/components/text-editor.html -------------------------------------------------------------------------------- /ui/src/templates/dashboards/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/dashboards/alpha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/dashboards/alpha.html -------------------------------------------------------------------------------- /ui/src/templates/dashboards/beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/dashboards/beta.html -------------------------------------------------------------------------------- /ui/src/templates/documentation/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/documentation/index.html -------------------------------------------------------------------------------- /ui/src/templates/forms/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/forms/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/autocomplete.html -------------------------------------------------------------------------------- /ui/src/templates/forms/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/buttons.html -------------------------------------------------------------------------------- /ui/src/templates/forms/checkboxes-radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/checkboxes-radio.html -------------------------------------------------------------------------------- /ui/src/templates/forms/dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/dropdowns.html -------------------------------------------------------------------------------- /ui/src/templates/forms/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/extras.html -------------------------------------------------------------------------------- /ui/src/templates/forms/form-validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/form-validation.html -------------------------------------------------------------------------------- /ui/src/templates/forms/input-mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/input-mask.html -------------------------------------------------------------------------------- /ui/src/templates/forms/selectboxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/forms/selectboxes.html -------------------------------------------------------------------------------- /ui/src/templates/icons/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/icons/fontawesome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/icons/fontawesome.html -------------------------------------------------------------------------------- /ui/src/templates/icons/icomoon-ultimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/icons/icomoon-ultimate.html -------------------------------------------------------------------------------- /ui/src/templates/layout/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/layout/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/layout/grid.html -------------------------------------------------------------------------------- /ui/src/templates/layout/panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/layout/panels.html -------------------------------------------------------------------------------- /ui/src/templates/layout/sidebars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/layout/sidebars.html -------------------------------------------------------------------------------- /ui/src/templates/layout/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/layout/typography.html -------------------------------------------------------------------------------- /ui/src/templates/layout/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/layout/utilities.html -------------------------------------------------------------------------------- /ui/src/templates/pages/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/pages/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/invoice.html -------------------------------------------------------------------------------- /ui/src/templates/pages/lockscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/lockscreen.html -------------------------------------------------------------------------------- /ui/src/templates/pages/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/login.html -------------------------------------------------------------------------------- /ui/src/templates/pages/page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/page-404.html -------------------------------------------------------------------------------- /ui/src/templates/pages/page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/page-500.html -------------------------------------------------------------------------------- /ui/src/templates/pages/pricing-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/pricing-tables.html -------------------------------------------------------------------------------- /ui/src/templates/pages/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/pages/register.html -------------------------------------------------------------------------------- /ui/src/templates/tables/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/templates/tables/basic-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/tables/basic-tables.html -------------------------------------------------------------------------------- /ui/src/templates/tables/datatables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/tables/datatables.html -------------------------------------------------------------------------------- /ui/src/templates/tables/editable-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/templates/tables/editable-tables.html -------------------------------------------------------------------------------- /ui/src/version_angular/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/_footer.html -------------------------------------------------------------------------------- /ui/src/version_angular/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/_header.html -------------------------------------------------------------------------------- /ui/src/version_angular/_left-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/_left-menu.html -------------------------------------------------------------------------------- /ui/src/version_angular/_top-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/_top-menu.html -------------------------------------------------------------------------------- /ui/src/version_angular/apps/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/apps/calendar.html: -------------------------------------------------------------------------------- 1 | //= ../templates/apps/calendar.html -------------------------------------------------------------------------------- /ui/src/version_angular/apps/gallery.html: -------------------------------------------------------------------------------- 1 | //= ../templates/apps/gallery.html -------------------------------------------------------------------------------- /ui/src/version_angular/apps/mail.html: -------------------------------------------------------------------------------- 1 | //= ../templates/apps/mail.html -------------------------------------------------------------------------------- /ui/src/version_angular/apps/messaging.html: -------------------------------------------------------------------------------- 1 | //= ../templates/apps/messaging.html -------------------------------------------------------------------------------- /ui/src/version_angular/apps/profile.html: -------------------------------------------------------------------------------- 1 | //= ../templates/apps/profile.html -------------------------------------------------------------------------------- /ui/src/version_angular/charts/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/charts/c3.html: -------------------------------------------------------------------------------- 1 | //= ../templates/charts/c3.html -------------------------------------------------------------------------------- /ui/src/version_angular/charts/chartistjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/charts/chartistjs.html -------------------------------------------------------------------------------- /ui/src/version_angular/charts/peity.html: -------------------------------------------------------------------------------- 1 | //= ../templates/charts/peity.html -------------------------------------------------------------------------------- /ui/src/version_angular/components/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/badges-labels.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/badges-labels.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/calendar.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/calendar.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/carousel.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/carousel.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/date-picker.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/date-picker.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/media-players.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/media-players.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/modal.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/modal.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/nestable.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/nestable.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/notifications-alerts.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/notifications-alerts.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/pagination.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/pagination.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/progress-bars.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/progress-bars.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/slider.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/slider.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/steps.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/steps.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/tabs.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/tabs.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/text-editor.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/text-editor.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/components/tooltips-popovers.html: -------------------------------------------------------------------------------- 1 | //= ../templates/components/tooltips-popovers.html 2 | -------------------------------------------------------------------------------- /ui/src/version_angular/dashboards/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/dashboards/alpha.html: -------------------------------------------------------------------------------- 1 | //= ../templates/dashboards/alpha.html -------------------------------------------------------------------------------- /ui/src/version_angular/dashboards/beta.html: -------------------------------------------------------------------------------- 1 | //= ../templates/dashboards/beta.html -------------------------------------------------------------------------------- /ui/src/version_angular/dashboards/dash03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/dashboards/dash03.html -------------------------------------------------------------------------------- /ui/src/version_angular/diagrams/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/diagrams/diagram1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/diagrams/diagram1.html -------------------------------------------------------------------------------- /ui/src/version_angular/diagrams/index_files/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/documentation/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/documentation/index.html: -------------------------------------------------------------------------------- 1 | //= ../templates/documentation/index.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/forms/autocomplete.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/autocomplete.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/buttons.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/buttons.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/checkboxes-radio.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/checkboxes-radio.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/dropdowns.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/dropdowns.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/extras.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/extras.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/input-mask.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/input-mask.html -------------------------------------------------------------------------------- /ui/src/version_angular/forms/selectboxes.html: -------------------------------------------------------------------------------- 1 | //= ../templates/forms/selectboxes.html -------------------------------------------------------------------------------- /ui/src/version_angular/icons/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/icons/fontawesome.html: -------------------------------------------------------------------------------- 1 | //= ../templates/icons/fontawesome.html -------------------------------------------------------------------------------- /ui/src/version_angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/index.html -------------------------------------------------------------------------------- /ui/src/version_angular/index_boxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/index_boxed.html -------------------------------------------------------------------------------- /ui/src/version_angular/index_horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/index_horizontal.html -------------------------------------------------------------------------------- /ui/src/version_angular/index_iconbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/index_iconbar.html -------------------------------------------------------------------------------- /ui/src/version_angular/index_inverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/index_inverse.html -------------------------------------------------------------------------------- /ui/src/version_angular/index_theme_orange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/index_theme_orange.html -------------------------------------------------------------------------------- /ui/src/version_angular/layout/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/layout/grid.html: -------------------------------------------------------------------------------- 1 | //= ../templates/layout/grid.html -------------------------------------------------------------------------------- /ui/src/version_angular/layout/panels.html: -------------------------------------------------------------------------------- 1 | //= ../templates/layout/panels.html -------------------------------------------------------------------------------- /ui/src/version_angular/layout/utilities.html: -------------------------------------------------------------------------------- 1 | //= ../templates/layout/utilities.html -------------------------------------------------------------------------------- /ui/src/version_angular/pages/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/pages/invoice.html: -------------------------------------------------------------------------------- 1 | //= ../templates/pages/invoice.html -------------------------------------------------------------------------------- /ui/src/version_angular/pages/lockscreen.html: -------------------------------------------------------------------------------- 1 | //= ../templates/pages/lockscreen.html -------------------------------------------------------------------------------- /ui/src/version_angular/pages/login.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/pages/login.ctrl.js -------------------------------------------------------------------------------- /ui/src/version_angular/pages/login.html: -------------------------------------------------------------------------------- 1 | //= ../templates/pages/login.html -------------------------------------------------------------------------------- /ui/src/version_angular/pages/page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/pages/page-404.html -------------------------------------------------------------------------------- /ui/src/version_angular/pages/page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/pages/page-500.html -------------------------------------------------------------------------------- /ui/src/version_angular/pages/register.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/pages/register.ctrl.js -------------------------------------------------------------------------------- /ui/src/version_angular/pages/register.html: -------------------------------------------------------------------------------- 1 | //= ../templates/pages/register.html -------------------------------------------------------------------------------- /ui/src/version_angular/tables/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_angular/tables/datatables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_angular/tables/datatables.html -------------------------------------------------------------------------------- /ui/src/version_html/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/version_html/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/_footer.html -------------------------------------------------------------------------------- /ui/src/version_html/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/_header.html -------------------------------------------------------------------------------- /ui/src/version_html/_left-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/_left-menu.html -------------------------------------------------------------------------------- /ui/src/version_html/_top-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/_top-menu.html -------------------------------------------------------------------------------- /ui/src/version_html/apps-calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/apps-calendar.html -------------------------------------------------------------------------------- /ui/src/version_html/apps-gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/apps-gallery.html -------------------------------------------------------------------------------- /ui/src/version_html/apps-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/apps-mail.html -------------------------------------------------------------------------------- /ui/src/version_html/apps-messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/apps-messaging.html -------------------------------------------------------------------------------- /ui/src/version_html/apps-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/apps-profile.html -------------------------------------------------------------------------------- /ui/src/version_html/charts-c3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/charts-c3.html -------------------------------------------------------------------------------- /ui/src/version_html/charts-chartistjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/charts-chartistjs.html -------------------------------------------------------------------------------- /ui/src/version_html/charts-peity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/charts-peity.html -------------------------------------------------------------------------------- /ui/src/version_html/components-calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-calendar.html -------------------------------------------------------------------------------- /ui/src/version_html/components-carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-carousel.html -------------------------------------------------------------------------------- /ui/src/version_html/components-collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-collapse.html -------------------------------------------------------------------------------- /ui/src/version_html/components-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-modal.html -------------------------------------------------------------------------------- /ui/src/version_html/components-nestable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-nestable.html -------------------------------------------------------------------------------- /ui/src/version_html/components-pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-pagination.html -------------------------------------------------------------------------------- /ui/src/version_html/components-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-slider.html -------------------------------------------------------------------------------- /ui/src/version_html/components-steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-steps.html -------------------------------------------------------------------------------- /ui/src/version_html/components-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/components-tabs.html -------------------------------------------------------------------------------- /ui/src/version_html/dashboards-beta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/dashboards-beta.html -------------------------------------------------------------------------------- /ui/src/version_html/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/documentation.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-autocomplete.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-buttons.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-dropdowns.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-extras.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-form-validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-form-validation.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-input-mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-input-mask.html -------------------------------------------------------------------------------- /ui/src/version_html/forms-selectboxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/forms-selectboxes.html -------------------------------------------------------------------------------- /ui/src/version_html/icons-fontawesome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/icons-fontawesome.html -------------------------------------------------------------------------------- /ui/src/version_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/index.html -------------------------------------------------------------------------------- /ui/src/version_html/layout-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/layout-grid.html -------------------------------------------------------------------------------- /ui/src/version_html/layout-panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/layout-panels.html -------------------------------------------------------------------------------- /ui/src/version_html/layout-sidebars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/layout-sidebars.html -------------------------------------------------------------------------------- /ui/src/version_html/layout-typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/layout-typography.html -------------------------------------------------------------------------------- /ui/src/version_html/layout-utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/layout-utilities.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-invoice.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-lockscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-lockscreen.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-login.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-page-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-page-404.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-page-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-page-500.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-pricing-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-pricing-tables.html -------------------------------------------------------------------------------- /ui/src/version_html/pages-register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/pages-register.html -------------------------------------------------------------------------------- /ui/src/version_html/tables-basic-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/tables-basic-tables.html -------------------------------------------------------------------------------- /ui/src/version_html/tables-datatables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toxtli/bots-workflow-designer/HEAD/ui/src/version_html/tables-datatables.html --------------------------------------------------------------------------------