diff options
author | isteven <isteven@server.fake> | 2014-03-28 09:27:52 +0800 |
---|---|---|
committer | isteven <isteven@server.fake> | 2014-03-28 09:27:52 +0800 |
commit | ccbbf987f61218ba5d15730fb4c3b61dbc0e9cc7 (patch) | |
tree | e30ab3a2fecef950ec9ef498ffc7b7f50a8e21fd | |
parent | f676d3e41edb61e82319fd4bb3c45950a670ff06 (diff) | |
download | angular-multi-select-ccbbf987f61218ba5d15730fb4c3b61dbc0e9cc7.zip angular-multi-select-ccbbf987f61218ba5d15730fb4c3b61dbc0e9cc7.tar.gz angular-multi-select-ccbbf987f61218ba5d15730fb4c3b61dbc0e9cc7.tar.bz2 |
Removed debuger script.
-rw-r--r-- | multiselect.htm | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/multiselect.htm b/multiselect.htm index 385772e..23d08a9 100644 --- a/multiselect.htm +++ b/multiselect.htm @@ -5,8 +5,7 @@ <!-- Angular JS --> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> <!-- multi select directive --> - <script src="angular-multi-select.js"></script> - <script src="debug.js"></script> + <script src="angular-multi-select.js"></script> <!-- css --> <link rel="stylesheet" href="angular-multi-select.css"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> @@ -71,9 +70,10 @@ var myApp = angular.module('myApp', [ 'multi-select' ]); // Controller myApp.controller( 'main' , [ '$scope' , function ($scope) { -///////////// -// Minimal -///////////// + + ///////////// + // Minimal + ///////////// $scope.minData = [ { id: 1, firstName: "Peter", lastName: "Parker", selected: false, hoho:'hoho' }, @@ -93,9 +93,10 @@ myApp.controller( 'main' , [ '$scope' , function ($scope) { }); }, true ); -///////////// -// Full -///////////// + + ///////////// + // Full + ///////////// $scope.resultData = []; @@ -127,10 +128,10 @@ myApp.controller( 'main' , [ '$scope' , function ($scope) { }); }, true ); -///////////// -// Dynamic -///////////// + ///////////// + // Dynamic + ///////////// $scope.dynamicData = []; $scope.dinDisabled = false; |