The following debugging information was generated by Atom Beautify
on Fri May 26 2017 17:26:51 GMT+0100 (BST)
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#core_header_panel { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var headers = new Headers(); | |
headers.append('Authorization', 'Basic abc'); | |
headers.append('Connection', 'close'); | |
var message = ''; | |
for(var header of headers) { | |
message += header[0] + ': ' + header[1] + '\n'; | |
} | |
var testConstruct = 'Authorization: Basic abc\n'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var importLocation = ''; | |
(function() { | |
var url; | |
if (window.currentImport && window.currentImport.URL) { | |
url = window.currentImport.URL; | |
if (window.currentImport._URL) { | |
url = window.currentImport._URL; | |
} | |
} else if (window.currentImport._URL) { | |
url = window.currentImport._URL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I, Pawel Psztyc, have read and do accept the MuleSoft Contributor Agreement | |
at http://www.mulesoft.org/legal/contributor-agreement.html | |
Accepted on Tue May 30 2017 14:42:45 GMT+0100 (BST) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style is="custom-style"> | |
:root { | |
--arc-color-primary: pink; /* overrides: --primary-color: var(--arc-color-primary, #00a2df); */ | |
--arc-font-family: Verdana; /* overrides: --arc-font-common-base and therefore all fonts definitions */ | |
--arc-request-panel: { | |
/* Applied to whole reqiuest panel, after applying default styling that can be changed here */ | |
margin-bottom: 120px; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const builder = require('api-console-builder'); | |
builder({ | |
tagName: '5.0.0-preview', | |
embedded: true, | |
themeFile: './my-theme.html', | |
destination: 'console-bundle' | |
}) | |
.then(() => console.log('Build complete <3')) | |
.catch((cause) => console.log('Build error <\\3', cause.message)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const builder = require('api-console-builder'); | |
builder({ | |
dest: 'build', | |
// noOptimization: true, | |
embedded: true, | |
verbose: true, | |
raml: 'api.raml' | |
}) | |
.then(() => console.log('Build complete')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> | |
<title>Issue reproduction</title> | |
<script src="../../webcomponentsjs/webcomponents-loader.js"></script> | |
<style> | |
html, | |
body { |
OlderNewer