├── PopcornEditor ├── css │ ├── targets.less │ ├── tutorial.less │ ├── common.less │ ├── utilities.less │ ├── colors.less │ └── error.less ├── static │ └── bower │ │ ├── jquery │ │ └── src │ │ │ ├── outro.js │ │ │ ├── selector.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── rnotwhite.js │ │ │ ├── strundefined.js │ │ │ ├── push.js │ │ │ ├── slice.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── hasOwn.js │ │ │ ├── toString.js │ │ │ └── support.js │ │ │ ├── ajax │ │ │ ├── var │ │ │ │ ├── rquery.js │ │ │ │ └── nonce.js │ │ │ └── parseJSON.js │ │ │ ├── css │ │ │ └── var │ │ │ │ ├── rmargin.js │ │ │ │ ├── cssExpand.js │ │ │ │ └── rnumnonpx.js │ │ │ ├── manipulation │ │ │ ├── var │ │ │ │ └── rcheckableType.js │ │ │ └── _evalUrl.js │ │ │ ├── data │ │ │ └── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ ├── core │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── traversing │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ │ ├── event │ │ │ ├── support.js │ │ │ └── ajax.js │ │ │ ├── attributes.js │ │ │ ├── deprecated.js │ │ │ ├── effects │ │ │ └── animatedSelector.js │ │ │ └── selector-sizzle.js │ │ ├── list.fuzzysearch.js │ │ └── History.md │ │ ├── font-awesome │ │ ├── src │ │ │ ├── CNAME │ │ │ ├── design.html │ │ │ ├── assets │ │ │ │ ├── ico │ │ │ │ │ └── favicon.ico │ │ │ │ ├── img │ │ │ │ │ ├── icon-flag.pdf │ │ │ │ │ ├── fort_awesome.jpg │ │ │ │ │ ├── contribution-sample.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── glyphicons-halflings-white.png │ │ │ │ ├── js │ │ │ │ │ └── ZeroClipboard-1.1.7.swf │ │ │ │ ├── font-awesome │ │ │ │ │ ├── font │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── scss │ │ │ │ │ │ ├── font-awesome.scss │ │ │ │ │ │ └── _icons.scss │ │ │ │ │ └── less │ │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ │ └── icons.less │ │ │ │ └── less │ │ │ │ │ └── responsive-navbar.less │ │ │ └── _includes │ │ │ │ ├── jumbotron.html │ │ │ │ ├── brand-license.html │ │ │ │ ├── stripe-ad.html │ │ │ │ ├── community │ │ │ │ └── project-milestones.html │ │ │ │ └── ads │ │ │ │ ├── carbon-dark-vertical.html │ │ │ │ ├── carbon-light-horizontal.html │ │ │ │ └── carbon-light-vertical.html │ │ ├── .ruby-version │ │ ├── Gemfile │ │ └── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── microplugin │ │ ├── .npmignore │ │ └── .gitignore │ │ ├── bootstrap │ │ ├── test-infra │ │ │ ├── requirements.txt │ │ │ └── uncached-npm-install.sh │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── dist │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── sifter │ │ ├── .npmignore │ │ └── .gitignore │ │ ├── ua-parser-js │ │ ├── .gitignore │ │ └── .travis.yml │ │ ├── popcorn-js │ │ ├── .gitignore │ │ ├── parsers │ │ │ ├── parserVTT │ │ │ │ ├── data │ │ │ │ │ └── data.vtt │ │ │ │ └── popcorn.parserVTT.html │ │ │ ├── parserSBV │ │ │ │ └── data │ │ │ │ │ └── data.sbv │ │ │ └── parserXML │ │ │ │ └── data │ │ │ │ └── data.XML │ │ ├── modules │ │ │ └── parser │ │ │ │ └── data │ │ │ │ ├── parserData.json │ │ │ │ ├── parseMissing.json │ │ │ │ └── parserAudio.json │ │ └── wrappers │ │ │ └── jwplayer │ │ │ └── popcorn.HTMLJWPlayerVideoElement.unit.js │ │ ├── selectize │ │ └── .gitignore │ │ ├── hint.css │ │ ├── .gitignore │ │ ├── bower.json │ │ ├── src │ │ │ ├── hint-rounded.scss │ │ │ └── hint-theme.scss │ │ └── component.json │ │ ├── requirejs │ │ ├── README.md │ │ └── bower.json │ │ ├── farbtastic │ │ ├── mask.png │ │ ├── wheel.png │ │ ├── marker.png │ │ └── .bower.json │ │ ├── jsjpegmeta │ │ ├── README.md │ │ └── bower.json │ │ ├── makerstrap │ │ ├── images │ │ │ └── logo.png │ │ ├── less │ │ │ ├── build │ │ │ │ ├── makerstrap.less │ │ │ │ └── makerstrap.complete.less │ │ │ ├── alert.less │ │ │ ├── typography.less │ │ │ ├── custom-components │ │ │ │ ├── webmaker-footer.less │ │ │ │ ├── selectize.less │ │ │ │ ├── videos-fluid.less │ │ │ │ └── logo.less │ │ │ └── forms.less │ │ ├── .gitignore │ │ └── bower.json │ │ ├── jquery-ui │ │ ├── component.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── minified │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ └── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ └── jquery.ui.selectable.css │ │ │ ├── flick │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ ├── start │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ │ │ ├── ui-icons_fcd113_256x240.png │ │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── sunny │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_3d3d3d_256x240.png │ │ │ │ │ ├── ui-icons_bd7b00_256x240.png │ │ │ │ │ ├── ui-icons_d19405_256x240.png │ │ │ │ │ ├── ui-icons_eb990f_256x240.png │ │ │ │ │ ├── ui-icons_ed9f26_256x240.png │ │ │ │ │ ├── ui-icons_fadc7a_256x240.png │ │ │ │ │ ├── ui-icons_ffe180_256x240.png │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ │ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ │ │ │ └── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ │ ├── vader │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ │ ├── ui-icons_aaaaaa_256x240.png │ │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ │ ├── ui-icons_c98000_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_f29a00_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_16_121212_500x100.png │ │ │ │ │ ├── ui-bg_inset-soft_15_121212_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_15_888888_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_55_555555_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_60_dddddd_1x100.png │ │ │ ├── blitzer │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ ├── dot-luv │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_00498f_256x240.png │ │ │ │ │ ├── ui-icons_98d2fb_256x240.png │ │ │ │ │ ├── ui-icons_9ccdfc_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_40_292929_40x100.png │ │ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png │ │ │ │ │ └── ui-bg_diagonals-thick_15_0b3e6f_40x40.png │ │ │ ├── eggplant │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_734d99_256x240.png │ │ │ │ │ ├── ui-icons_8d78a5_256x240.png │ │ │ │ │ ├── ui-icons_a8a3ae_256x240.png │ │ │ │ │ ├── ui-icons_ebccce_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_994d53_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fafafa_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_45_5f5964_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_100_eae6ea_1x100.png │ │ │ ├── humanity │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_c47a23_256x240.png │ │ │ │ │ ├── ui-icons_cb672b_256x240.png │ │ │ │ │ ├── ui-icons_f08000_256x240.png │ │ │ │ │ ├── ui-icons_f35f07_256x240.png │ │ │ │ │ ├── ui-icons_ff7519_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png │ │ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png │ │ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png │ │ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png │ │ │ │ │ └── ui-bg_highlight-hard_100_f4f0ec_1x100.png │ │ │ ├── le-frog │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_4eb305_256x240.png │ │ │ │ │ ├── ui-icons_72b42d_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png │ │ │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png │ │ │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png │ │ │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_60_4ca20b_1x100.png │ │ │ ├── overcast │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ │ │ ├── ui-icons_999999_256x240.png │ │ │ │ │ ├── ui-icons_fbc856_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ │ │ └── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ │ ├── redmond │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ ├── ui-icons_f9bd01_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── black-tie │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ ├── cupertino │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ ├── dark-hive │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── excite-bike │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_0a82eb_256x240.png │ │ │ │ │ ├── ui-icons_0b54d5_256x240.png │ │ │ │ │ ├── ui-icons_5fa5e3_256x240.png │ │ │ │ │ ├── ui-icons_fcdd4a_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_e69700_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_e6b900_40x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png │ │ │ │ │ └── ui-bg_highlight-soft_100_f9f9f9_1x100.png │ │ │ ├── hot-sneaks │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_88a206_256x240.png │ │ │ │ │ ├── ui-icons_c02669_256x240.png │ │ │ │ │ ├── ui-icons_e1e463_256x240.png │ │ │ │ │ ├── ui-icons_ffeb33_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_75_ba9217_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png │ │ │ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png │ │ │ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png │ │ │ │ │ └── ui-bg_diagonals-small_75_ccd232_40x40.png │ │ │ ├── mint-choc │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_9bcc60_256x240.png │ │ │ │ │ ├── ui-icons_add978_256x240.png │ │ │ │ │ ├── ui-icons_e3ddc9_256x240.png │ │ │ │ │ ├── ui-icons_f1fd86_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_15_5f391b_1x400.png │ │ │ │ │ ├── ui-bg_inset-soft_10_201913_1x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_1c160d_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_453326_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_44372c_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_201913_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_20_619226_1x100.png │ │ │ ├── smoothness │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── trontastic │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_000000_256x240.png │ │ │ │ │ ├── ui-icons_1f1f1f_256x240.png │ │ │ │ │ ├── ui-icons_9fda58_256x240.png │ │ │ │ │ ├── ui-icons_b8ec79_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_303030_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_4c4c4c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_000000_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png │ │ │ │ │ └── ui-bg_diagonals-small_50_262626_40x40.png │ │ │ ├── ui-darkness │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ │ └── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ ├── south-street │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_808080_256x240.png │ │ │ │ │ ├── ui-icons_847e71_256x240.png │ │ │ │ │ ├── ui-icons_8DC262_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_eeeeee_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png │ │ │ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_95_ffedad_1x100.png │ │ │ ├── swanky-purse │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_070603_256x240.png │ │ │ │ │ ├── ui-icons_e8e2b5_256x240.png │ │ │ │ │ ├── ui-icons_e9cd86_256x240.png │ │ │ │ │ ├── ui-icons_efec9f_256x240.png │ │ │ │ │ ├── ui-icons_f2ec64_256x240.png │ │ │ │ │ ├── ui-icons_f9f2bd_256x240.png │ │ │ │ │ ├── ui-icons_ff7519_256x240.png │ │ │ │ │ ├── ui-bg_diamond_8_261803_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_443113_10x8.png │ │ │ │ │ ├── ui-bg_flat_75_ddd4b0_40x100.png │ │ │ │ │ ├── ui-bg_diamond_10_4f4221_10x8.png │ │ │ │ │ ├── ui-bg_diamond_20_372806_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_675423_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_d5ac5d_10x8.png │ │ │ │ │ └── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ ├── ui-lightness │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ └── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ └── pepper-grinder │ │ │ │ └── images │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png │ │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png │ │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png │ │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png │ │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png │ │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png │ │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png │ │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png │ │ │ │ └── ui-bg_diagonal-maze_40_000000_10x10.png │ │ └── ui │ │ │ └── minified │ │ │ └── jquery.ui.effect-fade.min.js │ │ ├── webmaker-language-picker │ │ ├── .gitignore │ │ └── template │ │ │ ├── alllanguages.html │ │ │ ├── supportedLanguages.html │ │ │ └── supportedLanguages.ejs │ │ ├── webmaker-i18n │ │ └── bower.json │ │ └── webmaker-analytics │ │ └── bower.json ├── src │ ├── layouts │ │ ├── timeline-area.html │ │ ├── logo-spinner.html │ │ ├── warn.html │ │ ├── tutorial-editor.html │ │ ├── trackevent.html │ │ └── track-handle.html │ ├── editor │ │ └── disableWebRTC.js │ └── plugins │ │ ├── popup │ │ ├── images │ │ │ ├── tv.png │ │ │ ├── cone.png │ │ │ ├── eye.png │ │ │ ├── info.png │ │ │ ├── man.png │ │ │ ├── net.png │ │ │ ├── star.png │ │ │ ├── time.png │ │ │ ├── user.png │ │ │ ├── audio.png │ │ │ ├── earth.png │ │ │ ├── error.png │ │ │ ├── heart.png │ │ │ ├── money.png │ │ │ ├── music.png │ │ │ ├── skull.png │ │ │ ├── trophy.png │ │ │ ├── virus.png │ │ │ ├── women.png │ │ │ ├── thumbsup.png │ │ │ ├── brokenheart.png │ │ │ ├── thumbsdown.png │ │ │ └── license.txt │ │ ├── thumbsup.png │ │ ├── popup-icon.png │ │ ├── thumbsdown.png │ │ └── sounds │ │ │ ├── mouthpop.ogg │ │ │ └── mouthpop.wav │ │ ├── skip │ │ └── skip-icon.png │ │ ├── text │ │ └── text-icon.png │ │ ├── image │ │ └── image-icon.png │ │ ├── loopPlugin │ │ └── loop-icon.png │ │ ├── wikipedia │ │ ├── wikipedia.png │ │ ├── wikipedia-arrow.png │ │ ├── wikipedia-icon.png │ │ └── wikipedia-logo.png │ │ ├── pausePlugin │ │ └── pause-icon.png │ │ ├── sketchfab │ │ ├── sketchfab-icon.png │ │ ├── popcorn.sketchfab.less │ │ └── popcorn.sketchfab.css │ │ └── twitter │ │ └── popcorn.twitter.css ├── resources │ ├── logo.png │ ├── img │ │ └── cat.gif │ ├── icons │ │ ├── map.png │ │ ├── clyp.png │ │ ├── giphy.png │ │ ├── link.png │ │ ├── media.png │ │ ├── spinny.gif │ │ ├── ticket.png │ │ ├── fb-logo.png │ │ ├── big-loader.gif │ │ ├── bkg-stripe.png │ │ ├── media-icons.png │ │ ├── media-white.png │ │ ├── default-icon.png │ │ ├── feedback-icon.png │ │ ├── flickr-black.png │ │ ├── persona-logo.png │ │ ├── spinny-error.gif │ │ └── soundcloud-small.png │ ├── watermark.png │ ├── controls │ │ ├── icon_play.png │ │ ├── postroll_logo.png │ │ ├── controls_icons.png │ │ ├── embed_size_sprite.png │ │ ├── controls_time_arrowL.gif │ │ ├── controls_time_arrowR.gif │ │ └── controls_icon_playPause.png │ ├── fonts │ │ ├── opensans-bold-webfont.ttf │ │ ├── opensans-bold-webfont.woff │ │ ├── opensans-italic-webfont.ttf │ │ ├── opensans-italic-webfont.woff │ │ ├── opensans-regular-webfont.ttf │ │ ├── opensans-regular-webfont.woff │ │ ├── opensans-bolditalic-webfont.ttf │ │ └── opensans-bolditalic-webfont.woff │ └── webmaker │ │ ├── webmaker-main_01.png │ │ ├── webmaker-main_02.png │ │ ├── webmaker-main_03.png │ │ └── webmaker-main_04.png ├── test │ ├── core │ │ ├── test-simple-config.json │ │ ├── test-script.js │ │ ├── test-css.css │ │ ├── core-track │ │ │ └── core-track-tests.conf │ │ ├── test-after.js │ │ ├── test-before.js │ │ ├── test-init.js │ │ ├── core-player │ │ │ └── core-player-tests.conf │ │ ├── core-target │ │ │ └── core-target-tests.conf │ │ ├── core-scripts │ │ │ └── core-scripts-tests.conf │ │ └── core-import_export │ │ │ └── core-import_export-tests.conf │ ├── plugins │ │ └── plugins-tests.conf │ ├── editor │ │ └── editor-tests.conf │ ├── butter.testrunner.css │ ├── manual-tests │ │ └── default-config.json │ ├── trackevent │ │ └── trackevent-tests.conf │ └── track │ │ └── track-tests.conf ├── templates │ ├── assets │ │ └── images │ │ │ ├── arrest.gif │ │ │ ├── graffiti.jpg │ │ │ ├── stopsmap.gif │ │ │ ├── stopandfrisk.gif │ │ │ └── stoppercent.gif │ └── basic │ │ └── config.json ├── api │ └── butterconfig ├── external │ └── require │ │ └── json.js └── en-US │ └── layouts │ └── media-instance.html └── .gitignore /PopcornEditor/css/targets.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PopcornEditor/css/tutorial.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/list.fuzzysearch.js/History.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/CNAME: -------------------------------------------------------------------------------- 1 | fontawesome.io -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/.ruby-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p392 2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/microplugin/.npmignore: -------------------------------------------------------------------------------- 1 | *.md 2 | .git* 3 | test/ -------------------------------------------------------------------------------- /PopcornEditor/static/bower/microplugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | node_modules -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/test-infra/requirements.txt: -------------------------------------------------------------------------------- 1 | boto==2.20.0 2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/sifter/.npmignore: -------------------------------------------------------------------------------- 1 | *.md 2 | .git* 3 | benchmark/ 4 | test/ -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/ua-parser-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist 3 | *~ 4 | \.\#* 5 | \#*\# -------------------------------------------------------------------------------- /PopcornEditor/src/layouts/timeline-area.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/sifter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | node_modules 3 | benchmark/report.json -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/selectize/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DAV 3 | node_modules 4 | bower_components 5 | *.log -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/design.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PopcornEditor/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/logo.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/resources/img/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/img/cat.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/map.png -------------------------------------------------------------------------------- /PopcornEditor/resources/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/watermark.png -------------------------------------------------------------------------------- /PopcornEditor/src/editor/disableWebRTC.js: -------------------------------------------------------------------------------- 1 | /*jshint unused: false*/ 2 | var TogetherJSConfig = { 3 | disableWebRTC: true 4 | }; 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll', '~> 1.0' 4 | gem 'debugger' 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/hint.css/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | node_modules/ 3 | hint.sublime-project 4 | hint.sublime-workspace 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/clyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/clyp.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/giphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/giphy.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/link.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/media.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/spinny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/spinny.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/ticket.png -------------------------------------------------------------------------------- /PopcornEditor/src/layouts/logo-spinner.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/requirejs/README.md: -------------------------------------------------------------------------------- 1 | # requirejs-bower 2 | 3 | Bower packaging for [RequireJS](http://requirejs.org). 4 | 5 | -------------------------------------------------------------------------------- /PopcornEditor/test/core/test-simple-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseDir": "../../../", 3 | "ui": { 4 | "enabled": false 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/fb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/fb-logo.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/big-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/big-loader.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/bkg-stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/bkg-stripe.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/media-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/media-icons.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/media-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/media-white.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/tv.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/thumbsup.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/skip/skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/skip/skip-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/text/text-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/text/text-icon.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/ua-parser-js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.6 5 | notifications: 6 | email: false 7 | -------------------------------------------------------------------------------- /PopcornEditor/test/core/test-script.js: -------------------------------------------------------------------------------- 1 | if( !window.__testScript ){ 2 | window.__testScript = []; 3 | } 4 | window.__testScript.push( true ); 5 | -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/icon_play.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/default-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/default-icon.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/feedback-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/feedback-icon.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/flickr-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/flickr-black.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/persona-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/persona-logo.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/spinny-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/spinny-error.gif -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/image/image-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/image/image-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/cone.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/eye.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/info.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/man.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/net.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/star.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/time.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/user.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/popup-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/popup-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/thumbsdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/thumbsdown.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/farbtastic/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/farbtastic/mask.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/farbtastic/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/farbtastic/wheel.png -------------------------------------------------------------------------------- /PopcornEditor/test/core/test-css.css: -------------------------------------------------------------------------------- 1 | #css-test { 2 | position: absolute; 3 | width: 100px; 4 | height: 100px; 5 | right: 0; 6 | top: 0; 7 | } -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/postroll_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/postroll_logo.png -------------------------------------------------------------------------------- /PopcornEditor/resources/icons/soundcloud-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/icons/soundcloud-small.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/loopPlugin/loop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/loopPlugin/loop-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/audio.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/earth.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/error.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/heart.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/money.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/music.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/skull.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/trophy.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/virus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/virus.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/women.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/women.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/wikipedia/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/wikipedia/wikipedia.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/farbtastic/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/farbtastic/marker.png -------------------------------------------------------------------------------- /PopcornEditor/templates/assets/images/arrest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/templates/assets/images/arrest.gif -------------------------------------------------------------------------------- /PopcornEditor/templates/assets/images/graffiti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/templates/assets/images/graffiti.jpg -------------------------------------------------------------------------------- /PopcornEditor/templates/assets/images/stopsmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/templates/assets/images/stopsmap.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/controls_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/controls_icons.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/pausePlugin/pause-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/pausePlugin/pause-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/thumbsup.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/sounds/mouthpop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/sounds/mouthpop.ogg -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/sounds/mouthpop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/sounds/mouthpop.wav -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jsjpegmeta/README.md: -------------------------------------------------------------------------------- 1 | = JPEG Meta Data in JavaScript = 2 | 3 | To try it out run `python demo.py` and go to http://localhost:8000 4 | -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/embed_size_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/embed_size_sprite.png -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-bold-webfont.ttf -------------------------------------------------------------------------------- /PopcornEditor/resources/webmaker/webmaker-main_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/webmaker/webmaker-main_01.png -------------------------------------------------------------------------------- /PopcornEditor/resources/webmaker/webmaker-main_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/webmaker/webmaker-main_02.png -------------------------------------------------------------------------------- /PopcornEditor/resources/webmaker/webmaker-main_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/webmaker/webmaker-main_03.png -------------------------------------------------------------------------------- /PopcornEditor/resources/webmaker/webmaker-main_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/webmaker/webmaker-main_04.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/brokenheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/brokenheart.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/thumbsdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/popup/images/thumbsdown.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/sketchfab/sketchfab-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/sketchfab/sketchfab-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/wikipedia/wikipedia-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/wikipedia/wikipedia-arrow.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/wikipedia/wikipedia-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/wikipedia/wikipedia-icon.png -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/wikipedia/wikipedia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/src/plugins/wikipedia/wikipedia-logo.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/makerstrap/images/logo.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/build/makerstrap.less: -------------------------------------------------------------------------------- 1 | // Makerstrap 2 | @import '../makerstrap'; 3 | @makerstrap-bower-path: '../../bower_components'; 4 | -------------------------------------------------------------------------------- /PopcornEditor/templates/assets/images/stopandfrisk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/templates/assets/images/stopandfrisk.gif -------------------------------------------------------------------------------- /PopcornEditor/templates/assets/images/stoppercent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/templates/assets/images/stoppercent.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/controls_time_arrowL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/controls_time_arrowL.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/controls_time_arrowR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/controls_time_arrowR.gif -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-bold-webfont.woff -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-italic-webfont.ttf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ 3 | demo/compiled/demo.dev.css 4 | deploy/ 5 | tmp 6 | .DS_Store 7 | .idea 8 | .env 9 | -------------------------------------------------------------------------------- /PopcornEditor/resources/controls/controls_icon_playPause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/controls/controls_icon_playPause.png -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-italic-webfont.woff -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-regular-webfont.ttf -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-regular-webfont.woff -------------------------------------------------------------------------------- /PopcornEditor/src/layouts/warn.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /PopcornEditor/resources/fonts/opensans-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/resources/fonts/opensans-bolditalic-webfont.woff -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/alert.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Alert 3 | */ 4 | 5 | .alert { 6 | border: none; 7 | } 8 | -------------------------------------------------------------------------------- /PopcornEditor/css/common.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Base Styles 3 | */ 4 | 5 | body { 6 | background: @baseStage; 7 | overflow: hidden; 8 | } 9 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/ico/favicon.ico -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/test-infra/uncached-npm-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cp test-infra/npm-shrinkwrap.canonical.json npm-shrinkwrap.json 3 | npm install 4 | rm npm-shrinkwrap.json 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/img/icon-flag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/img/icon-flag.pdf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/parsers/parserVTT/data/data.vtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/popcorn-js/parsers/parserVTT/data/data.vtt -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/img/fort_awesome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/img/fort_awesome.jpg -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/js/ZeroClipboard-1.1.7.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/js/ZeroClipboard-1.1.7.swf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-ui", 3 | "version": "1.9.0", 4 | "main": "./ui/jquery-ui.js", 5 | "dependencies": { 6 | "jquery": "~1.8.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/img/contribution-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/img/contribution-sample.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/parsers/parserVTT/popcorn.parserVTT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/popcorn-js/parsers/parserVTT/popcorn.parserVTT.html -------------------------------------------------------------------------------- /PopcornEditor/static/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/modules/parser/data/parserData.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "parserTest": { 5 | "start": 5, 6 | "end": 6 7 | } 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_bbbbbb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_bbbbbb_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/modules/parser/data/parseMissing.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "parserMissing": { 5 | "start": 5, 6 | "end": 6 7 | } 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /PopcornEditor/test/core/core-track/core-track-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "core-track": { 3 | "creation": "test/core/core-track/track-creation.html", 4 | "management": "test/core/core-track/track-management.html" 5 | } 6 | } -------------------------------------------------------------------------------- /PopcornEditor/test/core/test-after.js: -------------------------------------------------------------------------------- 1 | /* Note: This code is just for testing script functionality on Butter init. 2 | * Disregard unless you want advanced functionality. */ 3 | (function(){ 4 | "inline test after"; 5 | }()); -------------------------------------------------------------------------------- /PopcornEditor/test/core/test-before.js: -------------------------------------------------------------------------------- 1 | /* Note: This code is just for testing script functionality on Butter init. 2 | * Disregard unless you want advanced functionality. */ 3 | (function(){ 4 | "inline test before"; 5 | }()); -------------------------------------------------------------------------------- /PopcornEditor/test/core/test-init.js: -------------------------------------------------------------------------------- 1 | /* Note: This code is just for testing script functionality on Butter init. 2 | * Disregard unless you want advanced functionality. */ 3 | (function(){ 4 | "inline test init"; 5 | }()); -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/modules/parser/data/parserAudio.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "testAudioParser": { 5 | "start": 5, 6 | "end": 6 7 | } 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /PopcornEditor/api/butterconfig: -------------------------------------------------------------------------------- 1 | { 2 | "audience": "http://localhost:7777", 3 | "node_hubble_endpoint": "http://node-hubble.mofostaging.net/", 4 | "clyp_endpoint": "https://apistaging.clyp.it", 5 | "sync_limit": 20 6 | } 7 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_flat_40_292929_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_flat_40_292929_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_flat_55_999999_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_flat_55_999999_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/test/core/core-player/core-player-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "core-player": { 3 | "basic": "test/core/core-player/player-basic.html", 4 | "strange-element": "test/core/core-player/player-strange-element.html" 5 | } 6 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_55_994d53_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_55_994d53_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_55_fafafa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_flat_55_fafafa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_flat_0_303030_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_flat_0_303030_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_flat_0_4c4c4c_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/jumbotron.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{ jumbotron_h1 }}

