1 /*
  2   JWL - The JavaScript Widget Library version 0.8.7
  3   Copyright (c) 2016 - 2020 The Zonebuilder <zone.builder@gmx.com>
  4   http://sourceforge.net/projects/jwl-library/
  5   Licenses: GNU GPL2 or later; GNU LGPLv3 or later (http://sourceforge.net/p/jwl-library/wiki/License/)
  6  */
  7 /**
  8   @fileOverview  Component resources
  9 */
 10 /* jshint browser: true, curly: true, eqeqeq: true, expr: true, funcscope: true, immed: true, latedef: true, loopfunc: true,  
 11   onevar: true, newcap: true, noarg: true, node: true, strict: true, trailing: true, undef: true, unused: vars, wsh: true */
 12 /* globals JUL */
 13 
 14 (function(global, module) {
 15 'use strict';
 16 if (module && module.exports && typeof require === 'function') { require('jul'); }
 17 var jul = new JUL.Instance({nsRoot: module && module.exports ? {JWL: module.exports} : global || null});
 18 
 19 /* generated by JCS version 1.5.8 */
 20 
 21 /**
 22   Resources for the JWL components
 23   @namespace  JWL.resources namespace
 24   @name  JWL.resources
 25 */
 26 jul.ns('JWL.resources');
 27 
 28 jul.apply(jul.get('JWL.resources'), /** @lends JWL.resources */ {
 29   /**
 30     JWL frameplayer logo
 31     @type  Object
 32   */
 33   svglogo: {
 34     ui: {
 35       tag: 'svg', fill: 'transparent', height: '300', viewBox: '-10 -10 20 20', width: '300', children: [
 36         {tag: 'polygon', points: '-2,-1 2,-1 0,-8', stroke: 'yellow'},
 37         {tag: 'polygon', points: '-2,1 2,1 0,8', stroke: 'blue'},
 38         {tag: 'polygon', points: '-1,-2 -1,2 -8,0', stroke: 'red'},
 39         {tag: 'polygon', points: '1,-2 1,2 8,0', stroke: 'lightgreen'}
 40       ]
 41     },
 42     logic: null
 43   }
 44 });
 45 
 46 })(typeof global !== 'undefined' ? global : window, typeof module !== 'undefined' ? module : null);
 47 
 48 /* end JWL.resources.js */
 49