Skip to content

Commit

Permalink
Merge pull request #96 from jf990/jf-updates
Browse files Browse the repository at this point in the history
Jf updates
  • Loading branch information
jgravois committed Apr 14, 2017
2 parents 1e9d097 + 22cf6cd commit 3f6dd28
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 3 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/js/github.js
Expand Up @@ -59,7 +59,7 @@ function redirectIfQuery() {
delimiterPosition = pageName.indexOf('#');

// if a hashed query is passed and cant be matched with our list of valid topics, redirect a canned github search
if (pageName.length - 1 > delimiterPosition) {
if (delimiterPosition >= 0 && pageName.length - 1 > delimiterPosition) {
for (i=1; i < topicList.length; i++) {
if (pageName.substr(delimiterPosition + 1) === topicList[i].innerHTML) {
return redirected;
Expand Down
39 changes: 39 additions & 0 deletions src/data/projects.yml
Expand Up @@ -156,3 +156,42 @@ categories:
displayLang: JavaScript
searchLang: javascript
stars: 11
- title: Native Development
url: https://github.com/Esri?q=topic%3Anative-development
anchor: native-development
color: yellow
projects:
- title: Indoor Routing Xamarin
description: Indoor routing for iOS devices built in Xamarin with the ArcGIS Runtime SDK for .NET. With some customization, you can change the app to use your indoor data and locators.
image: /assets/img/projects/indoor-routing-xamarin.png
url: //github.com/Esri/indoor-routing-xamarin
displayLang: C#
searchLang: c-sharp
- title: Ecological Marine Unit Explorer
description: The Ecological Marine Unit (EMU) example application uses the ArcGIS Runtime SDK for Android to showcase ocean ecosystems. Explore 50 years worth of NOAA data using Esri maps and services.
image: //developers.arcgis.com/assets/img/homepage/promo-python.png
url: //github.com/Esri/ecological-marine-unit-android
displayLang: Android
searchLang: java
stars: 2
- title: Geocoding with Suggestions
description: An online geocoding iOS sample app, modernized with suggestions and category support. The samples use ArcGIS Online basemaps and services.
image: //developers.arcgis.com/assets/img/homepage/promo-python.png
url: //github.com/Esri/geocoding-with-suggestions-and-categories
displayLang: Objective-C
searchLang: ios
stars: 2
- title: Vehicle Commander
description: The Vehicle Commander template demonstrates best practices for building in-vehicle military applications with ArcGIS and Java.
image: //developers.arcgis.com/assets/img/homepage/promo-python.png
url: //github.com/Esri/vehicle-commander-java
displayLang: Java
searchLang: java
stars: 10
- title: Nearby-Places Android
description: Locate nearby places with Android devices. Built with the ArcGIS Runtime SDK for Android. With some minor customization, you can change the types of places displayed.
image: //developers.arcgis.com/assets/img/homepage/promo-python.png
url: //github.com/Esri/nearby-android
displayLang: Android
searchLang: android
stars: 5
2 changes: 2 additions & 0 deletions src/data/search-topics.yml
Expand Up @@ -18,6 +18,7 @@
- tag: dataset
- tag: demographics
- tag: desktop
- tag: desktop-development
- tag: devsummit
- tag: directions
- tag: editing
Expand All @@ -40,6 +41,7 @@
- tag: maps
- tag: military
- tag: native
- tag: native-development
- tag: networking
- tag: objective-c
- tag: php
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/_macros.html
Expand Up @@ -12,10 +12,10 @@ <h1 class="subdued-links" id="{{ projectInfo.anchor }}">{{ projectInfo.title }}<
{% set project = projectInfo.projects[0] %}
<div class="panel panel-gray">
<div class="column-8 tablet-column-4 phone-column-5">
<img src="{{ project.image }}" />
<a href="{{ project.url }}" alt="{{ project.title }}"><img src="{{ project.image }}" /></a>
</div>
<div class="column-12 tablet-column-6 phone-column-5">
<h4>{{ project.title }}</h4>
<h4><a href="{{ project.url }}">{{ project.title }}</a></h4>
<p>{{ project.description }}</p>
</div>
</div>
Expand Down

0 comments on commit 3f6dd28

Please sign in to comment.