mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-13 20:00:05 +01:00
39140
dist/image-sequencer.js
vendored
39140
dist/image-sequencer.js
vendored
File diff suppressed because one or more lines are too long
@@ -50,7 +50,7 @@ ImageSequencer = function ImageSequencer(options) {
|
|||||||
// else if (options.imageUrl) loadImage(imageUrl);
|
// else if (options.imageUrl) loadImage(imageUrl);
|
||||||
|
|
||||||
function addSteps(){
|
function addSteps(){
|
||||||
const this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
var this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
||||||
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
||||||
var json_q = {};
|
var json_q = {};
|
||||||
for(var arg in arguments){args.push(copy(arguments[arg]));}
|
for(var arg in arguments){args.push(copy(arguments[arg]));}
|
||||||
@@ -77,7 +77,7 @@ ImageSequencer = function ImageSequencer(options) {
|
|||||||
|
|
||||||
function removeSteps(image,index) {
|
function removeSteps(image,index) {
|
||||||
var run = {}, indices;
|
var run = {}, indices;
|
||||||
const this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
var this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
||||||
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
||||||
for(var arg in arguments) args.push(copy(arguments[arg]));
|
for(var arg in arguments) args.push(copy(arguments[arg]));
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@ ImageSequencer = function ImageSequencer(options) {
|
|||||||
|
|
||||||
function insertSteps(image, index, name, o) {
|
function insertSteps(image, index, name, o) {
|
||||||
var run = {};
|
var run = {};
|
||||||
const this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
var this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
||||||
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
||||||
for (var arg in arguments) args.push(arguments[arg]);
|
for (var arg in arguments) args.push(arguments[arg]);
|
||||||
|
|
||||||
@@ -115,7 +115,7 @@ ImageSequencer = function ImageSequencer(options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function run(t_image,t_from) {
|
function run(t_image,t_from) {
|
||||||
const this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
var this_ = (this.name == "ImageSequencer")?this:this.sequencer;
|
||||||
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
var args = (this.name == "ImageSequencer")?[]:[this.images];
|
||||||
for (var arg in arguments) args.push(copy(arguments[arg]));
|
for (var arg in arguments) args.push(copy(arguments[arg]));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user