view backend/couchdb/CouchApp/feedworm/views/preference/map.js @ 227:6ce0e081094a

fix the column title display
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 May 2014 02:47:40 +0200
parents a5bda54309ba
children
line wrap: on
line source

function(doc)
{
    if (doc.doctype == "preferences")
    {
        emit(doc._id, doc)
    }
}