Add jQuery mobile loader widget

This commit is contained in:
Mike Bluestein 2014-03-12 15:25:31 -04:00
Родитель 7683398f3e
Коммит 09613f4e3e
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -34,7 +34,9 @@ namespace PortableCongress
}
public async void ShowRecentVotes(int id) {
//var votes = dataAccess.LoadRecentVotes (id);
webView.EvaluateJavascript ("$.mobile.loading( 'show', {\n text: 'Loading Recent Votes ...',\n " +
"textVisible: 'false',\n theme: 'b',\n textonly: 'false' });");
var votes = await WebAccess.GetRecentVotesAsync (id);
var template = new RecentVotesList () { Model = votes };