├── .github ├── ISSUE_TEMPLATE │ └── 1-cannot-save-fiddle.yml └── stale.yml ├── .gitignore └── README.md /.github/ISSUE_TEMPLATE/1-cannot-save-fiddle.yml: -------------------------------------------------------------------------------- 1 | name: 🤖 Cannot save fiddle 2 | description: Problems with saving a fiddle. Report with no code provided will be removed. 3 | title: "🤖 Cannot save fiddle" 4 | labels: ["task"] 5 | body: 6 | - type: input 7 | id: error-code 8 | attributes: 9 | label: Error code 10 | description: Error code 11 | placeholder: ERRW:0.6K0.3PU:1.0 12 | validations: 13 | required: true 14 | - type: dropdown 15 | id: logged-in 16 | attributes: 17 | label: Were you logged in? 18 | options: 19 | - "Yes" 20 | - "No" 21 | validations: 22 | required: true 23 | - type: input 24 | id: username 25 | attributes: 26 | label: Your username (if logged in) 27 | placeholder: j0hndoe 28 | validations: 29 | required: false 30 | - type: textarea 31 | id: html 32 | attributes: 33 | label: Your HTML 34 | description: You have to provide at least one of HTML, CSS or JavaScript 35 | placeholder: | 36 |

...

37 | render: html 38 | validations: 39 | required: false 40 | - type: textarea 41 | id: javascript 42 | attributes: 43 | label: Your JavaScript 44 | description: You have to provide at least one of HTML, CSS or JavaScript 45 | placeholder: | 46 | if (greet === "hello"){ 47 | ... 48 | } 49 | render: javascript 50 | validations: 51 | required: false 52 | - type: textarea 53 | id: css 54 | attributes: 55 | label: Your CSS 56 | description: You have to provide at least one of HTML, CSS or JavaScript 57 | placeholder: | 58 | p { 59 | color: rgba(0, 0, 0, 0.1); 60 | } 61 | render: css 62 | validations: 63 | required: false 64 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 30 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - security 9 | # Label to use when marking an issue as stale 10 | staleLabel: stale-archived 11 | # Comment to post when marking an issue as stale. Set to `false` to disable 12 | markComment: > 13 | This issue has been automatically marked as stale because it has not had 14 | recent activity. It will be closed if no further activity occurs. Thank you 15 | for your contributions. 16 | # Comment to post when closing a stale issue. Set to `false` to disable 17 | closeComment: false 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # git ls-files --others --exclude-from=.git/info/exclude 2 | # Lines that start with '#' are comments. 3 | # For a project mostly in C, the following would be a good set of 4 | # exclude patterns (uncomment them if you want to use them): 5 | # *.[oa] 6 | # *~ 7 | environment 8 | *swp 9 | _build 10 | pip-log.txt 11 | docs/Makefile 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Links 2 | 3 | - [Documentation](https://docs.jsfiddle.net) (Usage, API, etc) 4 | 5 | ## Common questions: 6 | 7 | **Question:** I have a rogue fiddle in my listing that crashes the browser when loading, how can I fix this? 8 | 9 | > **Answer:** It's possible to add `?disable_render=true` to the end of URL's where fiddles are listed - this will disable the results tab, allowing you to remove the rouge fiddle. 10 | --------------------------------------------------------------------------------