API Docs for: 0.3.32
Show:

File: lib/docview.js

/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://yuilibrary.com/license/
*/
YUI.add('docview', function(Y) {


/*
Selleck
Copyright (c) 2011 Yahoo! Inc.
Licensed under the BSD License.
*/

    /**
    View class borrowed from [Selleck](https://github.com/rgrove/selleck)  
    The view class is a **`handlebars`** template helper.
    @class DocView
    @constructor
    @param {Object} data Meta data to use in this template
    @param {String} templateName The name of the template file to render.
    */
    function DocView(data, templateName) {
        this.templateName = templateName;
        Y.mix(this, data);
    }

    DocView.prototype = {
        /**
        * **Mustache** `lambda` method for setting the HTML title
        * @method htmlTitle
        */
        htmlTitle: function () {
            var name  = this.displayName || this.name,
                title = name;

            if (title) {
                if (this.projectName) {
                    title += ' - ' + this.projectName;
                }
            } else {
                title = this.projectName;
            }

            return title;
        },

        /**
        * **Mustache** `lambda` method for setting the title
        * @method title
        */
        title: function () {
            var name  = this.displayName || this.name,
                title = this.projectName;

            if (name) {
                title += ': ' + name;
            }

            return title;
        }
    };

    Y.DocView = DocView;
});