summaryrefslogtreecommitdiffstats
path: root/doc/views/main.htm
diff options
context:
space:
mode:
authoristeven <ignatius.steven@gmail.com>2015-02-24 08:10:55 +0800
committeristeven <ignatius.steven@gmail.com>2015-02-24 08:10:55 +0800
commitc5379a91e6274881fb986e2423a699c8712ed170 (patch)
tree74d3e6ff434af455d4927517424d6e2a9ce6b4f6 /doc/views/main.htm
parentb33a51992f76c668906f12b5e728c63cc8ac0d63 (diff)
downloadangular-multi-select-c5379a91e6274881fb986e2423a699c8712ed170.zip
angular-multi-select-c5379a91e6274881fb986e2423a699c8712ed170.tar.gz
angular-multi-select-c5379a91e6274881fb986e2423a699c8712ed170.tar.bz2
added offline documentation
Diffstat (limited to 'doc/views/main.htm')
-rw-r--r--doc/views/main.htm113
1 files changed, 113 insertions, 0 deletions
diff --git a/doc/views/main.htm b/doc/views/main.htm
new file mode 100644
index 0000000..baa3912
--- /dev/null
+++ b/doc/views/main.htm
@@ -0,0 +1,113 @@
+<div class="row">
+ <div class="col-sm-12">
+ <h3 class="pageHeading">AngularJs MultiSelect</h3>
+ </div>
+</div>
+<div class="row">
+ <div class="col-sm-12">
+ <p>
+ Pure AngularJS directive which creates a dropdown button with multiple or single selections.
+ Doesn't require jQuery and works well with other Javascript libraries.
+ </p>
+ <br />
+ <div
+ isteven-multi-select
+ input-model="modernBrowsers"
+ output-model="anyOutput"
+ button-label="icon name"
+ item-label="icon name maker"
+ tick-property="ticked"
+ >
+ </div>
+ <h5>Features</h5>
+ <ul>
+ <li>
+ Pure AngularJS. Can be easily combined with other Javascript libraries such as jQuery, Twitter Bootstrap, etc
+ <br />(With slight adjustments where necessary).
+ </li>
+ <li>Multiple or single selection types</li>
+ <li>Use HTML &amp; CSS in your button & checkbox labels</li>
+ <li>Unlimited nested grouping</li>
+ <li>Keyboard navigation support</li>
+ <li>Event callbacks available</li>
+ <li>Configurable</li>
+ <li>i18n. Easily translated to different languages.</li>
+ </ul>
+
+ <h5>Current version</h5>
+ <p>3.0.0</p>
+
+ <h5>Changelog</h5>
+ <p>
+ See <a href="https://github.com/isteven/angular-multi-select/blob/master/CHANGELOG.md" target="_blank">CHANGELOG.md</a>.
+ For those who's upgrading from version 2.x.x, do note that this version is not backward-compatible. Please read this manual
+ thoroughly and update your code accordingly. Read the <a href="#/breaking-changes">breaking changes</a> to know more.
+ </p>
+ <h5>If you like this directive</h5>
+ <p>
+ Do consider "purchasing" it - basically making a donation. I am moving away from my full-time job soon,
+ and your support will greatly help me to keep this project alive. I use the "Buy Now" button instead
+ of usual "Donate" button because of PayPal's restriction. They now only allow registered charities
+ to use the "Donate" button.
+ </p>
+ <!--
+ <p>
+ <a href="https://github.com/isteven/angular-multi-select" target="_blank" class="download" onclick="ga( 'send', 'event', 'button', 'click' );">
+ <span class="fa fa-github fa-lg">
+ </span>
+ &nbsp; View on Github
+ </a>
+ </p>
+ -->
+
+ </div>
+</div>
+<div class="row">
+ <div class="col-sm-12">
+ <div style="display: inline-block;float: left; width: 140px;">
+ <strong style="float: left; padding-top:5px;">$5&nbsp;</strong>
+ <script async="async" src="js/libs/paypal-button.min.js?merchant=K2MZQDX6JG8H6"
+ data-button="buynow"
+ data-name="iSteven's AngularJs MultiSelect"
+ data-quantity="1"
+ data-amount="5"
+ data-currency="USD"
+ data-shipping="0"
+ data-tax="0"
+ ></script>
+ </div>
+ <div style="display: inline-block;">
+ <strong style="float: left; padding-top:5px;">$10&nbsp;</strong>
+ <script async="async" src="js/libs/paypal-button.min.js?merchant=K2MZQDX6JG8H6"
+ data-button="buynow"
+ data-name="iSteven's AngularJs MultiSelect"
+ data-quantity="1"
+ data-amount="10"
+ data-currency="USD"
+ data-shipping="0"
+ data-tax="0"
+ ></script>
+ </div>
+ </div>
+</div>
+<div class="row">
+ <div class="col-sm-12">
+ <h5>About this documentation</h5>
+ <p>
+ If you download the complete package, this web-based documentation can be found in the <code>/docs</code> folder of the master branch.
+ It's an AngularJs app itself, so it is suggested that you run it under a web server, such as your localhost.
+ </p>
+ </div>
+</div>
+<!--
+<a href="https://github.com/isteven/angular-multi-select">
+ <img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
+</a>
+-->
+<script>
+ $(document).ready(function() {
+ $('pre code').each(function(i, block) {
+ hljs.highlightBlock(block);
+ });
+ });
+</script>