4 |

{{ jumbotron_p }}

5 |
6 |
7 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e69700_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e69700_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_flat_0_e6b900_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ba9217_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_flat_75_ddd4b0_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/test/core/core-target/core-target-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "target": { 3 | "creation-removal": "test/core/core-target/target-creation-removal.html", 4 | "serialization": "test/core/core-target/target-serialization.html" 5 | } 6 | } -------------------------------------------------------------------------------- /PopcornEditor/test/plugins/plugins-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "add": "test/plugins/plugins-add.html", 4 | "remove": "test/plugins/plugins-remove.html", 5 | "createElement": "test/plugins/plugins-createElement.html" 6 | } 7 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/hint.css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hint.css", 3 | "version": "1.3.3", 4 | "main": "hint.min.css", 5 | "author": "Kushagra Gour", 6 | "ignore": [ 7 | "CONTRIBUTING.md", 8 | "Gruntfile.js" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.avi 3 | *.bak 4 | *.mov 5 | *.mp3 6 | *.mp4 7 | *.oga 8 | *.ogv 9 | *.sqlite 10 | *.swp 11 | *.webm 12 | *~ 13 | /local.json 14 | /node_modules/ 15 | /user_published/ 16 | !locale/en_US/* 17 | !locale/localeinfo.json 18 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/typography.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Typography 3 | */ 4 | 5 | .text-light { 6 | font-weight: 300; 7 | } 8 | 9 | .ellipses { 10 | .ellipses(); 11 | } 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/webmaker-language-picker/.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | npm-debug.log 15 | node_modules 16 | bower_components 17 | -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/twitter/popcorn.twitter.css: -------------------------------------------------------------------------------- 1 | .jons-beard { 2 | border-bottom-right-radius: 3em; 3 | border-bottom-left-radius: 3em; 4 | border: 5px solid rgb( 76, 38, 30 ); 5 | border-top-right-radius: 1em; 6 | border-top-left-radius: 1em; 7 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/test/core/core-scripts/core-scripts-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "existence-execution": "test/core/core-scripts/scripts-existence-execution.html", 4 | "none-callbacks": "test/core/core-scripts/scripts-none-callbacks.html" 5 | } 6 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/popcorn-editor/HEAD/PopcornEditor/static/bower/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/parsers/parserSBV/data/data.sbv: -------------------------------------------------------------------------------- 1 | 0:00:02.400,0:00:07.200 2 | Senator, we're making our final approach into Coruscant. 3 | 4 | 0:00:09.712,0:00:13.399 5 | Very good, Lieutenant. 6 | 7 | 0:00:15.042,0:00:18.042 8 | It's a trap! 9 | -------------------------------------------------------------------------------- /PopcornEditor/test/core/core-import_export/core-import_export-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "import-export": { 3 | "html-escape": "test/core/core-import_export/import-export-html-escape.html", 4 | "import-export": "test/core/core-import_export/import-export.html" 5 | } 6 | } -------------------------------------------------------------------------------- /PopcornEditor/test/editor/editor-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "editor": { 3 | "basic-usage": "test/editor/editor-basic-usage.html", 4 | "custom": "test/editor/editor-custom.html", 5 | "createStartEndInputs": "test/editor/editor-createStartEndInputs.html" 6 | } 7 | } -------------------------------------------------------------------------------- /PopcornEditor/css/utilities.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * UTILITIES 3 | */ 4 | 5 | .butter-image-preload { 6 | visibility: hidden; 7 | position: absolute; 8 | width: 1px; 9 | height: 1px; 10 | opacity: 0; 11 | } 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/webmaker-i18n/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webmaker-i18n", 3 | "version": "0.0.2", 4 | "main": "localized.js", 5 | "ignore": [ 6 | "**/.*", 7 | "node_modules", 8 | "bower_components", 9 | "example" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/less/responsive-navbar.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Navbar 3 | // -------------------------------------------------- 4 | 5 | 6 | // TABLETS AND BELOW 7 | // ----------------- 8 | @media (max-width: @navbarCollapseWidth) { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | }); 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {% include license-code.less %} 4 | 5 | @import "variables"; 6 | @import "mixins"; 7 | @import "path"; 8 | @import "core"; 9 | @import "bootstrap"; 10 | @import "extras"; 11 | @import "icons"; 12 | -------------------------------------------------------------------------------- /PopcornEditor/test/butter.testrunner.css: -------------------------------------------------------------------------------- 1 | div#test-links { 2 | padding-right: 15px; 3 | } 4 | 5 | #test-links a { 6 | margin-right: 5px; 7 | } 8 | 9 | div#test-links > a { 10 | font-size: 0.7em; 11 | } 12 | 13 | iframe { 14 | height: 600px; 15 | width: 100%; 16 | overflow: scroll; 17 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/hint.css/src/hint-rounded.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * source: hint-rounded.scss 3 | * 4 | * Defines rounded corner tooltips. 5 | * 6 | * Classes added: 7 | * 1) hint--rounded 8 | * 9 | */ 10 | 11 | .#{$prefix}rounded { 12 | &:after { 13 | border-radius: 4px; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PopcornEditor/external/require/json.js: -------------------------------------------------------------------------------- 1 | define(['text'], function (text) { 2 | 3 | return { 4 | load: function (id, require, onload, config) { 5 | if (config.isBuild) { 6 | return onload(); 7 | } 8 | 9 | text.load(id, require, onload, config); 10 | } 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/brand-license.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/wrappers/jwplayer/popcorn.HTMLJWPlayerVideoElement.unit.js: -------------------------------------------------------------------------------- 1 | 2 | var testData = { 3 | 4 | videoSrc: "../../test/trailer.mp4", 5 | expectedDuration: 64.544, 6 | 7 | createMedia: function( id ) { 8 | return Popcorn.HTMLJWPlayerVideoElement( id ); 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /PopcornEditor/src/layouts/tutorial-editor.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/sketchfab/popcorn.sketchfab.less: -------------------------------------------------------------------------------- 1 | 2 | .sketchfab-outer-container { 3 | position: absolute; 4 | 5 | .ui-draggable-handle { 6 | z-index: 1000; 7 | } 8 | 9 | iframe { 10 | position: relative; 11 | height: 100%; 12 | width: 100%; 13 | z-index: 1; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/custom-components/webmaker-footer.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Webmaker footer 3 | */ 4 | 5 | // Waaaay basic for now 6 | 7 | .wm-footer { 8 | padding: 60px 0; 9 | background-color: @gray-darker; 10 | color: white; 11 | } 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/webmaker-language-picker/template/alllanguages.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/forms.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Forms 3 | */ 4 | 5 | .has-success, 6 | .has-error, 7 | .has-warning { 8 | .form-control:focus { 9 | box-shadow: none; 10 | } 11 | } 12 | 13 | .form-control:focus { 14 | box-shadow: none; 15 | } 16 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Support: Android 2.3 6 | // Workaround failure to string-cast null input 7 | jQuery.parseJSON = function( data ) { 8 | return JSON.parse( data + "" ); 9 | }; 10 | 11 | return jQuery.parseJSON; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/deprecated.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./traversing" 4 | ], function( jQuery ) { 5 | 6 | // The number of elements contained in the matched element set 7 | jQuery.fn.size = function() { 8 | return this.length; 9 | }; 10 | 11 | jQuery.fn.andSelf = jQuery.fn.addBack; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /PopcornEditor/test/manual-tests/default-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "default-butter-test", 3 | "baseDir": "../../", 4 | "cornfield": { 5 | "server": "http://localhost:8888", 6 | "authtype": "browserid" 7 | }, 8 | "ui": { 9 | "trackEventHighlight": "click", 10 | "title": "Popcorn Maker" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/sketchfab/popcorn.sketchfab.css: -------------------------------------------------------------------------------- 1 | .sketchfab-outer-container { 2 | position: absolute; 3 | } 4 | .sketchfab-outer-container .ui-draggable-handle { 5 | z-index: 1000; 6 | } 7 | .sketchfab-outer-container iframe { 8 | position: relative; 9 | height: 100%; 10 | width: 100%; 11 | z-index: 1; 12 | } 13 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {% include license-code.less %} 4 | 5 | @import "variables.less"; 6 | @import "mixins.less"; 7 | @import "path.less"; 8 | @import "core.less"; 9 | @import "bootstrap.less"; 10 | @import "extras.less"; 11 | @import "icons.less"; 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/stripe-ad.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | {{ stripe_ad_content }} 5 |
6 |
7 | {% include ads/carbon-light-horizontal.html %} 8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep(jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | }).length; 11 | }; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px} -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/custom-components/selectize.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Selectize 3 | */ 4 | 5 | .navbar-form .selectize-control.form-control { 6 | min-width: 160px; 7 | .selectize-input { 8 | padding-right: 25px; 9 | &:after { 10 | right: 8px; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /PopcornEditor/test/trackevent/trackevent-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "trackevent": { 3 | "updateValid": "test/trackevent/trackevent-updateValid.html", 4 | "updateInvalid": "test/trackevent/trackevent-updateInvalid.html", 5 | "previewText": "test/trackevent/trackevent-preview-text.html", 6 | "copyPaste": "test/trackevent/trackevent-copyPaste.html" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jsjpegmeta/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jsjpegmeta", 3 | "description": "Get exif info from Jpeg files", 4 | "version": "1.0.1", 5 | "main": "jpegmeta.js", 6 | "ignore": [ 7 | "**/.*", 8 | "demo.html", 9 | "demo.js", 10 | "demo.py", 11 | "package.json" 12 | ], 13 | "dependencies": { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/hint.css/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hint.css", 3 | "repo": "chinchang/hint.css", 4 | "description": "A tooltip library in CSS for your lovely websites.", 5 | "version": "1.3.3", 6 | "keywords": ["tooltip", "css"], 7 | "dependencies": {}, 8 | "development": {}, 9 | "styles": [ 10 | "hint.min.css" 11 | ] 12 | } 13 | 14 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/webmaker-language-picker/template/supportedLanguages.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /PopcornEditor/src/layouts/trackevent.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |
7 | 8 |
9 |
10 | 11 |
12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/hint.css/src/hint-theme.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * source: hint-theme.scss 3 | * 4 | * Defines basic theme for tooltips. 5 | * 6 | */ 7 | 8 | .hint, [data-hint] { 9 | /** 10 | * tooltip body 11 | */ 12 | &:after { 13 | text-shadow: 0 -1px 0px darken($defaultColor, $textShadowDarkenAmount); 14 | box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); 15 | } 16 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax({ 7 | url: url, 8 | type: "GET", 9 | dataType: "script", 10 | async: false, 11 | global: false, 12 | "throws": true 13 | }); 14 | }; 15 | 16 | return jQuery._evalUrl; 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/requirejs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "requirejs", 3 | "version": "2.1.8", 4 | "homepage": "http://requirejs.org", 5 | "authors": [ 6 | "jrburke.com" 7 | ], 8 | "description": "A file and module loader for JavaScript", 9 | "main": "require.js", 10 | "keywords": [ 11 | "AMD" 12 | ], 13 | "license": "new BSD, and MIT" 14 | } 15 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /PopcornEditor/templates/basic/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "basic", 3 | "template": "index.html", 4 | "baseDir": "./", 5 | "savedDataUrl": "./templates/basic/saved-data.json", 6 | "archiveProject": true, 7 | "editor": { 8 | "image": "./src/plugins/image/image-editor.js", 9 | "text": "./src/plugins/text/text-editor.js" 10 | }, 11 | "maxPluginZIndex": 1000 12 | } 13 | -------------------------------------------------------------------------------- /PopcornEditor/css/colors.less: -------------------------------------------------------------------------------- 1 | // See "/style-guide" for color reference: 2 | 3 | @yellow: #ffcd36; 4 | @lightyellow: #fff2cc; 5 | @darkyellow: #eab514; 6 | @orange: #ee8950; 7 | @darkgreen: #328f70; 8 | @blue: #27aae1; 9 | @red: #c13832; 10 | @green: #3fb58e; 11 | @grey: #4d4e53; 12 | @lightgrey: #e3eaee; 13 | @midgrey: #ddd; 14 | @white: #fff; 15 | @black: #000; 16 | @navy: #013E5F; 17 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/community/project-milestones.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | Want to keep up with what's planned for Font Awesome? Check out our 5 | milestones on the GitHub project. 6 |

