@@ -55,6 +55,7 @@ <h3>Build your app on the QuickBooks platform!</h3>
55
55
< li class ="menu-navigation-list-item feature "> < a href ="#oauthtitle "> OAuth1.0a</ a > </ li >
56
56
< li class ="menu-navigation-list-item feature "> < a href ="#webhookstitle "> Webhooks</ a > </ li >
57
57
< li class ="menu-navigation-list-item feature "> < a href ="#crudtitle "> CRUD Samples</ a > </ li >
58
+ < li class ="menu-navigation-list-item feature "> < a href ="#paymentstitle "> Payments</ a > </ li >
58
59
< li class ="menu-navigation-list-item feature "> < a href ="#timetrackingtitle "> Time Tracking</ a > </ li >
59
60
< li class ="menu-navigation-list-item feature "> < a href ="#othertitle "> Other Samples</ a > </ li >
60
61
< li class ="menu-navigation-list-item language "> < a href ="#dotnettitle "> DotNet</ a > </ li >
@@ -120,24 +121,28 @@ <h3>Build your app on the QuickBooks platform!</h3>
120
121
< div id ="nodejstitle " class ="section-title language "> < span class ="title "> NODE.JS</ span > </ div >
121
122
< div id ="nodejs " class ="columns section in language " style ="height: auto; "> </ div >
122
123
< div class ="separator gap "> </ div >
123
-
124
- <!-- time tracking -->
125
- < div id ="timetrackingtitle " class ="section-title feature "> < span class ="title "> TIME TRACKING </ span > </ div >
126
- < div id ="timetracking " class ="columns section in feature " style ="height: auto; "> </ div >
124
+
125
+ <!-- payments -->
126
+ < div id ="paymentstitle " class ="section-title feature "> < span class ="title "> PAYMENTS </ span > </ div >
127
+ < div id ="payments " class ="columns section in feature " style ="height: auto; "> </ div >
127
128
128
129
<!-- PHP -->
129
130
< div id ="phptitle " class ="section-title language "> < span class ="title "> PHP</ span > </ div >
130
131
< div id ="php " class ="columns section in language " style ="height: auto; "> </ div >
131
132
< div class ="separator gap "> </ div >
132
133
134
+ <!-- time tracking -->
135
+ < div id ="timetrackingtitle " class ="section-title feature "> < span class ="title "> TIME TRACKING</ span > </ div >
136
+ < div id ="timetracking " class ="columns section in feature " style ="height: auto; "> </ div >
137
+ < div class ="separator gap "> </ div >
138
+
133
139
<!-- other -->
134
140
< div id ="othertitle " class ="section-title feature "> < span class ="title "> OTHER SAMPLES</ span > </ div >
135
141
< div id ="other " class ="columns section in feature " style ="height: auto; "> </ div >
136
142
137
143
<!-- Python -->
138
144
< div id ="pythontitle " class ="section-title language "> < span class ="title "> PYTHON</ span > </ div >
139
145
< div id ="python " class ="columns section in language " style ="height: auto; "> </ div >
140
-
141
146
< div class ="separator gap "> </ div >
142
147
143
148
<!-- Other -->
@@ -150,7 +155,7 @@ <h3>Build your app on the QuickBooks platform!</h3>
150
155
<!-- Site footer -->
151
156
< footer class ="footer ">
152
157
< nav class ="footer-navigation ">
153
- < p class ="copyright "> © 2017 Intuit, Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. </ p >
158
+ < p class ="copyright "> © 2018 Intuit, Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. </ p >
154
159
</ nav >
155
160
</ footer >
156
161
@@ -191,6 +196,8 @@ <h3>Build your app on the QuickBooks platform!</h3>
191
196
$item . appendTo ( "#crud" ) ;
192
197
} else if ( name . toUpperCase ( ) . indexOf ( "TIMETRACKING" ) >= 0 ) {
193
198
$item . appendTo ( "#timetracking" ) ;
199
+ } else if ( name . toUpperCase ( ) . indexOf ( "PAYMENT" ) >= 0 ) {
200
+ $item . appendTo ( "#payments" ) ;
194
201
} else {
195
202
$item . appendTo ( "#other" ) ;
196
203
}
0 commit comments