Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e2f5f6f

Browse files
committedJan 11, 2018
add section for payments
1 parent 7dca4dc commit e2f5f6f

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed
 

‎index.html

+13-6
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ <h3>Build your app on the QuickBooks platform!</h3>
5555
<li class="menu-navigation-list-item feature"><a href="#oauthtitle">OAuth1.0a</a></li>
5656
<li class="menu-navigation-list-item feature"><a href="#webhookstitle">Webhooks</a></li>
5757
<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>
5859
<li class="menu-navigation-list-item feature"><a href="#timetrackingtitle">Time Tracking</a></li>
5960
<li class="menu-navigation-list-item feature"><a href="#othertitle">Other Samples</a></li>
6061
<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>
120121
<div id="nodejstitle" class="section-title language"><span class="title">NODE.JS</span></div>
121122
<div id="nodejs" class="columns section in language" style="height: auto;"></div>
122123
<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>
127128

128129
<!-- PHP -->
129130
<div id="phptitle" class="section-title language"><span class="title">PHP</span></div>
130131
<div id="php" class="columns section in language" style="height: auto;"></div>
131132
<div class="separator gap"></div>
132133

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+
133139
<!-- other -->
134140
<div id="othertitle" class="section-title feature"><span class="title">OTHER SAMPLES</span></div>
135141
<div id="other" class="columns section in feature" style="height: auto;"></div>
136142

137143
<!-- Python -->
138144
<div id="pythontitle" class="section-title language"><span class="title">PYTHON</span></div>
139145
<div id="python" class="columns section in language" style="height: auto;"></div>
140-
141146
<div class="separator gap"></div>
142147

143148
<!-- Other -->
@@ -150,7 +155,7 @@ <h3>Build your app on the QuickBooks platform!</h3>
150155
<!-- Site footer -->
151156
<footer class="footer">
152157
<nav class="footer-navigation">
153-
<p class="copyright">&copy; 2017 Intuit, Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. </p>
158+
<p class="copyright">&copy; 2018 Intuit, Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. </p>
154159
</nav>
155160
</footer>
156161

@@ -191,6 +196,8 @@ <h3>Build your app on the QuickBooks platform!</h3>
191196
$item.appendTo( "#crud" );
192197
} else if (name.toUpperCase().indexOf("TIMETRACKING") >= 0) {
193198
$item.appendTo( "#timetracking" );
199+
} else if (name.toUpperCase().indexOf("PAYMENT") >= 0) {
200+
$item.appendTo( "#payments" );
194201
} else {
195202
$item.appendTo( "#other" );
196203
}

0 commit comments

Comments
 (0)
Please sign in to comment.