7 |
8 | -------------------------------------------------------------------------------- /PopcornEditor/en-US/layouts/media-instance.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | 9 |
10 |
11 |
12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/less/icons.less: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 4 | readers do not read off random characters that represent icons */ 5 | {% for icon in icons %}{% for alias in icon.aliases %} 6 | .icon-{{ alias }}:before,{% endfor %} 7 | .icon-{{ icon.id }}:before { content: @{{ icon.id }}; }{% endfor %} 8 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /PopcornEditor/src/layouts/track-handle.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/assets/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 4 | * readers do not read off random characters that represent icons */ 5 | {% for icon in icons %}{% for alias in icon.aliases %} 6 | .icon-{{ alias }}:before,{% endfor %} 7 | .icon-{{ icon.id }}:before { content: ${{ icon.id }}; }{% endfor %} 8 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[":"] = jQuery.expr.pseudos; 9 | jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "makerstrap", 3 | "author": "@k88hudson", 4 | "version": "0.2.7", 5 | "dependencies": { 6 | "bootstrap": "3.1.1", 7 | "selectize": "0.10.1" 8 | }, 9 | "ignore": [ 10 | "bower_components/", 11 | "node_modules/", 12 | "demo/", 13 | "Gruntfile.js", 14 | "Procfile", 15 | "package.json" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/webmaker-analytics/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webmaker-analytics", 3 | "main": "analytics.js", 4 | "devDependencies": { 5 | "qunit": "1.13.0" 6 | }, 7 | "ignore": [ 8 | "**/.*", 9 | "bower.json", 10 | "package.json", 11 | "node_modules", 12 | "bower_components", 13 | "test", 14 | "Gruntfile.js" 15 | ], 16 | "version": "0.1.0" 17 | } 18 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/webmaker-language-picker/template/supportedLanguages.ejs: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /PopcornEditor/src/plugins/popup/images/license.txt: -------------------------------------------------------------------------------- 1 | 2 | Social Networking Icon Set by WPZOOM 3 | 4 | Colorized and tweaked by Jonathan McIntosh 5 | 6 | 7 | Licensed under a Creative Commons Attribution-Share Alike 3.0 8 | http://creativecommons.org/licenses/by-sa/3.0 9 | 10 | You are allowed to use these icons anywhere you want, we'd appreciate if you will link to our website when you share them - http://www.wpzoom.com -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/build/makerstrap.complete.less: -------------------------------------------------------------------------------- 1 | // Google fonts 2 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700); 3 | 4 | // Font awesome 5 | @import url(https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css); 6 | 7 | // Makerstrap 8 | @import '../makerstrap'; 9 | @makerstrap-bower-path: '../../bower_components'; 10 | -------------------------------------------------------------------------------- /PopcornEditor/test/track/track-tests.conf: -------------------------------------------------------------------------------- 1 | { 2 | "track": { 3 | "addTrackEvent": "test/track/track-addTrackEvent.html", 4 | "deselectEvents": "test/track/track-deselectEvents.html", 5 | "getTrackEventById": "test/track/track-getTrackEventById.html", 6 | "getTrackEventByName": "test/track/track-getTrackEventByName.html", 7 | "removeTrackEvent": "test/track/track-removeTrackEvent.html" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { 8 | jQuery.fn[ type ] = function( fn ) { 9 | return this.on( type, fn ); 10 | }; 11 | }); 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/custom-components/videos-fluid.less: -------------------------------------------------------------------------------- 1 | .video-container { 2 | max-width: 100%; 3 | width: 60rem; 4 | } 5 | .video-letterbox { 6 | height: 0; 7 | overflow: hidden; 8 | padding: 3rem 0 56.25%; 9 | position: relative; 10 | 11 | iframe, object, embed { 12 | left: 0; 13 | height: 100%; 14 | position: absolute; 15 | top: 0; 16 | width: 100%; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/farbtastic/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "farbtastic", 3 | "homepage": "https://github.com/mattfarina/farbtastic", 4 | "_release": "1.3u", 5 | "_resolution": { 6 | "type": "tag", 7 | "tag": "1.3u", 8 | "commit": "4bb6bbf49b02940cf8e278ce54a70d299852b7b7" 9 | }, 10 | "_source": "git://github.com/mattfarina/farbtastic.git", 11 | "_target": "1.3u", 12 | "_originalSource": "farbtastic" 13 | } -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 12 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/popcorn-js/parsers/parserXML/data/data.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/ads/carbon-dark-vertical.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/ads/carbon-light-horizontal.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/font-awesome/src/_includes/ads/carbon-light-vertical.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/makerstrap/less/custom-components/logo.less: -------------------------------------------------------------------------------- 1 | /********************************************************* 2 | * Logo 3 | */ 4 | 5 | .webmaker-logo img { 6 | display: inline-block; 7 | width: @logo-width-small; 8 | height: @logo-height-small; 9 | @media (min-width: @screen-lg-min) { 10 | display: inline-block; 11 | width: @logo-width-large; 12 | height: @logo-height-large; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /PopcornEditor/css/error.less: -------------------------------------------------------------------------------- 1 | @import "globals"; 2 | @import "webfonts"; 3 | 4 | body { 5 | background: @baseLight; 6 | color: @baseText; 7 | margin: 2em auto; 8 | font: 2em "Open Sans", sans-serif; 9 | text-align: center; 10 | width: 650px; 11 | } 12 | 13 | h1, h2 { 14 | margin: 0; 15 | } 16 | 17 | h1 { 18 | font-size: 6em; 19 | } 20 | 21 | h2 { 22 | font-weight: normal; 23 | } 24 | 25 | a { 26 | color: @green; 27 | } 28 | -------------------------------------------------------------------------------- /PopcornEditor/static/bower/jquery-ui/ui/minified/jquery.ui.effect-fade.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.effect-fade.js 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | (function(e,t){e.effects.effect.fade=function(t,n){var r=e(this),i=e.effects.setMode(r,t.mode||"toggle");r.animate({opacity:i},{queue:!1,duration:t.duration,easing:t.easing,complete:n})}})(jQuery); --------------------------------------------------------------------------------