summaryrefslogtreecommitdiffstats
path: root/doc/js/controllers/demo-minimum.js
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/js/controllers/demo-minimum.js
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/js/controllers/demo-minimum.js')
-rw-r--r--doc/js/controllers/demo-minimum.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/js/controllers/demo-minimum.js b/doc/js/controllers/demo-minimum.js
new file mode 100644
index 0000000..51a173e
--- /dev/null
+++ b/doc/js/controllers/demo-minimum.js
@@ -0,0 +1,35 @@
+myApp.controller( 'demoMinimum' , [ '$scope' , function ($scope) {
+
+ $scope.modernBrowsers = [
+ {
+ icon: '<img src="https://cdn1.iconfinder.com/data/icons/fatcow/32/opera.png" />',
+ name: 'Opera',
+ maker: 'Opera Software',
+ ticked: true
+ },
+ {
+ icon: '<img src="https://cdn1.iconfinder.com/data/icons/fatcow/32/internet_explorer.png" />',
+ name: 'Internet Explorer',
+ maker: 'Microsoft',
+ ticked: false
+ },
+ {
+ icon: '<img src="https://cdn1.iconfinder.com/data/icons/humano2/32x32/apps/firefox-icon.png" />',
+ name: 'Firefox',
+ maker: 'Mozilla Foundation',
+ ticked: true
+ },
+ {
+ icon: '<img src="https://cdn1.iconfinder.com/data/icons/fatcow/32x32/safari_browser.png" />',
+ name: 'Safari',
+ maker: 'Apple',
+ ticked: false
+ },
+ {
+ icon: '<img src="https://cdn1.iconfinder.com/data/icons/google_jfk_icons_by_carlosjj/32/chrome.png" />',
+ name: 'Chrome',
+ maker: 'Google',
+ ticked: true
+ }
+ ];
+}]);