diff --git a/sections/pipe/markup.html b/sections/pipe/markup.html index c568746..482129a 100644 --- a/sections/pipe/markup.html +++ b/sections/pipe/markup.html @@ -12,7 +12,7 @@

pipe/ajax plugin


-<table class="table" st-pipe="mc.callServer" st-table="mc.displayed">
+<table class="table" st-pipe="callServer" st-table="displayed">
 	<thead>
 	<tr>
 		<th st-sort="id">id</th>
@@ -27,15 +27,15 @@ 

pipe/ajax plugin

<th><input st-search="saved"/></th> </tr> </thead> - <tbody ng-show="!mc.isLoading"> - <tr ng-repeat="row in mc.displayed"> + <tbody ng-show="!isLoading"> + <tr ng-repeat="row in displayed"> <td>{{row.id}}</td> <td>{{row.name}}</td> <td>{{row.age}}</td> <td>{{row.saved}}</td> </tr> </tbody> - <tbody ng-show="mc.isLoading"> + <tbody ng-show="isLoading"> <tr> <td colspan="4" class="text-center">Loading ... </td> </tr>