diff options
author | isteven <ignatius.steven@gmail.com> | 2015-03-22 15:36:34 +0800 |
---|---|---|
committer | isteven <ignatius.steven@gmail.com> | 2015-03-22 15:36:34 +0800 |
commit | 75c2882005c055201b9d02c416ba42913071e192 (patch) | |
tree | edd9600fd0cdc9e26c5cb4fde4853da4f76c4aba | |
parent | 8fc305e50194513f52c562f9c0a08abedf39b5c3 (diff) | |
download | angular-multi-select-75c2882005c055201b9d02c416ba42913071e192.zip angular-multi-select-75c2882005c055201b9d02c416ba42913071e192.tar.gz angular-multi-select-75c2882005c055201b9d02c416ba42913071e192.tar.bz2 |
fix manual data type
-rw-r--r-- | views/demo-callbacks.htm | 12 | ||||
-rw-r--r-- | views/demo-disabling-enabling.htm | 12 | ||||
-rw-r--r-- | views/demo-dynamic-update.htm | 18 | ||||
-rw-r--r-- | views/demo-grouping.htm | 6 | ||||
-rw-r--r-- | views/demo-horizontal-layout.htm | 12 | ||||
-rw-r--r-- | views/demo-minimum.htm | 12 | ||||
-rw-r--r-- | views/demo-single-selection-mode.htm | 12 |
7 files changed, 42 insertions, 42 deletions
diff --git a/views/demo-callbacks.htm b/views/demo-callbacks.htm index ade9ac1..cd7ce34 100644 --- a/views/demo-callbacks.htm +++ b/views/demo-callbacks.htm @@ -68,9 +68,9 @@ <tr class="hljs-tag" ng-repeat="row in modernBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> @@ -135,9 +135,9 @@ $scope.fSearchChange = function( data ) { <tr class="hljs-tag" ng-repeat="row in outputBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < outputBrowsers.length - 1">,</span></td> </tr> diff --git a/views/demo-disabling-enabling.htm b/views/demo-disabling-enabling.htm index 737de31..e3e28c9 100644 --- a/views/demo-disabling-enabling.htm +++ b/views/demo-disabling-enabling.htm @@ -76,9 +76,9 @@ <tr class="hljs-tag" ng-repeat="row in modernBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> @@ -105,9 +105,9 @@ <tr class="hljs-tag" ng-repeat="row in outputBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> diff --git a/views/demo-dynamic-update.htm b/views/demo-dynamic-update.htm index 4a33fdb..baf1713 100644 --- a/views/demo-dynamic-update.htm +++ b/views/demo-dynamic-update.htm @@ -74,9 +74,9 @@ <tr class="hljs-tag" ng-repeat="row in dynamicData" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernBrowsers.length - 1">,</span></td> </tr> @@ -90,9 +90,9 @@ <tr class="hljs-tag" ng-repeat="row in oldBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < oldBrowsers.length - 1">,</span></td> </tr> @@ -133,9 +133,9 @@ $scope.switchSource( 'modernBrowsers' );</code></pre> <tr class="hljs-tag" ng-repeat="row in outputBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> diff --git a/views/demo-grouping.htm b/views/demo-grouping.htm index 14764a8..0ae25b7 100644 --- a/views/demo-grouping.htm +++ b/views/demo-grouping.htm @@ -171,9 +171,9 @@ Now, in your controller, grouping is made by enclosing some rows of your input-m <tr class="hljs-tag" ng-repeat="row in outputBrowsers1" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < outputBrowsers1.length - 1">,</span></td> </tr> diff --git a/views/demo-horizontal-layout.htm b/views/demo-horizontal-layout.htm index 8b58933..da38770 100644 --- a/views/demo-horizontal-layout.htm +++ b/views/demo-horizontal-layout.htm @@ -56,9 +56,9 @@ <tr class="hljs-tag" ng-repeat="row in modernBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> @@ -85,9 +85,9 @@ <tr class="hljs-tag" ng-repeat="row in outputBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> diff --git a/views/demo-minimum.htm b/views/demo-minimum.htm index 752ae5b..8f0d75d 100644 --- a/views/demo-minimum.htm +++ b/views/demo-minimum.htm @@ -53,9 +53,9 @@ <tr class="hljs-tag" ng-repeat="row in modernBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> @@ -82,9 +82,9 @@ <tr class="hljs-tag" ng-repeat="row in outputBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> diff --git a/views/demo-single-selection-mode.htm b/views/demo-single-selection-mode.htm index e969c77..a9d3fa6 100644 --- a/views/demo-single-selection-mode.htm +++ b/views/demo-single-selection-mode.htm @@ -57,9 +57,9 @@ <tr class="hljs-tag" ng-repeat="row in modernBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> @@ -86,9 +86,9 @@ <tr class="hljs-tag" ng-repeat="row in outputBrowsers" > <td> </td> <td>{</td> - <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">{{removeHost(row.icon)}}</span>,</td> - <td><span class="hljs-attribute">name</span>: <span class="hljs-value">{{row.name}}</span>,</td> - <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">{{row.maker}}</span>,</td> + <td><span class="hljs-attribute">icon</span>: <span class="hljs-value">"{{removeHost(row.icon)}}"</span>,</td> + <td><span class="hljs-attribute">name</span>: <span class="hljs-value">"{{row.name}}"</span>,</td> + <td><span class="hljs-attribute">maker</span>: <span class="hljs-value">"{{row.maker}}"</span>,</td> <td><span class="hljs-attribute">ticked</span>: <span class="hljs-value">{{row.ticked}}</span></td> <td>}<span ng-if="$index < modernWebBrowsers.length - 1">,</span></td> </tr> |