diff --git a/doc/source/_static/docversions.js b/doc/source/_static/docversions.js
index 5570c4ef..a2c8cea6 100644
--- a/doc/source/_static/docversions.js
+++ b/doc/source/_static/docversions.js
@@ -4,7 +4,12 @@ function insert_version_links() {
document.write('
\n');
for (i = 0; i < labels.length; i++){
- document.write('- skimage VERSION
\n'
+ document.write('- ');
+ if ((DOCUMENTATION_OPTIONS['VERSION'] == labels[i]) ||
+ (DOCUMENTATION_OPTIONS['VERSION'].match(/dev$/) && (i == 0))) {
+ document.write('▸ ');
+ }
+ document.write('skimage VERSION
\n'
.replace('VERSION', labels[i])
.replace('URL', 'http://scikits-image.org/docs/' + labels[i]));
}