Commit 8ab70a1e0f4573901b49345fa166863642329196
1 parent
27834bf6
Exists in
master
and in
2 other branches
Releasing new version
Showing
5 changed files
with
6 additions
and
6 deletions
Show diff stats
ConfJuvApp/builds/confjuv-dev.apk
No preview for this file type
ConfJuvApp/builds/confjuvapp-live.apk
No preview for this file type
ConfJuvApp/builds/confjuvapp-web.zip
No preview for this file type
ConfJuvApp/config.xml
1 | 1 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
2 | -<widget id="com.ionicframework.confjuvapp748431" version="0.0.20" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
2 | +<widget id="com.ionicframework.confjuvapp748431" version="0.0.21" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
3 | 3 | <name>#3ConfJuv</name> |
4 | 4 | <description>Aplicativo móvel para 3ª Conferência Nacional de Juventude</description> |
5 | 5 | <author email="confjuvapp@gmail.com" href="http://www.juventude.gov.br/"></author> | ... | ... |
ConfJuvApp/www/index.html
... | ... | @@ -24,23 +24,23 @@ |
24 | 24 | <script src="js/ionic.tdcards.js"></script> |
25 | 25 | <script src="js/collide.js"></script> |
26 | 26 | </head> |
27 | - <body ng-app="confjuvapp" ng-controller="ProposalCtrl" ng-init="openModal()" ng-class="{ logged-in: loggedIn, large: largeScreen }"> | |
27 | + <body ng-app="confjuvapp" ng-controller="ProposalCtrl" ng-init="openModal()" ng-class="{ 'logged-in': loggedIn, 'large': largeScreen }"> | |
28 | 28 | <ion-side-menus id="body"> |
29 | 29 | <ion-side-menu-content> |
30 | - <ng-include src="html/_header.html"></ng-include> | |
30 | + <ng-include src="'html/_header.html'"></ng-include> | |
31 | 31 | <ion-pane> |
32 | 32 | <ion-content id="proposals-container" no-scroll=""> |
33 | - <ng-include src="html/_proposal_list.html?1"></ng-include> | |
33 | + <ng-include src="'html/_proposal_list.html?1'"></ng-include> | |
34 | 34 | </ion-content> |
35 | 35 | </ion-pane> |
36 | 36 | </ion-side-menu-content> |
37 | 37 | |
38 | 38 | <ion-side-menu side="right" is-enabled="true" expose-aside-when="large" ng-show="proposalList.length > 0"> |
39 | - <ng-include src="html/_right_sidebar.html"></ng-include> | |
39 | + <ng-include src="'html/_right_sidebar.html'"></ng-include> | |
40 | 40 | </ion-side-menu> |
41 | 41 | </ion-side-menus> |
42 | 42 | |
43 | - <button ripple="" class="button button-float" ng-show="loggedIn" ng-click="openCreateProposalForm()"> | |
43 | + <button class="button button-float" ng-show="loggedIn" ng-click="openCreateProposalForm()"> | |
44 | 44 | <i class="icon ion-edit"></i> |
45 | 45 | </button> |
46 | 46 | </body> | ... | ... |