-
-
Notifications
You must be signed in to change notification settings - Fork 993
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
2,567 additions
and
11,183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Archive | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
jobs: | ||
archive: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
repo-token: ${{ secrets.ACCESS_TOKEN }} | ||
days-before-stale: 60 | ||
days-before-close: 3 | ||
stale-issue-message: > | ||
This issue will be closed and archived in 3 days, as there has been no activity in the last 60 days. | ||
If this issue is still relevant or you would like to see it actioned, please respond and we will re-open this issue. | ||
If this issue is critical to your business, consider the [Dedicated Support Service](https://tastyigniter.com/premium-support) where a Service Level Agreement is offered. | ||
stale-pr-message: > | ||
This pull request will be closed and archived in 3 days, as there has been no activity in the last 60 days. | ||
If this is still being worked on, please respond and we will re-open this pull request. | ||
If this pull request is critical to your business, consider the [Dedicated Support Service](https://tastyigniter.com/premium-support) where a Service Level Agreement is offered. | ||
stale-issue-label: 'Status: Archived' | ||
stale-pr-label: 'Status: Archived' | ||
exempt-issue-label: 'Status: In Progress' | ||
exempt-pr-label: 'Status: In Progress' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
branches: | ||
- master | ||
- develop | ||
- tests | ||
- 3.x | ||
pull_request: | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...admin/formwidgets/colorpicker/assets/vendor/colorpicker/css/bootstrap-colorpicker.min.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
app/admin/formwidgets/colorpicker/assets/vendor/colorpicker/js/bootstrap-colorpicker.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
app/admin/formwidgets/repeater/assets/vendor/sortablejs/Sortable.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
152 changes: 76 additions & 76 deletions
152
app/admin/formwidgets/repeater/assets/vendor/sortablejs/jquery-sortable.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,76 @@ | ||
(function (factory) { | ||
"use strict"; | ||
var sortable, | ||
jq, | ||
_this = this | ||
; | ||
|
||
if (typeof define === "function" && define.amd) { | ||
try { | ||
define(["sortablejs", "jquery"], function(Sortable, $) { | ||
sortable = Sortable; | ||
jq = $; | ||
checkErrors(); | ||
factory(Sortable, $); | ||
}); | ||
} catch(err) { | ||
checkErrors(); | ||
} | ||
return; | ||
} else if (typeof exports === 'object') { | ||
try { | ||
sortable = require('sortablejs'); | ||
jq = require('jquery'); | ||
} catch(err) { } | ||
} | ||
|
||
if (typeof jQuery === 'function' || typeof $ === 'function') { | ||
jq = jQuery || $; | ||
} | ||
|
||
if (typeof Sortable !== 'undefined') { | ||
sortable = Sortable; | ||
} | ||
|
||
function checkErrors() { | ||
if (!jq) { | ||
throw new Error('jQuery is required for jquery-sortablejs'); | ||
} | ||
|
||
if (!sortable) { | ||
throw new Error('SortableJS is required for jquery-sortablejs (https://github.com/SortableJS/Sortable)'); | ||
} | ||
} | ||
checkErrors(); | ||
factory(sortable, jq); | ||
})(function (Sortable, $) { | ||
"use strict"; | ||
|
||
$.fn.sortable = function (options) { | ||
var retVal, | ||
args = arguments; | ||
|
||
this.each(function () { | ||
var $el = $(this), | ||
sortable = $el.data('sortable'); | ||
|
||
if (!sortable && (options instanceof Object || !options)) { | ||
sortable = new Sortable(this, options); | ||
$el.data('sortable', sortable); | ||
} else if (sortable) { | ||
if (options === 'destroy') { | ||
sortable.destroy(); | ||
$el.removeData('sortable'); | ||
} else if (options === 'widget') { | ||
retVal = sortable; | ||
} else if (typeof sortable[options] === 'function') { | ||
retVal = sortable[options].apply(sortable, [].slice.call(args, 1)); | ||
} else if (options in sortable.options) { | ||
retVal = sortable.option.apply(sortable, args); | ||
} | ||
} | ||
}); | ||
|
||
return (retVal === void 0) ? this : retVal; | ||
}; | ||
}); | ||
(function (factory) { | ||
"use strict"; | ||
var sortable, | ||
jq, | ||
_this = this | ||
; | ||
|
||
if (typeof define === "function" && define.amd) { | ||
try { | ||
define(["sortablejs", "jquery"], function(Sortable, $) { | ||
sortable = Sortable; | ||
jq = $; | ||
checkErrors(); | ||
factory(Sortable, $); | ||
}); | ||
} catch(err) { | ||
checkErrors(); | ||
} | ||
return; | ||
} else if (typeof exports === 'object') { | ||
try { | ||
sortable = require('sortablejs'); | ||
jq = require('jquery'); | ||
} catch(err) { } | ||
} | ||
|
||
if (typeof jQuery === 'function' || typeof $ === 'function') { | ||
jq = jQuery || $; | ||
} | ||
|
||
if (typeof Sortable !== 'undefined') { | ||
sortable = Sortable; | ||
} | ||
|
||
function checkErrors() { | ||
if (!jq) { | ||
throw new Error('jQuery is required for jquery-sortablejs'); | ||
} | ||
|
||
if (!sortable) { | ||
throw new Error('SortableJS is required for jquery-sortablejs (https://github.com/SortableJS/Sortable)'); | ||
} | ||
} | ||
checkErrors(); | ||
factory(sortable, jq); | ||
})(function (Sortable, $) { | ||
"use strict"; | ||
|
||
$.fn.sortable = function (options) { | ||
var retVal, | ||
args = arguments; | ||
|
||
this.each(function () { | ||
var $el = $(this), | ||
sortable = $el.data('sortable'); | ||
|
||
if (!sortable && (options instanceof Object || !options)) { | ||
sortable = new Sortable(this, options); | ||
$el.data('sortable', sortable); | ||
} else if (sortable) { | ||
if (options === 'destroy') { | ||
sortable.destroy(); | ||
$el.removeData('sortable'); | ||
} else if (options === 'widget') { | ||
retVal = sortable; | ||
} else if (typeof sortable[options] === 'function') { | ||
retVal = sortable[options].apply(sortable, [].slice.call(args, 1)); | ||
} else if (options in sortable.options) { | ||
retVal = sortable.option.apply(sortable, args); | ||
} | ||
} | ||
}); | ||
|
||
return (retVal === void 0) ? this : retVal; | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.