diff options
Diffstat (limited to 'doc/views/demo-dynamic-update.htm')
-rw-r--r-- | doc/views/demo-dynamic-update.htm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/views/demo-dynamic-update.htm b/doc/views/demo-dynamic-update.htm index 4a33fdb..baf1713 100644 --- a/doc/views/demo-dynamic-update.htm +++ b/doc/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> |