FPhoto.js 379 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 define(function () { 'use strict'; function FPhoto() { } FPhoto.prototype = { transferToVM: function (dm) { return { required: dm.required == 1, readonly: dm.readonly == 1, field: { label: dm.fieldlabel } }; } }; return FPhoto; });