UrlList.js
488 Bytes
define(['mec/plugin/model/List'], function (List) {
    'use strict';
    
    var listPt = List.prototype;
    function UrlList() {
        this.store = {
    		normalSearch: {
        		hide: true,
        		tip: ""
        	},
            advancedSearch: {
            	enable: false
            },
            options: {
            	selectable: false
            }
        };
    }
    UrlList.prototype = {
        transferToVM: listPt.transferToVM
    };
    return UrlList;
});