15 lines
192 B
JavaScript
15 lines
192 B
JavaScript
function PageHead(fields, actions,elementId) {
|
|
this.fields = fields
|
|
this.actions = actions
|
|
this.element = $(elementId)
|
|
}
|
|
|
|
|
|
PageHead.prototype.RenderPageHead = function () {
|
|
|
|
}
|
|
|
|
|
|
|
|
|