Nouvelle compilation du projet

This commit is contained in:
Fabrice PENHOËT 2022-12-28 10:45:32 +01:00
parent 25ef32940c
commit d4a892ac6f
2 changed files with 7 additions and 7 deletions

View File

@ -28,7 +28,7 @@ var vCarousel = (function () {
if (this.nbVContainers < 2) if (this.nbVContainers < 2)
throw new Error(errors.need2Videos); throw new Error(errors.need2Videos);
}, },
enumerable: true, enumerable: false,
configurable: true configurable: true
}); });
Object.defineProperty(vCarousel.prototype, "firstVideoId", { Object.defineProperty(vCarousel.prototype, "firstVideoId", {
@ -39,35 +39,35 @@ var vCarousel = (function () {
if ((firstVideo !== undefined && firstVideo !== "" && this._vContainers.findIndex(function (video) { return video.id === firstVideo; }) !== -1) || (firstVideo === "")) if ((firstVideo !== undefined && firstVideo !== "" && this._vContainers.findIndex(function (video) { return video.id === firstVideo; }) !== -1) || (firstVideo === ""))
this._firstVideoId = firstVideo; this._firstVideoId = firstVideo;
}, },
enumerable: true, enumerable: false,
configurable: true configurable: true
}); });
Object.defineProperty(vCarousel.prototype, "playFirstVideo", { Object.defineProperty(vCarousel.prototype, "playFirstVideo", {
set: function (playFirstVideo) { set: function (playFirstVideo) {
this._playFirstVideo = playFirstVideo; this._playFirstVideo = playFirstVideo;
}, },
enumerable: true, enumerable: false,
configurable: true configurable: true
}); });
Object.defineProperty(vCarousel.prototype, "playNextVideos", { Object.defineProperty(vCarousel.prototype, "playNextVideos", {
set: function (playNextVideos) { set: function (playNextVideos) {
this._playNextVideos = playNextVideos; this._playNextVideos = playNextVideos;
}, },
enumerable: true, enumerable: false,
configurable: true configurable: true
}); });
Object.defineProperty(vCarousel.prototype, "noStop", { Object.defineProperty(vCarousel.prototype, "noStop", {
set: function (noStop) { set: function (noStop) {
this._noStop = noStop; this._noStop = noStop;
}, },
enumerable: true, enumerable: false,
configurable: true configurable: true
}); });
Object.defineProperty(vCarousel.prototype, "currentVideo", { Object.defineProperty(vCarousel.prototype, "currentVideo", {
get: function () { get: function () {
return this._currentVideo; return this._currentVideo;
}, },
enumerable: true, enumerable: false,
configurable: true configurable: true
}); });
vCarousel.prototype.run = function () { vCarousel.prototype.run = function () {

View File

@ -12,5 +12,5 @@
"skipLibCheck": true, "skipLibCheck": true,
}, },
"include": ["src/*", "src/demo/*"], "include": ["src/*", "src/demo/*"],
"exclude": ["src/build", "node_modules"] "exclude": ["src/build"]
} }