This repository has been archived on 2026-05-12. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
PaintPlay/JS/ViewCards.js
adrianvic 59426d62fb first
2023-12-21 14:33:34 -03:00

19 lines
No EOL
786 B
JavaScript

////////////////////////////////////////////////////////////
//// © Microsoft. All rights reserved. ////
////////////////////////////////////////////////////////////
(function (BaseNS) {
WinJS.Namespace.defineWithParent(BaseNS, "Paint", {
ViewNames: {
PaintView: "PaintView",
SnapView: "SnapView"
},
});
WinJS.Namespace.defineWithParent(BaseNS, "Paint", {
ViewCards: {
PaintView: { uri: "/HTML/PaintView.html", setupFunction: "Microsoft.Paint.PaintView.fragmentLoad", namespace: "Microsoft.Paint.PaintView" },
SnapView: { uri: "/HTML/SnapView.html", setupFunction: "Microsoft.Paint.SnapView.fragmentLoad", namespace: "Microsoft.Paint.PaintView" }
}
});
})(Microsoft);