summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoristeven <ignatius.steven@gmail.com>2015-03-22 15:36:34 +0800
committeristeven <ignatius.steven@gmail.com>2015-03-22 15:36:34 +0800
commit75c2882005c055201b9d02c416ba42913071e192 (patch)
treeedd9600fd0cdc9e26c5cb4fde4853da4f76c4aba
parent8fc305e50194513f52c562f9c0a08abedf39b5c3 (diff)
downloadangular-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.htm12
-rw-r--r--views/demo-disabling-enabling.htm12
-rw-r--r--views/demo-dynamic-update.htm18
-rw-r--r--views/demo-grouping.htm6
-rw-r--r--views/demo-horizontal-layout.htm12
-rw-r--r--views/demo-minimum.htm12
-rw-r--r--views/demo-single-selection-mode.htm12
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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>&nbsp;</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>