Skip to content

Commit ef98500

Browse files
committed
Add objc lib info
1 parent 3bec019 commit ef98500

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

pages/libraries.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,13 @@
253253
<th width="10%">For server/client</th>
254254
<th width="10%">Download from</th>
255255
</tr>
256+
<tr>
257+
<td>OData4ObjC</td>
258+
<td>This library makes it easy for iOS app developers to interact with data in any OData-compliant web service. It supports metadata-aware client-side code generation and full CRUD with query. If someone exposes a data model via OData, OData4ObjC makes it easy to get that model onto your iOS device.</td>
259+
<td>V1-3</td>
260+
<td>Client</td>
261+
<td><a href="http://odata.github.io/OData4ObjC/">GitHub</a></td>
262+
</tr>
256263
<tr>
257264
<td>ODataPy (Python)</td>
258265
<td>ODataPy is an open-source <b>Python</b> library that implements the Open Data Protocol (OData). It supports the OData protocol version 4.0. It is built on top of ODataCpp using language binding. It is under development and currently serves only parts of client and client side proxy generation (code gen) aspects of OData.</td>

public/site.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ $(function () {
1212

1313

1414
$(document).ready(function(){
15+
if ($(window).width() < 768) {
16+
$('#fork-me-on-github').hide();
17+
}
1518
// Window width change
1619
$( window ).resize(function() {
17-
if ($(window).width() < 768) {
18-
$('#fork-me-on-github').hide();
19-
}
20-
else{
21-
$('#fork-me-on-github').show();
22-
}
20+
if ($(window).width() < 768) {
21+
$('#fork-me-on-github').hide();
22+
}
23+
else{
24+
$('#fork-me-on-github').show();
25+
}
2326
});
2427
});
2528

0 commit comments

Comments
 (0)