hexsha
string
size
int64
ext
string
lang
string
max_stars_repo_path
string
max_stars_repo_name
string
max_stars_repo_head_hexsha
string
max_stars_repo_licenses
list
max_stars_count
int64
max_stars_repo_stars_event_min_datetime
string
max_stars_repo_stars_event_max_datetime
string
max_issues_repo_path
string
max_issues_repo_name
string
max_issues_repo_head_hexsha
string
max_issues_repo_licenses
list
max_issues_count
int64
max_issues_repo_issues_event_min_datetime
string
max_issues_repo_issues_event_max_datetime
string
max_forks_repo_path
string
max_forks_repo_name
string
max_forks_repo_head_hexsha
string
max_forks_repo_licenses
list
max_forks_count
int64
max_forks_repo_forks_event_min_datetime
string
max_forks_repo_forks_event_max_datetime
string
content
string
avg_line_length
float64
max_line_length
int64
alphanum_fraction
float64
73955055ca26bc0347e22cc7e69fa2249af7397e
477
js
JavaScript
reactionRoles/gender-roles-panel.js
ABlackPikatchu/rmd-bot
b2643dfd9e2b5cb5c47219ca95e71d2615021af7
[ "MIT" ]
1
2021-09-19T17:26:13.000Z
2021-09-19T17:26:13.000Z
reactionRoles/gender-roles-panel.js
ABlackPikatchu/rmd-bot
b2643dfd9e2b5cb5c47219ca95e71d2615021af7
[ "MIT" ]
null
null
null
reactionRoles/gender-roles-panel.js
ABlackPikatchu/rmd-bot
b2643dfd9e2b5cb5c47219ca95e71d2615021af7
[ "MIT" ]
1
2021-09-09T23:23:11.000Z
2021-09-09T23:23:11.000Z
const emoji = require('../JSON/emoji'); module.exports = { messageID: '885422434277294110', channelID: '871030810139066383', onlyOneRole: true, DMMessage: true, roles: [ {id: '885421539690971148', emoji: emoji.male_sign, name: 'Male (he/him)'}, {id: '885421594678288444', emoji: emoji.female_sign, name: 'Female (she/her)'}, {id: '885421647589416981', emoji: emoji.white_large_square, name: '(gender) Not saying (them/they)'} ] }
39.75
108
0.649895
73955d9eb5d8b03bd41ac90c17d4ce6908568b8b
764
js
JavaScript
src/badge.js
oardi/mithril-mdl
985b3eeb2e850ccfa810fc43637797f5b9e3e8e5
[ "MIT" ]
7
2017-11-20T04:13:19.000Z
2019-11-25T22:02:50.000Z
src/badge.js
oardi/mithril-mdl
985b3eeb2e850ccfa810fc43637797f5b9e3e8e5
[ "MIT" ]
null
null
null
src/badge.js
oardi/mithril-mdl
985b3eeb2e850ccfa810fc43637797f5b9e3e8e5
[ "MIT" ]
2
2018-05-04T20:27:22.000Z
2018-12-23T23:30:49.000Z
import m from 'mithril'; import { Base } from './base'; export class Badge extends Base { oninit(vnode) { super.oninit(vnode); this.classList.push("mdl-badge"); vnode.attrs.icon ? this.classList.push("material-icons") : null; vnode.attrs.overlap ? this.classList.push("mdl-badge--overlap") : null; } view(vnode) { let attributes = {}; vnode.attrs.onclick ? attributes.onclick = (e) => vnode.attrs.onclick(e) : null; return ( <span class={this.classList.join(" ")} data-badge={vnode.attrs.value} {...attributes} > {vnode.attrs.icon ? vnode.attrs.icon : vnode.children} </span> ) } }
29.384615
88
0.531414
739562de430158f53902d2a020dafc5aa3cc73b2
5,940
js
JavaScript
wego-react-demo/src/routes/album/index.js
470043830/react-book-examples
7e98506b07b839a1f131eae97ec4ad7848c71b3d
[ "MIT" ]
1
2020-08-11T11:33:34.000Z
2020-08-11T11:33:34.000Z
wego-react-demo/src/routes/album/index.js
470043830/react-book-examples
7e98506b07b839a1f131eae97ec4ad7848c71b3d
[ "MIT" ]
null
null
null
wego-react-demo/src/routes/album/index.js
470043830/react-book-examples
7e98506b07b839a1f131eae97ec4ad7848c71b3d
[ "MIT" ]
null
null
null
/* eslint-disable react/button-has-type */ import React from "react"; import ReactDOM from 'react-dom'; import { Button, WingBlank, WhiteSpace, NavBar, Icon, Card, NoticeBar, Toast, Flex, ActionSheet } from 'wego-ui-mobile'; // import { Badge } from 'wego-ui-mobile/lib/weui'; import image111 from '@images/111.jpg'; import logo_normal from '@images/logo_normal.svg'; import './index.less'; export default class Album extends React.Component { constructor(props) { super(props); this.state = { height: document.documentElement.clientHeight, }; this.dataList = [ { url: 'OpHiXAcYzmPQHcdlLFrc', title: '发送给朋友' }, { url: 'wvEzCMiDZjthhAOcwTOu', title: '新浪微博' }, { url: 'cTTayShKtEIdQVEMuiWt', title: '生活圈' }, { url: 'umnHwvEgSyQtXlZjNJTt', title: '微信好友' }, { url: 'SxpunpETIwdxNjcJamwB', title: 'QQ' }, ].map(obj => ({ icon: <img src={`https://gw.alipayobjects.com/zos/rmsportal/${obj.url}.png`} alt={obj.title} style={{ width: 36 }} />, title: obj.title, })); } componentDidMount() { window.addEventListener('resize', this.handleResize); // 监听窗口大小改变 document.title = '首页'; const dom = ReactDOM.findDOMNode(this); console.log('dom: ', dom.id, dom.className, dom.clientWidth, dom.clientHeight); var para = document.createElement("p"); var node = document.createTextNode("This is new."); para.appendChild(node); para.style.cssText = 'background:white;color:green;height:20px;text-align:center;'; dom.appendChild(para); para.addEventListener("click", function () { alert("Hello World!!"); }); } componentWillUnmount() { window.removeEventListener('resize', this.handleResize); } handleResize = e => { // console.log('浏览器窗口大小改变事件', e.target.innerWidth); const { height } = this.state; const curHeight = document.documentElement.clientHeight; if (height !== curHeight) { this.setState({ height: curHeight }); } }; gotoPage2() { window.location.hash = "/album2"; // import('jquery').then(m => { console.log('$: ', m); }); // Promise.all([import('vconsole'), import('jquery')]).then(libs => { // var v = libs[0]; // var $ = libs[1]; // window._vconsole = new v.default(); // }); // Promise.all([import('vconsole')]).then(libs => { // var v = libs[0]; // window._vconsole = new v.default(); // }); } gotoPage3() { window.location.hash = "/album3"; } showShareActionSheet = () => { ActionSheet.showShareActionSheetWithOptions({ options: this.dataList, // title: 'title', message: 'I am description, description, description', }, (buttonIndex) => { this.setState({ clicked1: buttonIndex > -1 ? this.dataList[buttonIndex].title : 'cancel' }); // also support Promise return new Promise((resolve) => { // Toast.info('closed after 100ms'); setTimeout(resolve, 100); }); }); }; render() { const { height } = this.state; return ( <div id='album000' className='page-000' style={{ minHeight: height }}> <NavBar mode="dark" icon={<Icon type="left" />} onLeftClick={() => { window.history.back(); }} rightContent={[ <Icon key="0" type="search" style={{ marginRight: '16px' }} />, <Icon key="1" type="ellipsis" onClick={this.showShareActionSheet} />, ]} >导航栏</NavBar> <NoticeBar marqueeProps={{ loop: true, style: { padding: '0 7.5px' } }}> Notice: The arrival time of incomes and transfers of Yu &#39;E Bao will be delayed during National Day. </NoticeBar> <WingBlank> <WhiteSpace size="xl" /> <Card onClick={e => { Toast.success('card clicked', 1, null, true); }}> <Card.Header title="This is title" thumb="https://gw.alipayobjects.com/zos/rmsportal/MRhHctKOineMbKAZslML.jpg" extra={<span>this is extra</span>} /> <Card.Body> <div>This is content of `Card`</div> <div>The file will have its original line endings in your working directory</div> </Card.Body> <Card.Footer content="footer content" extra={<div>extra footer content</div>} /> </Card> { [].map(e => { return <> <WhiteSpace size="xl" /> <Button type='primary' onClick={this.gotoPage2}> to 2</Button> </>; }) } <WhiteSpace size="xl" /> <Button type='primary' onClick={this.gotoPage2}>to 2</Button> <WhiteSpace /> <Button type='primary' onClick={this.gotoPage3}>to 3</Button> {/* <Badge>222</Badge> */} <WhiteSpace /> <Flex> <img src={logo_normal} alt="" className="image-test" /> <img src={image111} alt="" className="image-test" /> </Flex> </WingBlank> </div> ); } }
39.078947
130
0.485354
7397196888dbe7520ca1cab72d27e485dcb169fe
2,223
js
JavaScript
js/archipelago/island/terrain/erosionHydraulic.js
jobtalle/HydraulicErosion
3dc0a265c7966ee0b4d9f5f7432e179f46a95b7d
[ "MIT" ]
20
2020-06-15T07:41:54.000Z
2022-03-24T16:34:56.000Z
js/archipelago/island/terrain/erosionHydraulic.js
jobtalle/HydraulicErosion
3dc0a265c7966ee0b4d9f5f7432e179f46a95b7d
[ "MIT" ]
null
null
null
js/archipelago/island/terrain/erosionHydraulic.js
jobtalle/HydraulicErosion
3dc0a265c7966ee0b4d9f5f7432e179f46a95b7d
[ "MIT" ]
4
2021-01-09T04:56:59.000Z
2021-08-11T19:37:15.000Z
/** * Hydraulic erosion simulation * @param {ErosionHydraulicParameters} parameters The parameters * @param {Number} resolution The terrain resolution * @param {Random} random A randomizer * @constructor */ const ErosionHydraulic = function(parameters, resolution, random) { this.parameters = parameters; this.resolution = resolution; this.random = random; }; /** * Let a droplet erode the height map * @param {Number} x The X coordinate to start at * @param {Number} y The Y coordinate to start at * @param {HeightMap} heightMap The height map to erodeHydraulic */ ErosionHydraulic.prototype.trace = function(x, y, heightMap) { const ox = (this.random.getFloat() * 2 - 1) * this.parameters.radius * this.resolution; const oy = (this.random.getFloat() * 2 - 1) * this.parameters.radius * this.resolution; let sediment = 0; let xp = x; let yp = y; let vx = 0; let vy = 0; for (let i = 0; i < this.parameters.maxIterations; ++i) { const surfaceNormal = heightMap.sampleNormal(x + ox, y + oy); if (surfaceNormal.y === 1) break; const deposit = sediment * this.parameters.depositionRate * surfaceNormal.y; const erosion = this.parameters.erosionRate * (1 - surfaceNormal.y) * Math.min(1, i * this.parameters.iterationScale); heightMap.sampler.change(xp, yp, deposit - erosion); vx = this.parameters.friction * vx + surfaceNormal.x * this.parameters.speed * this.resolution; vy = this.parameters.friction * vy + surfaceNormal.z * this.parameters.speed * this.resolution; xp = x; yp = y; x += vx; y += vy; sediment += erosion - deposit; } }; /** * Apply erosion * @param {HeightMap} heightMap The height map to erode */ ErosionHydraulic.prototype.apply = function(heightMap) { const drops = this.parameters.dropsPerCell * (heightMap.xValues - 1) * (heightMap.yValues - 1); for (let i = 0; i < drops; ++i) this.trace( this.random.getFloat() * heightMap.xValues * this.resolution, this.random.getFloat() * heightMap.yValues * this.resolution, heightMap); heightMap.sampler.blur(); };
33.681818
103
0.643275
7397a93f82f9b1b55342283459b03a39b388c36b
2,833
js
JavaScript
app/src/components/UserSpeakStatus/Container.js
RekkyRek/tic
53391e2936fd71d594445ccc2843d842c151294f
[ "MIT" ]
1
2017-11-29T23:57:00.000Z
2017-11-29T23:57:00.000Z
app/src/components/UserSpeakStatus/Container.js
RekkyRek/tic
53391e2936fd71d594445ccc2843d842c151294f
[ "MIT" ]
null
null
null
app/src/components/UserSpeakStatus/Container.js
RekkyRek/tic
53391e2936fd71d594445ccc2843d842c151294f
[ "MIT" ]
null
null
null
import '../../assets/css/SpeakStatus/Container.sass'; import React, { Component } from 'react'; import Channel from './Channel'; import BottomBar from './BottomBar'; import * as ClientActions from '../../actions/Client'; String.prototype.replaceAll = function(search, replacement) { var target = this; return target.replace(new RegExp(search, 'g'), replacement); }; class Container extends React.Component { constructor(props) { super(props); this.state = { colSize: 250, channels: [], users: [], whoami: {} } } handleUpdate() { const s = this.props.store; this.setState({ channels: s.channels, whoami: s.whoami, users: s.users }) } componentDidUpdate(prevProps, prevState) { if(prevState.whoami.cid != this.state.whoami.cid) { ClientActions.getUsers(this.state.whoami.cid) } } componentWillMount() { const store = this.props.store; this.setState({ channels: store.channels, whoami: store.whoami, users: store.users }) store.on('update', this.handleUpdate.bind(this)) setTimeout(()=>{ ClientActions.getUsers(this.state.whoami.cid) }, 75); const client = this.props.client; setTimeout(()=>{ client.notifyOn('notifyclientmoved', 'schandlerid=1', () => ClientActions.getWhoami()) client.notifyOn('notifyclientupdated', 'schandlerid=1', () => ClientActions.getUsers(this.state.whoami.cid)) client.notifyOn('notifyclientleftview', 'schandlerid=1', () => ClientActions.getUsers(this.state.whoami.cid)) client.notifyOn('notifycliententerview', 'schandlerid=1', () => ClientActions.getUsers(this.state.whoami.cid)) client.notifyOn('notifyclientmoved', 'schandlerid=1', () => ClientActions.getUsers(this.state.whoami.cid)) }, 200); } componentWillUnmount() { const store = this.props.store; store.removeListener('update', this.handleUpdate.bind(this)); } resize(e) { e.preventDefault(); if(e.pageX - 29 > 225 && e.pageX - 29 < window.innerWidth - 128) { this.setState({ colSize: e.pageX - 29}); } } startResize() { window.onmousemove = this.resize.bind(this); } stopResize() { window.onmousemove = undefined; } render() { return ( <div className="sidebar" onMouseUp={this.stopResize.bind(this)}> <ul className="channels" style={{ width: this.state.colSize }}> {this.state.channels.map((channel) => <Channel key={channel.cid} client={this.props.client} channel={channel} whoami={this.state.whoami} users={this.state.users} /> )} <div id="ghostbar" onMouseDown={this.startResize.bind(this)}></div> </ul> <BottomBar store={this.props.store} style={{ width: this.state.colSize }}/> </div> ); } } export default Container;
31.477778
138
0.64384
7397db9ae36d9b0c572c347a019c021d058d7f8d
3,631
js
JavaScript
public/js/custom-func.js
kevinhend97/logsheet_php
0ce7ef2d55747e3124cd42bd2fc415a1d73d595d
[ "MIT" ]
null
null
null
public/js/custom-func.js
kevinhend97/logsheet_php
0ce7ef2d55747e3124cd42bd2fc415a1d73d595d
[ "MIT" ]
null
null
null
public/js/custom-func.js
kevinhend97/logsheet_php
0ce7ef2d55747e3124cd42bd2fc415a1d73d595d
[ "MIT" ]
null
null
null
$(() => { $('.dropdown-not-close').on('click', function(event) { event.stopPropagation(); }); $("body").on('click', '.dropdown-not-close', function(event) { event.stopPropagation(); }); $(document).on('click', '.dt-search', function(){ let dtSearchInput = $(`input[data-target='${$(this).data('target')}']`); dtSearchInput.closest(".dt-search-input").show(); dtSearchInput.focus(); }); $(document).on('click', '.dt-search-hide', function(){ $(this).closest(".dt-search-input").hide(); }); $(document).on('click', '[data-toggle=copy]', function(){ let target = $(this).attr("data-target") ?? ""; copyToClipboardTarget(target); }); $("input[type=password]").next().on('click', function () { if ($(this).hasClass("input-group-append")) { let $pwd = $($(this).prev()[0]); if ($pwd.attr('type') === 'password') { $pwd.attr('type', 'text'); $pwd.next().children().children().removeAttr("class").attr("class", "fa fa-eye-slash"); } else { $pwd.attr('type', 'password'); $pwd.next().children().children().removeAttr("class").attr("class", "fa fa-eye"); } } }); }); function uuidv4() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); } const copyToClipboard = str => { const el = document.createElement('textarea'); el.value = str; el.setAttribute('readonly', ''); el.style.position = 'absolute'; el.style.left = '-9999px'; document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); alert("Text Copied!"); }; const copyToClipboardTarget = tgt => { let target = document.querySelector(tgt); let str = ""; if(target != null){ str = target.innerText == "" ? target.value : target.innerText; } const el = document.createElement('textarea'); el.value = str; el.setAttribute('readonly', ''); el.style.position = 'absolute'; el.style.left = '-9999px'; document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); alert("Text Copied!"); }; function setTextToLengthbaru(str, replaceChar, length, align){ str = (str ?? "").toString(); if(length < str.length){ return str.substring(0, length) } else { let x = (length - str.length); if (align.toLocaleLowerCase() == "l") { while(x--) str += replaceChar; } else if (align.toLocaleLowerCase() == "r"){ while(x--) str = replaceChar + str; } return str; } } function transformInToFormObject(data) { let formData = new FormData(); for (let key in data) { if (Array.isArray(data[key])) { data[key].forEach((obj, index) => { let keyList = Object.keys(obj); keyList.forEach((keyItem) => { let keyName = [key, "[", index, "]", ".", keyItem].join(""); formData.append(keyName, obj[keyItem]); }); }); } else if (typeof data[key] === "object") { for (let innerKey in data[key]) { formData.append(`${key}.${innerKey}`, data[key][innerKey]); } } else { formData.append(key, data[key]); } } return formData; }
31.573913
103
0.526301
739886c92699ecb6173b65e4b1cad1f54ec1a46f
1,329
js
JavaScript
frontend/web/js/v2/app.js
veretilosergei1985/angular-films
eb2c70ca7cec29204130efb9b49617d2f68fbfa6
[ "BSD-3-Clause" ]
null
null
null
frontend/web/js/v2/app.js
veretilosergei1985/angular-films
eb2c70ca7cec29204130efb9b49617d2f68fbfa6
[ "BSD-3-Clause" ]
null
null
null
frontend/web/js/v2/app.js
veretilosergei1985/angular-films
eb2c70ca7cec29204130efb9b49617d2f68fbfa6
[ "BSD-3-Clause" ]
null
null
null
'use strict'; var serviceBase = 'http://admin.films.loc/'; var app = angular.module('app', [ 'ngRoute', 'filmControllers', ]); app.config(['$routeProvider', function($routeProvider) { $routeProvider. when('/film/index', { templateUrl: 'film/index.html', controller: 'index' }) .when('/film/create', { templateUrl: 'film/create.html', controller: 'create', resolve: { film: function(services, $route){ return services.getFilms(); } } }) .when('/film/update/:filmId', { templateUrl: 'film/update.html', controller: 'update', resolve: { film: function(services, $route){ var filmId = $route.current.params.filmId; return services.getFilm(filmId); } } }) .when('/film/view/:filmId', { templateUrl: 'film/view.html', controller: 'view', resolve: { film: function(services, $route){ var filmId = $route.current.params.filmId; return services.getFilm(filmId); } } }) .when('/film/delete/:filmId', { templateUrl: 'film/index.html', controller: 'delete', }) .otherwise({ redirectTo: '/film/index' }); }]);
25.075472
54
0.518435
739892cc7d61082a60e66d457aadd35e3ae044ed
4,912
js
JavaScript
src/getSpirits.test.js
mariusGundersen/samsara-lib
c9ed72cc69ec61ef2e4f32b396410a974cab2f40
[ "MIT" ]
1
2016-02-24T00:55:53.000Z
2016-02-24T00:55:53.000Z
src/getSpirits.test.js
mariusGundersen/samsara-lib
c9ed72cc69ec61ef2e4f32b396410a974cab2f40
[ "MIT" ]
null
null
null
src/getSpirits.test.js
mariusGundersen/samsara-lib
c9ed72cc69ec61ef2e4f32b396410a974cab2f40
[ "MIT" ]
null
null
null
import getSpirits from './getSpirits'; import fs from 'fs-promise'; import sinon from 'sinon'; import {Jar, withArgs, withExactArgs} from 'descartes'; describe("getSpirits", function() { beforeEach(async function(){ this.jar = new Jar(); this.readdir = this.jar.probe('fs.readdir'); this.stat = this.jar.probe('fs.stat'); this.listContainers = this.jar.probe('docker.listContainers'); sinon.stub(fs, 'readdir', this.readdir); sinon.stub(fs, 'stat', this.stat); this.docker = { listContainers: this.listContainers }; }); afterEach(function(){ fs.readdir.restore(); fs.stat.restore(); }); it("should return the spirits", async function(){ const result = getSpirits(this.docker); this.listContainers.resolves([]); await this.listContainers.called().then(call => { call.args[0].all.should.equal(true); call.args[0].filters.should.equal('{"label":["samsara.spirit.life","samsara.spirit.name"]}'); }); this.readdir.resolves(['Test', 'website', 'database']) await this.readdir.called(withArgs('config/spirits')); this.stat.resolves({isDirectory(){return true}}); await this.stat.called(withArgs('config/spirits/Test')); await this.stat.called(withArgs('config/spirits/website')); await this.stat.called(withArgs('config/spirits/database')); this.readdir.resolves([]) await this.readdir.called(withArgs('config/spirits/database/lives')); await this.readdir.called(withArgs('config/spirits/Test/lives')); await this.readdir.called(withArgs('config/spirits/website/lives')); this.stat.rejects(new Error()); await this.stat.called(withArgs('config/spirits/database/deploy.lock')); await this.stat.called(withArgs('config/spirits/Test/deploy.lock')); await this.stat.called(withArgs('config/spirits/website/deploy.lock')); const spirits = await result; spirits.map(x => x.name).should.eql(['database', 'Test', 'website']); this.jar.done(); }); it("should work when a spirit has no lives", async function(){ const result = getSpirits(this.docker); this.listContainers.resolves([]); await this.listContainers.called().then(call => { call.args[0].all.should.equal(true); call.args[0].filters.should.equal('{"label":["samsara.spirit.life","samsara.spirit.name"]}'); }); this.readdir.resolves(['Test']) await this.readdir.called(withArgs('config/spirits')); this.stat.resolves({isDirectory(){return true}}); await this.stat.called(withArgs('config/spirits/Test')); this.readdir.resolves([]) await this.readdir.called(withArgs('config/spirits/Test/lives')); this.stat.rejects(new Error()); await this.stat.called(withArgs('config/spirits/Test/deploy.lock')); const spirits = await result; spirits.map(x => x.name).should.eql(['Test']); spirits[0].lives.should.eql([]); spirits[0].state.should.equal('dead'); spirits[0].life.should.equal('?'); this.jar.done(); }); it("should work when a spirit has lives", async function(){ const result = getSpirits(this.docker); this.listContainers.resolves([ createContainer('Test', 2, 'Exited (1) 2 minutes ago'), createContainer('Test', 3, 'Up 2 minutes') ]); await this.listContainers.called().then(call => { call.args[0].all.should.equal(true); call.args[0].filters.should.equal('{"label":["samsara.spirit.life","samsara.spirit.name"]}'); }); this.readdir.resolves(['Test']) await this.readdir.called(withArgs('config/spirits')); this.stat.resolves({isDirectory(){return true}}); await this.stat.called(withArgs('config/spirits/Test')); this.readdir.resolves(['1','2']) await this.readdir.called(withArgs('config/spirits/Test/lives')); this.stat.resolves({isDirectory(){return true}}); await this.stat.called(withArgs('config/spirits/Test/lives/1')); await this.stat.called(withArgs('config/spirits/Test/lives/2')); this.stat.rejects(new Error()); await this.stat.called(withArgs('config/spirits/Test/deploy.lock')); const spirits = await result; spirits.map(x => x.name).should.eql(['Test']); spirits[0].state.should.equal('running'); spirits[0].life.should.equal(3); const lives = spirits[0].lives; lives.length.should.equal(3); lives[0].life.should.equal(1); lives[0].state.should.equal('dead'); lives[0].uptime.should.equal(''); lives[1].life.should.equal(2); lives[1].state.should.equal('exited'); lives[1].uptime.should.equal('2 minutes ago'); lives[2].life.should.equal(3); lives[2].state.should.equal('running'); lives[2].uptime.should.equal('2 minutes'); this.jar.done(); }); }); function createContainer(name, life, status){ return { Labels: { 'samsara.spirit.name': name, 'samsara.spirit.life': life, }, Status: status } }
33.643836
99
0.663274
73994344c9a93f887fa5da67dfa7e1ced7ca5521
697
js
JavaScript
src/main.js
darkearl/docker-vuejs-stater
92d0b60ca0bdac5c65fe973d0899bb5aa87fd7fe
[ "MIT" ]
null
null
null
src/main.js
darkearl/docker-vuejs-stater
92d0b60ca0bdac5c65fe973d0899bb5aa87fd7fe
[ "MIT" ]
null
null
null
src/main.js
darkearl/docker-vuejs-stater
92d0b60ca0bdac5c65fe973d0899bb5aa87fd7fe
[ "MIT" ]
null
null
null
import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import Notifications from 'vue-notification' import Mixins from './mixins' import {Modal} from './components' import * as pc from './layouts/pc/default' import * as mobile from './layouts/mobile/default' Vue.component('pc-main-layout' ,pc.Main) Vue.component('pc-login-layout' ,pc.Login) Vue.component('mobile-main-layout' ,mobile.Main) Vue.component('mobile-login-layout' ,mobile.Login) Vue.config.productionTip = false Vue.use(Notifications) Vue.mixin(Mixins) Vue.component('Modal' ,Modal) /* eslint-disable no-new */ new Vue({ el: '#app', router, store, render: h => h(App) })
23.233333
50
0.721664
739a555361131706359b90a6df85fb14be5faad9
342
js
JavaScript
src/editor/contents/clear.js
marketmuse/editor
027f6eb3c68543245ae8279f09f604457610e795
[ "MIT" ]
14
2020-02-27T15:29:31.000Z
2021-07-17T20:51:25.000Z
src/editor/contents/clear.js
marketmuse/editor
027f6eb3c68543245ae8279f09f604457610e795
[ "MIT" ]
32
2020-03-15T08:40:44.000Z
2022-02-27T00:24:01.000Z
src/editor/contents/clear.js
marketmuse/editor
027f6eb3c68543245ae8279f09f604457610e795
[ "MIT" ]
1
2020-10-06T21:03:04.000Z
2020-10-06T21:03:04.000Z
import isNil from 'lodash/isNil'; import initialValue, { initialRange } from '@config/initialValue'; export default (editor, setValue) => { // set editor children and selection editor.children = initialValue; if (!isNil(editor.selection)) { editor.selection = initialRange; } // set editor state. setValue(initialValue); }
22.8
66
0.710526
739acdf144fd0381c389071e37f68e4eaa09465b
3,385
js
JavaScript
frontend/js/prefabs/bomb.js
zanon-io/serverless-multiplayer-game
3d484f76d80fcc2d3438dde8e1270b712d6f794b
[ "MIT" ]
49
2017-01-17T14:37:43.000Z
2019-03-27T23:08:09.000Z
frontend/js/prefabs/bomb.js
matt-softlogic/field-activity-iot-prototype
cc9bf57de269444c7f9b06564d0af51d76dce751
[ "MIT" ]
2
2019-11-16T19:02:26.000Z
2020-10-05T11:20:24.000Z
frontend/js/prefabs/bomb.js
matt-softlogic/field-activity-iot-prototype
cc9bf57de269444c7f9b06564d0af51d76dce751
[ "MIT" ]
9
2017-06-21T15:06:34.000Z
2019-02-03T20:47:32.000Z
var Bombermon = Bombermon || {}; Bombermon.Bomb = function (game_state, name, position, properties) { "use strict"; Bombermon.Prefab.call(this, game_state, name, position, properties); this.anchor.setTo(0.5); this.bomb_radius = +properties.bomb_radius; this.game_state.game.physics.arcade.enable(this); this.body.immovable = true; this.exploding_animation = this.animations.add("exploding", [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11, 11, 12, 12, 13, 13, 13, 14, 14], 6, false); this.exploding_animation.onComplete.add(this.kill, this); this.animations.play("exploding"); }; Bombermon.Bomb.prototype = Object.create(Bombermon.Prefab.prototype); Bombermon.Bomb.prototype.constructor = Bombermon.Bomb; Bombermon.Bomb.prototype.reset = function (position_x, position_y) { "use strict"; Phaser.Sprite.prototype.reset.call(this, position_x, position_y); this.exploding_animation.restart(); }; Bombermon.Bomb.prototype.kill = function () { "use strict"; Phaser.Sprite.prototype.kill.call(this); var explosion_name, explosion_position, explosion_properties, explosion; explosion_name = this.name + "_explosion_" + this.game_state.groups.explosions.countLiving(); explosion_position = new Phaser.Point(this.position.x, this.position.y); explosion_properties = {texture: "explosion_image", group: "explosions", duration: 0.5}; // create an explosion in the bomb position explosion = Bombermon.create_prefab_from_pool(this.game_state.groups.explosions, Bombermon.Explosion.prototype.constructor, this.game_state, explosion_name, explosion_position, explosion_properties); // create explosions in each direction this.create_explosions(-1, -this.bomb_radius, -1, "x"); this.create_explosions(1, this.bomb_radius, +1, "x"); this.create_explosions(-1, -this.bomb_radius, -1, "y"); this.create_explosions(1, this.bomb_radius, +1, "y"); Bombermon.current_bomb_index -= 1; }; Bombermon.Bomb.prototype.create_explosions = function (initial_index, final_index, step, axis) { "use strict"; var index, explosion_name, explosion_position, explosion, explosion_properties, tile; explosion_properties = {texture: "explosion_image", group: "explosions", duration: 0.5}; for (index = initial_index; Math.abs(index) <= Math.abs(final_index); index += step) { explosion_name = this.name + "_explosion_" + this.game_state.groups.explosions.countLiving(); // the position is different accoring to the axis if (axis === "x") { explosion_position = new Phaser.Point(this.position.x + (index * this.width), this.position.y); } else { explosion_position = new Phaser.Point(this.position.x, this.position.y + (index * this.height)); } tile = this.game_state.map.getTileWorldXY(explosion_position.x, explosion_position.y, this.game_state.map.tileWidth, this.game_state.map.tileHeight, "collision"); if (!tile) { // create a new explosion in the new position explosion = Bombermon.create_prefab_from_pool(this.game_state.groups.explosions, Bombermon.Explosion.prototype.constructor, this.game_state, explosion_name, explosion_position, explosion_properties); } else { break; } } };
49.779412
211
0.693353
739dd9a854397ab410c02705d36b97776918146e
218
js
JavaScript
app.js
rojosnow/node-simple-blockchain
e70f9d644035d762c7482025c2acffecd28e3a31
[ "Apache-2.0" ]
null
null
null
app.js
rojosnow/node-simple-blockchain
e70f9d644035d762c7482025c2acffecd28e3a31
[ "Apache-2.0" ]
1
2018-05-09T21:01:59.000Z
2018-05-09T21:01:59.000Z
app.js
rojosnow/node-simple-blockchain
e70f9d644035d762c7482025c2acffecd28e3a31
[ "Apache-2.0" ]
null
null
null
let Block = require('./block') let Blockchain = require('./blockchain') let Transaction = require('./transaction') let genesisBlock = new Block() let blockchain = new Blockchain(genesisBlock) console.log(blockchain)
24.222222
45
0.747706
739e841c1dfc9416362b1dae1af8a516452e5ede
339
js
JavaScript
routers/upload/file/[dir]/get.js
odanang/auth
62b7099efacbdcf0100106ffa4264bc5b006e008
[ "MIT" ]
1
2021-10-08T17:47:10.000Z
2021-10-08T17:47:10.000Z
routers/upload/file/[dir]/get.js
odanang/auth
62b7099efacbdcf0100106ffa4264bc5b006e008
[ "MIT" ]
84
2021-09-13T11:00:56.000Z
2021-12-06T03:28:01.000Z
routers/upload/file/[dir]/get.js
odanang/auth
62b7099efacbdcf0100106ffa4264bc5b006e008
[ "MIT" ]
3
2021-10-05T17:22:18.000Z
2021-12-03T04:55:55.000Z
const fs = require("fs"); /** * EXPRESS REQUEST HANDLER * @param {Express.Request} req * @param {Express.Response} res */ function handler(req, res) { const dir = path.join(path.resolve(), "public", decodeURI(req.url)); if (fs.existsSync(dir)) res.sendFile(dir); else res.send("file not found"); } module.exports = { handler };
24.214286
70
0.663717
739e9cd57b64d4e2ca1a9b75b9704e60300da91b
1,776
js
JavaScript
reactcourse/northwind-redux/src/components/cart/CartDetail.js
AtahanKocc/Web_Development
15cb0530faba0ae3f04342528668b5f7fcdb8781
[ "MIT" ]
null
null
null
reactcourse/northwind-redux/src/components/cart/CartDetail.js
AtahanKocc/Web_Development
15cb0530faba0ae3f04342528668b5f7fcdb8781
[ "MIT" ]
null
null
null
reactcourse/northwind-redux/src/components/cart/CartDetail.js
AtahanKocc/Web_Development
15cb0530faba0ae3f04342528668b5f7fcdb8781
[ "MIT" ]
null
null
null
import React, { Component } from "react"; import { connect } from "react-redux"; import { bindActionCreators } from "redux"; import * as cartActions from "../../redux/actions/cartActions"; import { Table, Button } from "reactstrap"; import alertify from "alertifyjs" class CartDetail extends Component { removeFromCart(product) { this.props.actions.removeFromCart(product); alertify.error(product.productName + " sepetten silindi") } render() { return ( <div> <Table> <thead> <tr> <th>#</th> <th>Product Name</th> <th>Unit Price</th> <th>Quantity</th> <th /> </tr> </thead> <tbody> {this.props.cart.map(cartItem => ( <tr key={cartItem.product.id}> <th scope="row">{cartItem.product.id}</th> <td>{cartItem.product.productName}</td> <td>{cartItem.product.unitPrice}</td> <td>{cartItem.quantity}</td> <td> <Button color="danger" onClick={() => this.removeFromCart(cartItem.product)} > sil </Button> </td> </tr> ))} </tbody> </Table> </div> ); } } function mapDispatchToProps(dispatch) { return { actions: { removeFromCart: bindActionCreators(cartActions.removeFromCart, dispatch) } }; } function mapStateToProps(state) { return { cart: state.cartReducer }; } export default connect( mapStateToProps, mapDispatchToProps )(CartDetail);
26.909091
79
0.496059
739f22b0eea6e5a7d90adfac6f7466ed65c1851d
398
js
JavaScript
example/index.js
song940/node-twitter
f8b9de799f28de0d29a281b6027618520aee7d72
[ "MIT" ]
null
null
null
example/index.js
song940/node-twitter
f8b9de799f28de0d29a281b6027618520aee7d72
[ "MIT" ]
null
null
null
example/index.js
song940/node-twitter
f8b9de799f28de0d29a281b6027618520aee7d72
[ "MIT" ]
1
2020-11-26T23:12:57.000Z
2020-11-26T23:12:57.000Z
const Twitter = require('..'); const twitter = new Twitter({ consumer_key: 'XxBBqK76VE8IzqkqqkhJqlRG9', consumer_secret: 'S0XKQc2gQX0KXzjVHQFZuSwa6BMd3Boiwv2xbjubC2V6uNwvII', // token: '194524135-erHFif1VGjwdOdzPzNKrEN3QyX98ehsCjc6L20mc', // token_secret: '4sA9FLSP88EL5aax1xC7VhbJc3RwWxfPZHhQ4EMEG898a' }); (async () => { const me = await twitter.users.me(); console.log(me); })();
26.533333
72
0.746231
73a0444dad08c940ffb0d210eb43950b6f1ec624
8,067
js
JavaScript
assets/arcgis_js_api/library/4.10/esri/views/3d/support/cameraUtils.js
MalonzaElkanah/e-cafe
dcef1ceb8ccb86bdd598d17015369db55bcf63f1
[ "Apache-2.0" ]
2
2019-05-06T08:23:55.000Z
2020-04-04T12:58:11.000Z
assets/arcgis_js_api/library/4.10/esri/views/3d/support/cameraUtils.js
MalonzaElkanah/e-cafe
dcef1ceb8ccb86bdd598d17015369db55bcf63f1
[ "Apache-2.0" ]
null
null
null
assets/arcgis_js_api/library/4.10/esri/views/3d/support/cameraUtils.js
MalonzaElkanah/e-cafe
dcef1ceb8ccb86bdd598d17015369db55bcf63f1
[ "Apache-2.0" ]
1
2021-12-05T18:59:25.000Z
2021-12-05T18:59:25.000Z
// All material copyright ESRI, All Rights Reserved, unless otherwise specified. // See https://js.arcgis.com/4.10/esri/copyright.txt for details. //>>built define("require exports ../../../core/tsSupport/assignHelper ../../../Camera ../../../config ../../../core/Logger ../../../core/promiseUtils ../../../core/libs/gl-matrix-2/gl-matrix ../../../geometry/Point ../../../geometry/SpatialReference ../../../geometry/support/scaleUtils ../../../geometry/support/webMercatorUtils ../camera/intersectionUtils ./cameraUtilsPlanar ./cameraUtilsSpherical ./earthUtils ./mathUtils ./projectionUtils ../webgl-engine/lib/Camera".split(" "),function(ea,g,fa,I,J,T,C,m, q,r,U,D,V,K,L,y,w,n,W){function t(a){return"global"===a.viewingMode?L:K}function M(a,b,c){var d=a.renderSpatialReference,e=m.vec3.copy(X,b.viewForward),e=N(a,b.eye,e,b.up,Y);a=a.spatialReference||r.WGS84;n.vectorToVector(b.eye,d,u,a)||(a=r.WGS84,n.vectorToVector(b.eye,d,u,a));return c?(c.position.x=u[0],c.position.y=u[1],c.position.z=u[2],c.position.spatialReference=a,c.heading=e.heading,c.tilt=e.tilt,c.fov=w.rad2deg(b.fov),c):new I(new q(u,a),e.heading,e.tilt,w.rad2deg(b.fov))}function O(a,b,c){var d= a.state.camera,e=d.fovX,d=d.width/2;"global"===a.viewingMode&&null!=c&&(b*=Math.cos(w.deg2rad(c)));b/=a.renderCoordsHelper.unitInMeters;return d/(39.37*J.screenDPI/b)/Math.tan(e/2)}function P(a,b,c){var d=a.state.camera;b=39.37*J.screenDPI/(d.width/2/(b*Math.tan(d.fovX/2)));"global"===a.viewingMode&&(b/=Math.cos(w.deg2rad(c)));return b*=a.renderCoordsHelper.unitInMeters}function Q(a,b,c,d,e,f){if(v(f)){var h=C.createResolver();z(a,d.heading,d.tilt,b,c,e,h);h.promise.then(function(b){return f.resolve(A(a, b,d.fov))})}else return b=z(a,d.heading,d.tilt,b,c,e),A(a,b,d.fov,f)}function N(a,b,c,d,e){return t(a).directionToHeadingTilt(b,c,d,e)}function Z(a,b,c){return a.basemapTerrain&&a.renderCoordsHelper.fromRenderCoords(b,x,a.spatialReference)&&a.basemapTerrain.getElevation(x)>x.z-1}function aa(a,b,c){return a.renderCoordsHelper.fromRenderCoords(b,x,a.spatialReference)?a.elevationProvider.queryElevation(x).then(function(a){return a>x.z-10}):C.resolve(!1)}function ba(a,b){var c=m.vec3f64.create();if(b)if(b instanceof q){if(n.pointToVector(b,c,a.renderSpatialReference),null==b.z&&null!=a.basemapTerrain)return a.elevationProvider.queryElevation(b).then(function(b){null!=b&&a.renderCoordsHelper.setAltitude(b,c);return c})}else m.vec3.copy(c,b);else m.vec3.copy(c,a.state.camera.center);return C.resolve(c)}function ca(a,b){var c=m.vec3f64.create();b&&b instanceof q?(n.pointToVector(b,c,a.renderSpatialReference),null==b.z&&null!=a.basemapTerrain&&(b=a.elevationProvider.getElevation(b),null!=b&&a.renderCoordsHelper.setAltitude(b, c))):b?m.vec3.copy(c,b):m.vec3.copy(c,a.state.camera.center);return c}function z(a,b,c,d,e,f,h){var p=d&&d instanceof q?d:null;if(v(h))ba(a,d).then(function(d){G(a,b,c,p,d,e,f,h)});else return d=ca(a,d),G(a,b,c,p,d,e,f,h)}function G(a,b,c,d,e,f,h,p){d||(d=n.vectorToPoint(e,a.renderSpatialReference,a.spatialReference||r.WGS84));f=Math.max(f,a.state.constraints.minimumPoiDistance);var k=da(a,b,c,e,f,h),g=t(a).eyeForCenterWithHeadingTilt,l=g(e,f,k.heading,k.tilt);if(h===B.ADJUST&&"global"===a.viewingMode&& 0<c){var R=function(){var k=f,l=f,g=a.state.constraints.tilt(l),l=t(a).eyeTiltToLookAtTilt(e,l,c),l=Math.min(l,.5*Math.PI),g=g.min*(1-E)+l*E,k=t(a).lookAtTiltToEyeTilt(e,k,g);h=1>c-k?B.LOCKED:B.ADJUST;return G(a,b,k,d,e,f,h,p)};if(Z(a,l.eye,l.tilt))return R();if(v(p)){aa(a,l.eye,l.tilt).then(function(a){if(a)return R();p.resolve({eye:l.eye,up:l.up,center:m.vec3f64.clone(e),heading:l.heading,tilt:l.tilt})});return}}k={center:m.vec3f64.create(),eye:m.vec3f64.create(),up:m.vec3f64.create(),tilt:0,heading:0}; p&&!v(p)&&(k=p);k.eye=l.eye;k.up=l.up;k.center=m.vec3f64.clone(e);k.heading=l.heading;k.tilt=l.tilt;v(p)&&p.resolve(k);return k}function da(a,b,c,d,e,f){var h=0;if(f=f===B.ADJUST)if(h=a.pointsOfInterest.centerOnSurfaceFrequent.distance,8<Math.log(e/h)/Math.LN2)f=!0;else{var g=a.renderSpatialReference,k=a.spatialReference||r.WGS84;f=n.vectorToPoint(d,g,k);g=n.vectorToPoint(a.pointsOfInterest.centerOnSurfaceFrequent.renderLocation,g,k);h*=Math.tan(.5*a.state.camera.fov);f=5<g.distance(f)/h}f?(b=0,f= a.state.constraints.tilt(e),f.max=Math.min(f.max,.5*Math.PI),f=f.min*(1-E)+f.max*E,c=t(a).eyeTiltToLookAtTilt(d,e,c),h=Math.min(c,f)):h=t(a).eyeTiltToLookAtTilt(d,e,c);c=h=a.state.constraints.clampTilt(e,h);c=t(a).lookAtTiltToEyeTilt(d,e,c);return{heading:b,tilt:c}}function A(a,b,c,d){a=n.vectorToPoint(b.eye,a.renderSpatialReference,a.spatialReference||r.WGS84);return a?d?(d.position=a,d.heading=b.heading,d.tilt=b.tilt,d.fov=c,d):new I(a,b.heading,b.tilt,c):null}function v(a){return a&&a.resolve&& a.reject}Object.defineProperty(g,"__esModule",{value:!0});var S=T.getLogger("esri.views.3d.support.cameraUtils"),u=m.vec3f64.create(),F=m.vec3f64.create(),X=m.vec3f64.create(),Y={heading:0,tilt:0},x=new q,H=new w.Cyclical(-2.0037508342788905E7,2.0037508342788905E7),B;(function(a){a[a.LOCKED=0]="LOCKED";a[a.ADJUST=1]="ADJUST"})(B=g.OrientationMode||(g.OrientationMode={}));g.headingTiltToDirectionUp=function(a,b,c,d,e){return t(a).headingTiltToDirectionUp(b,c,d,e)};g.externalToInternal=function(a,b){var c= a.renderSpatialReference,d=t(a).headingTiltToDirectionUp,e=m.vec3f64.create();if(!n.pointToVector(b.position,e,c))return null;c=d(e,b.heading,b.tilt);m.vec3.scale(c.direction,c.direction,a.state.camera.distance);m.vec3.add(c.direction,c.direction,e);a=V.cameraOnContentAlongViewDirection(a,e,c.direction,c.up);a.fov=w.deg2rad(b.fov);return a};g.internalToExternal=M;g.scaleToDistance=O;g.distanceToScale=P;g.fromCenterScale=function(a,b,c,d,e,f){c=O(a,c,b.latitude);return Q(a,b,c,d,e,f)};g.fromCenterDistance= Q;g.directionToHeadingTilt=N;g.getObserverForPointAtDistance=z;g.fromExtent=function(a,b,c,d,e,f){var h,g=0;null!=b.zmax&&null!=b.zmin&&(h=(b.zmax+b.zmin)/2,g=b.zmax-b.zmin);var k,m;if("global"===a.viewingMode){k=r.WebMercator;m=b.spatialReference||k;var l=new q(b.xmin,b.ymin,m),n=new q(b.xmax,b.ymax,m),l=D.project(l,k),n=D.project(n,k);if(null===l||null===n){v(f)&&f.reject();return}b=new q(H.center(l.x,n.x),(n.y+l.y)/2,k);null!=h&&(b.z=h);h=y.getGreatCircleSpanAt(b,l,n);k=h.lon;m=h.lat;H.diff(l.x, n.x)>H.range/2&&(k+=y.halfEarthCircumference);k=Math.min(k,y.halfEarthCircumference);m=Math.min(m,y.halfEarthCircumference)}else l=a.spatialReference||r.WGS84,D.canProject(b,l)&&(b=D.project(b,l)),k=b.xmax-b.xmin,m=b.ymax-b.ymin,b=new q({x:b.xmin+.5*k,y:b.ymin+.5*m,z:h,spatialReference:l});h=a.state.camera;g=Math.max(1/Math.tan(h.fovX/2)*k*.5,1/Math.tan(h.fovY/2)*m*.5,1/Math.tan(h.fov/2)*g*.5)/1;if(v(f))h=C.createResolver(),z(a,c,d,b,g,e,h),h.promise.then(function(b){return f.resolve(A(a,b,a.camera.fov))}); else return c=z(a,c,d,b,g,e),A(a,c,a.camera.fov,f)};g.toExtent=function(a,b,c,d,e){b||(c||(c=a.state.camera),b=M(a,c,e));e=a.renderSpatialReference;var f;if(c)e=n.vectorToPoint(c.center,e,a.spatialReference||r.WGS84),f=c.distance;else{e=a.toMap(a.screenCenter);if(!e)return null;f=y.computeCarthesianDistance(b.position,e)}c||(c=a.state.camera);b=2*f*Math.tan(c.fovX/2)*1;c=2*f*Math.tan(c.fovY/2)*1;return"global"===a.viewingMode?L.toExtent(a,e,b,c,d):K.toExtent(a,e,b,c,d)};var E=.7;g.observerToCamera= A;g.scaleToZoom=function(a,b){if(a=a.basemapTerrain&&a.basemapTerrain.tilingScheme)return a.levelAtScale(b);S.error("#scaleToZoom()","Cannot compute zoom from scale without a tiling scheme")};g.zoomToScale=function(a,b){if(a=a.basemapTerrain&&a.basemapTerrain.tilingScheme)return a.scaleAtLevel(b);S.error("#zoomToScale()","Cannot compute scale from zoom without a tiling scheme")};g.scaleToResolution=function(a,b){return a.spatialReference?U.getResolutionForScale(b,a.spatialReference):void 0};g.computeScale= function(a,b,c){var d=a.renderSpatialReference;b||(b=a.state.camera);var e;e=r.WGS84;b instanceof W?(n.vectorToVector(b.center,d,F,e),e=F[1],b=b.distance):(e=b.position.latitude,n.pointToVector(b.position,u,d),n.pointToVector(c,F,d),b=m.vec3.distance(u,F));return P(a,b,e)}});
424.578947
517
0.724929
73a053394945bab24ef30cdb80111c2d4bc76ad2
700
js
JavaScript
js/btnList.js
ccwhan6/team-project-team10
5b370dd8a030b2bc601ebf4795978ae737395a55
[ "MIT" ]
null
null
null
js/btnList.js
ccwhan6/team-project-team10
5b370dd8a030b2bc601ebf4795978ae737395a55
[ "MIT" ]
null
null
null
js/btnList.js
ccwhan6/team-project-team10
5b370dd8a030b2bc601ebf4795978ae737395a55
[ "MIT" ]
null
null
null
function delBtn() { var del = `<button type="button" class='delBtn btn btn-danger btn-sm'>Delete</button>`; return del; } function changeBtn() { var chan = `<button type="button" class='chnBtn btn btn-info btn-sm'>Rename</button>`; return chan; } function resetBtn() { var res = `<button type="button" class='resBtn btn btn-outline-danger btn-sm'>Reset</button>`; return res; } function toDoResetBtn() { var tdres = `<button type="button" class='tdResBtn btn btn-outline-danger btn-sm'>Reset</button>`; return tdres; } function addBtn() { var addb = `<button type="button" class='addBtn btn btn-outline-primary btn-sm'>Add Member</button>`; return addb; }
28
105
0.667143
73a0ae126d7457f3b2722d72a824d3e76a23b016
3,780
js
JavaScript
components/profile/levelBar.js
green-freedom-pvt-ltd/ImpactRun01
180649adf1d3843dcda0c5a2cacf3d4ffb6fd573
[ "MIT" ]
null
null
null
components/profile/levelBar.js
green-freedom-pvt-ltd/ImpactRun01
180649adf1d3843dcda0c5a2cacf3d4ffb6fd573
[ "MIT" ]
null
null
null
components/profile/levelBar.js
green-freedom-pvt-ltd/ImpactRun01
180649adf1d3843dcda0c5a2cacf3d4ffb6fd573
[ "MIT" ]
null
null
null
import React, { Component } from 'react'; import{ StyleSheet, Text, View, Dimensions, TouchableOpacity, AsyncStorage, } from 'react-native'; import LevelBarComponent from './levelBarComponent'; import styleConfig from '../styleConfig'; import Icon from 'react-native-vector-icons/FontAwesome'; var deviceWidth = Dimensions.get('window').width; var deviceHeight = Dimensions.get('window').height; class levelBar extends Component { constructor(props) { super(props); this.state = { prevKm:0, levelKm:0, progressVal:0, my_rate:1.0, my_currency:"INR", }; } componentDidMount() { // var _this = this; // setTimeout(function(){ // var totalkm = _this.props.totalKm; // if (_this.props.totalKm != undefined) { // _this.setState({ // totalKm:_this.props.totalKm, // }) // }else{ // } // },2000); } componentWillMount() { AsyncStorage.getItem('my_currency', (err, result) => { this.setState({ my_currency:JSON.parse(result), }) }) AsyncStorage.getItem('my_rate', (err, result) => { this.setState({ my_rate:JSON.parse(result), }) }) } getKMfunction(){ AsyncStorage.getItem('totalkm', (err, result) => { this.setState({ totalKm:result, level:this.userLevelFunction(result), }) }) } capitalizeFirstLetter () { return this.props.userName.charAt(0).toUpperCase() + this.props.userName.slice(1); } render(){ return( <View style={styles.Maincontainer}> <Text style={[styles.usernameText,{width:this.props.widthBar}]}>{this.props.userName +" "+this.props.lastname}</Text> <View style={[styles.wrapLevelKm,{width:this.props.widthBar}]}> <Text style={styles.kmtext}><Icon style={{fontSize:styleConfig.fontSizerlabel-2}} name={this.state.my_currency.toLowerCase()}></Icon> {(this.state.my_currency == 'INR' ? this.props.prevKm : parseFloat(this.props.prevKm/this.state.my_rate).toFixed(2))}</Text><Text style={styles.kmtext2}><Icon style={{fontSize:styleConfig.fontSizerlabel-2}} name={this.state.my_currency.toLowerCase()}></Icon> {(this.state.my_currency == 'INR' ? this.props.levelKm : parseFloat(this.props.levelKm/this.state.my_rate).toFixed(2))}</Text> </View> <LevelBarComponent unfilledColor={'grey'} height={6} width={this.props.widthBar} progress={this.props.progressVal} /> <Text style = {[styles.leveltext,{width:this.props.widthBar}]}>Level {this.props.level}</Text> </View> ) } } var styles = StyleSheet.create({ Maincontainer:{ }, wrapLevelKm:{ flexDirection:'row', }, progress:{ flex:1, }, usernameText:{ color:styleConfig.greyish_brown_two, fontFamily:styleConfig.FontFamily, fontWeight:"600", fontSize:styleConfig.FontSizeDisc+7, marginBottom:5, }, kmtext:{ fontWeight:'500', color:styleConfig.greyish_brown_two, fontFamily:styleConfig.FontFamily, fontSize:styleConfig.fontSizerlabel-2, flex:1, }, kmtext2:{ fontWeight:'500', color:styleConfig.greyish_brown_two, fontFamily:styleConfig.FontFamily, fontSize:styleConfig.fontSizerlabel-2, flex:1, alignItems: 'flex-end', justifyContent: 'flex-end', textAlign:'right', }, leveltext:{ top:3, color:styleConfig.greyish_brown_two, fontSize:styleConfig.fontSizerlabel, fontWeight:'500', fontFamily:styleConfig.FontFamily3, } }) export default levelBar;
27.591241
531
0.611111
73a22f993aa9082f37e9210097dfc8d5a24fccda
1,109
js
JavaScript
app/view/main/MainController.js
saibothack/IVMSFront
618014abdaf4b9cda402242d714dccdfb759c70d
[ "Unlicense" ]
null
null
null
app/view/main/MainController.js
saibothack/IVMSFront
618014abdaf4b9cda402242d714dccdfb759c70d
[ "Unlicense" ]
null
null
null
app/view/main/MainController.js
saibothack/IVMSFront
618014abdaf4b9cda402242d714dccdfb759c70d
[ "Unlicense" ]
null
null
null
/** * This class is the controller for the main view for the application. It is specified as * the "controller" of the Main view class. * * TODO - Replace this content of this view to suite the needs of your application. */ Ext.define('IVMSFront.view.main.MainController', { extend: 'Ext.app.ViewController', alias: 'controller.main', init: function() { var roleItem = this.lookupReference('roleItem'); var originItem = this.lookupReference('originItem'); var productnItem = this.lookupReference('productnItem'); var obj = Ext.decode(IVMSFront.util.Globals.getUserConfiguration()); if (obj != null){ if (obj.role.name == 'Super Administrador') { roleItem.hide(); originItem.setVisible(false); productnItem.setVisible(false); } } }, onItemSelected: function (sender, record) { Ext.Msg.confirm('Confirm', 'Are you sure?', 'onConfirm', this); }, onConfirm: function (choice) { if (choice === 'yes') { // } } });
28.435897
89
0.593327
73a235e2df567c4976d5625e06b4985f8865a1ee
968
js
JavaScript
scriptlogic.js
stefanomantova/Random-Gif-Searcher
db56876b08919196c2a19386a3c8d07038e28e34
[ "MIT" ]
null
null
null
scriptlogic.js
stefanomantova/Random-Gif-Searcher
db56876b08919196c2a19386a3c8d07038e28e34
[ "MIT" ]
null
null
null
scriptlogic.js
stefanomantova/Random-Gif-Searcher
db56876b08919196c2a19386a3c8d07038e28e34
[ "MIT" ]
null
null
null
class searchGif{ constructor(text){ this.text = text; } clicktoSearch() { if(!(this.checkValidText(this.text.value))){ alert("Invalid search!"); }else{ this.URLSelector(this.text.value); } } async URLSelector(text){ const img = document.getElementById('img'); const errorMessage = document.getElementById('paragraph'); try{ const fetchString = 'https://api.giphy.com/v1/gifs/translate?api_key=NKqWDTMhWdQFpLgujRQkzyP7LGVcxBP6&s='+text; const response = await fetch(fetchString, {mode: 'cors'}); const imgData = await response.json(); img.src=imgData.data.images.original.url; errorMessage.innerHTML = `` }catch(error){ errorMessage.innerHTML = `No GIF Found!` img.src = '#' } } checkValidText(text){ if(text == ''){ return false; }else{ return true; } } } var search = new searchGif(document.getElementById('searchText'));
23.609756
115
0.627066
73a289232662f7e44c81808ef4ba7ef48c6ae5d9
85
js
JavaScript
src/d3config.js
rockstarcreativestudio/Presidential-Campaign-Finance-2020
5c1c58bc17329c4275b2693f05da780868eb26ce
[ "MIT" ]
null
null
null
src/d3config.js
rockstarcreativestudio/Presidential-Campaign-Finance-2020
5c1c58bc17329c4275b2693f05da780868eb26ce
[ "MIT" ]
7
2019-07-27T14:15:33.000Z
2022-02-26T15:48:19.000Z
src/d3config.js
rockstarcreativestudio/Presidential-Campaign-Finance-2020
5c1c58bc17329c4275b2693f05da780868eb26ce
[ "MIT" ]
null
null
null
const svgHeight = 600 const maxChartWidth = 1100 export { svgHeight, maxChartWidth }
21.25
35
0.788235
73a3e9d4b754e666a2f7e6bf5373ae7d71cb93d9
1,160
js
JavaScript
Scripts/InputKey.js
erovas/Engine.js
7868cf8905da22ef6c8d391a73889bf5242c51ef
[ "BSD-3-Clause" ]
null
null
null
Scripts/InputKey.js
erovas/Engine.js
7868cf8905da22ef6c8d391a73889bf5242c51ef
[ "BSD-3-Clause" ]
null
null
null
Scripts/InputKey.js
erovas/Engine.js
7868cf8905da22ef6c8d391a73889bf5242c51ef
[ "BSD-3-Clause" ]
null
null
null
window.InputKey = Clazz({ Constructor: function(keyAction){ this.keydown = []; this.keyup = []; this.keyAction = keyAction || { "ArrowUp": "up", "ArrowDown": "down", "ArrowLeft": "left", "ArrowRight": "right", "KeyZ": "jump", "KeyX": "run" } }, init: function(){ let that = this; document.onkeydown = function(e){ let action = that.keyAction[e.code]; let index = that.keyup.indexOf(action); if(action && that.keydown.indexOf(action) === -1){ that.keydown.unshift(action); //Agregar el boton a la lista de presionados that.keyup.splice(index,1); //Quitamos el boton de la lista de liberados } } document.onkeyup = function(e){ let action = that.keyAction[e.code]; let index = that.keydown.indexOf(action); if (index > -1){ that.keydown.splice(index, 1); that.keyup.unshift(action); } } } });
25.777778
92
0.468966
73a4f86e01e2eb07f539a2b4266b2de1729556d9
57
js
JavaScript
src/settings.js
byslavik/scitec_hub
842aaa077df289d910c4846977ee9163afd219c6
[ "MIT" ]
null
null
null
src/settings.js
byslavik/scitec_hub
842aaa077df289d910c4846977ee9163afd219c6
[ "MIT" ]
null
null
null
src/settings.js
byslavik/scitec_hub
842aaa077df289d910c4846977ee9163afd219c6
[ "MIT" ]
null
null
null
export const apiUrl = 'https://scihub.herokuapp.com/api';
57
57
0.754386
73a607f44d0746790d222a4a69c260e5db1704cb
1,883
js
JavaScript
orion-server/src/main/resources/webapp/src/basic-components/Kafka/Brokersets.js
kabochya/orion
e020c073d12fcb84918a156d568bd24ab9d60d9f
[ "Apache-2.0" ]
64
2020-11-18T21:02:54.000Z
2022-03-24T01:38:40.000Z
orion-server/src/main/resources/webapp/src/basic-components/Kafka/Brokersets.js
kabochya/orion
e020c073d12fcb84918a156d568bd24ab9d60d9f
[ "Apache-2.0" ]
17
2021-11-12T01:07:50.000Z
2022-03-20T15:00:26.000Z
orion-server/src/main/resources/webapp/src/basic-components/Kafka/Brokersets.js
kabochya/orion
e020c073d12fcb84918a156d568bd24ab9d60d9f
[ "Apache-2.0" ]
20
2020-11-18T21:02:15.000Z
2022-01-27T01:09:00.000Z
/******************************************************************************* * Copyright 2020 Pinterest, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ import React from "react"; import BrokersetPanel from "./BrokersetPanel"; import MaterialTable from "material-table"; import { Box } from "@material-ui/core"; import CreateTopicPanel from "./CreateTopicPanel"; export default function Brokersets(props) { let rows = []; if (props.cluster.attributes.brokerset) { rows = Object.values(props.cluster.attributes.brokerset); } let columns = [ { title: "Alias", field: "brokersetAlias" }, { title: "Brokers", field: "brokers" } ]; let data = rows.map(row => ({ brokersetAlias: row.brokersetAlias, brokers: row.size, raw: row })); return ( <Box> <MaterialTable options={{ pageSize: 10, grouping: true, filtering: false }} title="" // style={useStyles} detailPanel={rowData => { return ( <div style={{ backgroundColor: "black" }}> <div style={{ padding: "20px" }}> <BrokersetPanel brokerset={rowData.raw} /> </div> </div> ); }} columns={columns} data={data} /> </Box> ); }
31.915254
81
0.57196
73a64a5f692921bdee06524c256f6a04365bd589
799,348
js
JavaScript
public/assets/application-ad01e15fac19a17d4fe2748dbffb8dda2803ba5811a9c375252f51c8f1b1f910.js
corya0687/yoked
c88df81f138bc7ed07c6db703fcd00d5592d788f
[ "MIT" ]
null
null
null
public/assets/application-ad01e15fac19a17d4fe2748dbffb8dda2803ba5811a9c375252f51c8f1b1f910.js
corya0687/yoked
c88df81f138bc7ed07c6db703fcd00d5592d788f
[ "MIT" ]
5
2016-07-07T10:22:37.000Z
2016-07-07T12:38:40.000Z
public/assets/application-ad01e15fac19a17d4fe2748dbffb8dda2803ba5811a9c375252f51c8f1b1f910.js
corya0687/TrackaRep
c88df81f138bc7ed07c6db703fcd00d5592d788f
[ "MIT" ]
null
null
null
/*! * jQuery JavaScript Library v1.12.4 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2016-05-20T17:17Z */ (function( global, factory ) { if ( typeof module === "object" && typeof module.exports === "object" ) { // For CommonJS and CommonJS-like environments where a proper `window` // is present, execute the factory and get jQuery. // For environments that do not have a `window` with a `document` // (such as Node.js), expose a factory as module.exports. // This accentuates the need for the creation of a real `window`. // e.g. var jQuery = require("jquery")(window); // See ticket #14549 for more info. module.exports = global.document ? factory( global, true ) : function( w ) { if ( !w.document ) { throw new Error( "jQuery requires a window with a document" ); } return factory( w ); }; } else { factory( global ); } // Pass this if window is not defined yet }(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { // Support: Firefox 18+ // Can't be in strict mode, several libs including ASP.NET trace // the stack via arguments.caller.callee and Firefox dies if // you try to trace through "use strict" call chains. (#13335) //"use strict"; var deletedIds = []; var document = window.document; var slice = deletedIds.slice; var concat = deletedIds.concat; var push = deletedIds.push; var indexOf = deletedIds.indexOf; var class2type = {}; var toString = class2type.toString; var hasOwn = class2type.hasOwnProperty; var support = {}; var version = "1.12.4", // Define a local copy of jQuery jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' // Need init if jQuery is called (just allow error to be thrown if not included) return new jQuery.fn.init( selector, context ); }, // Support: Android<4.1, IE<9 // Make sure we trim BOM and NBSP rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, // Matches dashed string for camelizing rmsPrefix = /^-ms-/, rdashAlpha = /-([\da-z])/gi, // Used by jQuery.camelCase as callback to replace() fcamelCase = function( all, letter ) { return letter.toUpperCase(); }; jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: version, constructor: jQuery, // Start with an empty selector selector: "", // The default length of a jQuery object is 0 length: 0, toArray: function() { return slice.call( this ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { return num != null ? // Return just the one element from the set ( num < 0 ? this[ num + this.length ] : this[ num ] ) : // Return all the elements in a clean array slice.call( this ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems ) { // Build a new jQuery matched element set var ret = jQuery.merge( this.constructor(), elems ); // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. each: function( callback ) { return jQuery.each( this, callback ); }, map: function( callback ) { return this.pushStack( jQuery.map( this, function( elem, i ) { return callback.call( elem, i, elem ); } ) ); }, slice: function() { return this.pushStack( slice.apply( this, arguments ) ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); }, end: function() { return this.prevObject || this.constructor(); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: push, sort: deletedIds.sort, splice: deletedIds.splice }; jQuery.extend = jQuery.fn.extend = function() { var src, copyIsArray, copy, name, options, clone, target = arguments[ 0 ] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; // skip the boolean and the target target = arguments[ i ] || {}; i++; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { target = {}; } // extend jQuery itself if only one argument is passed if ( i === length ) { target = this; i--; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( ( options = arguments[ i ] ) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; copy = options[ name ]; // Prevent never-ending loop if ( target === copy ) { continue; } // Recurse if we're merging plain objects or arrays if ( deep && copy && ( jQuery.isPlainObject( copy ) || ( copyIsArray = jQuery.isArray( copy ) ) ) ) { if ( copyIsArray ) { copyIsArray = false; clone = src && jQuery.isArray( src ) ? src : []; } else { clone = src && jQuery.isPlainObject( src ) ? src : {}; } // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend( { // Unique for each copy of jQuery on the page expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), // Assume jQuery is ready without the ready module isReady: true, error: function( msg ) { throw new Error( msg ); }, noop: function() {}, // See test/unit/core.js for details concerning isFunction. // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). isFunction: function( obj ) { return jQuery.type( obj ) === "function"; }, isArray: Array.isArray || function( obj ) { return jQuery.type( obj ) === "array"; }, isWindow: function( obj ) { /* jshint eqeqeq: false */ return obj != null && obj == obj.window; }, isNumeric: function( obj ) { // parseFloat NaNs numeric-cast false positives (null|true|false|"") // ...but misinterprets leading-number strings, particularly hex literals ("0x...") // subtraction forces infinities to NaN // adding 1 corrects loss of precision from parseFloat (#15100) var realStringObj = obj && obj.toString(); return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0; }, isEmptyObject: function( obj ) { var name; for ( name in obj ) { return false; } return true; }, isPlainObject: function( obj ) { var key; // Must be an Object. // Because of IE, we also have to check the presence of the constructor property. // Make sure that DOM nodes and window objects don't pass through, as well if ( !obj || jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } try { // Not own constructor property must be Object if ( obj.constructor && !hasOwn.call( obj, "constructor" ) && !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) { return false; } } catch ( e ) { // IE8,9 Will throw exceptions on certain host objects #9897 return false; } // Support: IE<9 // Handle iteration over inherited properties before own properties. if ( !support.ownFirst ) { for ( key in obj ) { return hasOwn.call( obj, key ); } } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own. for ( key in obj ) {} return key === undefined || hasOwn.call( obj, key ); }, type: function( obj ) { if ( obj == null ) { return obj + ""; } return typeof obj === "object" || typeof obj === "function" ? class2type[ toString.call( obj ) ] || "object" : typeof obj; }, // Workarounds based on findings by Jim Driscoll // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context globalEval: function( data ) { if ( data && jQuery.trim( data ) ) { // We use execScript on Internet Explorer // We use an anonymous function so that context is window // rather than jQuery in Firefox ( window.execScript || function( data ) { window[ "eval" ].call( window, data ); // jscs:ignore requireDotNotation } )( data ); } }, // Convert dashed to camelCase; used by the css and data modules // Microsoft forgot to hump their vendor prefix (#9572) camelCase: function( string ) { return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }, each: function( obj, callback ) { var length, i = 0; if ( isArrayLike( obj ) ) { length = obj.length; for ( ; i < length; i++ ) { if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { break; } } } else { for ( i in obj ) { if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { break; } } } return obj; }, // Support: Android<4.1, IE<9 trim: function( text ) { return text == null ? "" : ( text + "" ).replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; if ( arr != null ) { if ( isArrayLike( Object( arr ) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr ); } else { push.call( ret, arr ); } } return ret; }, inArray: function( elem, arr, i ) { var len; if ( arr ) { if ( indexOf ) { return indexOf.call( arr, elem, i ); } len = arr.length; i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; for ( ; i < len; i++ ) { // Skip accessing in sparse arrays if ( i in arr && arr[ i ] === elem ) { return i; } } } return -1; }, merge: function( first, second ) { var len = +second.length, j = 0, i = first.length; while ( j < len ) { first[ i++ ] = second[ j++ ]; } // Support: IE<9 // Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists) if ( len !== len ) { while ( second[ j ] !== undefined ) { first[ i++ ] = second[ j++ ]; } } first.length = i; return first; }, grep: function( elems, callback, invert ) { var callbackInverse, matches = [], i = 0, length = elems.length, callbackExpect = !invert; // Go through the array, only saving the items // that pass the validator function for ( ; i < length; i++ ) { callbackInverse = !callback( elems[ i ], i ); if ( callbackInverse !== callbackExpect ) { matches.push( elems[ i ] ); } } return matches; }, // arg is for internal usage only map: function( elems, callback, arg ) { var length, value, i = 0, ret = []; // Go through the array, translating each of the items to their new values if ( isArrayLike( elems ) ) { length = elems.length; for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } // Go through every key on the object, } else { for ( i in elems ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } } // Flatten any nested arrays return concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, // Bind a function to a context, optionally partially applying any // arguments. proxy: function( fn, context ) { var args, proxy, tmp; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !jQuery.isFunction( fn ) ) { return undefined; } // Simulated bind args = slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }, now: function() { return +( new Date() ); }, // jQuery.support is not used in Core but other projects attach their // properties to it so it needs to exist. support: support } ); // JSHint would error on this code due to the Symbol not being defined in ES5. // Defining this global in .jshintrc would create a danger of using the global // unguarded in another place, it seems safer to just disable JSHint for these // three lines. /* jshint ignore: start */ if ( typeof Symbol === "function" ) { jQuery.fn[ Symbol.iterator ] = deletedIds[ Symbol.iterator ]; } /* jshint ignore: end */ // Populate the class2type map jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), function( i, name ) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); } ); function isArrayLike( obj ) { // Support: iOS 8.2 (not reproducible in simulator) // `in` check used to prevent JIT error (gh-2145) // hasOwn isn't used here due to false negatives // regarding Nodelist length in IE var length = !!obj && "length" in obj && obj.length, type = jQuery.type( obj ); if ( type === "function" || jQuery.isWindow( obj ) ) { return false; } return type === "array" || length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj; } var Sizzle = /*! * Sizzle CSS Selector Engine v2.2.1 * http://sizzlejs.com/ * * Copyright jQuery Foundation and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2015-10-17 */ (function( window ) { var i, support, Expr, getText, isXML, tokenize, compile, select, outermostContext, sortInput, hasDuplicate, // Local document vars setDocument, document, docElem, documentIsHTML, rbuggyQSA, rbuggyMatches, matches, contains, // Instance-specific data expando = "sizzle" + 1 * new Date(), preferredDoc = window.document, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), sortOrder = function( a, b ) { if ( a === b ) { hasDuplicate = true; } return 0; }, // General-purpose constants MAX_NEGATIVE = 1 << 31, // Instance methods hasOwn = ({}).hasOwnProperty, arr = [], pop = arr.pop, push_native = arr.push, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf as it's faster than native // http://jsperf.com/thor-indexof-vs-for/5 indexOf = function( list, elem ) { var i = 0, len = list.length; for ( ; i < len; i++ ) { if ( list[i] === elem ) { return i; } } return -1; }, booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", // Regular expressions // http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier identifier = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + // Operator (capture 2) "*([*^$|!~]?=)" + whitespace + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + "*\\]", pseudos = ":(" + identifier + ")(?:\\((" + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: // 1. quoted (capture 3; capture 4 or capture 5) "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + // 2. simple (capture 6) "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + // 3. anything else (capture 2) ".*" + ")\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rwhitespace = new RegExp( whitespace + "+", "g" ), rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), rpseudo = new RegExp( pseudos ), ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { "ID": new RegExp( "^#(" + identifier + ")" ), "CLASS": new RegExp( "^\\.(" + identifier + ")" ), "TAG": new RegExp( "^(" + identifier + "|[*])" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), // For use in libraries implementing .is() // We use this for POS matching in `select` "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rnative = /^[^{]+\{\s*\[native \w/, // Easily-parseable/retrievable ID or TAG or CLASS selectors rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rsibling = /[+~]/, rescape = /'|\\/g, // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), funescape = function( _, escaped, escapedWhitespace ) { var high = "0x" + escaped - 0x10000; // NaN means non-codepoint // Support: Firefox<24 // Workaround erroneous numeric interpretation of +"0x" return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint String.fromCharCode( high + 0x10000 ) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }, // Used for iframes // See setDocument() // Removing the function wrapper causes a "Permission Denied" // error in IE unloadHandler = function() { setDocument(); }; // Optimize for push.apply( _, NodeList ) try { push.apply( (arr = slice.call( preferredDoc.childNodes )), preferredDoc.childNodes ); // Support: Android<4.0 // Detect silently failing push.apply arr[ preferredDoc.childNodes.length ].nodeType; } catch ( e ) { push = { apply: arr.length ? // Leverage slice if possible function( target, els ) { push_native.apply( target, slice.call(els) ); } : // Support: IE<9 // Otherwise append directly function( target, els ) { var j = target.length, i = 0; // Can't trust NodeList.length while ( (target[j++] = els[i++]) ) {} target.length = j - 1; } }; } function Sizzle( selector, context, results, seed ) { var m, i, elem, nid, nidselect, match, groups, newSelector, newContext = context && context.ownerDocument, // nodeType defaults to 9, since context defaults to document nodeType = context ? context.nodeType : 9; results = results || []; // Return early from calls with invalid selector or context if ( typeof selector !== "string" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { return results; } // Try to shortcut find operations (as opposed to filters) in HTML documents if ( !seed ) { if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { setDocument( context ); } context = context || document; if ( documentIsHTML ) { // If the selector is sufficiently simple, try using a "get*By*" DOM method // (excepting DocumentFragment context, where the methods don't exist) if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { // ID selector if ( (m = match[1]) ) { // Document context if ( nodeType === 9 ) { if ( (elem = context.getElementById( m )) ) { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID if ( elem.id === m ) { results.push( elem ); return results; } } else { return results; } // Element context } else { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID if ( newContext && (elem = newContext.getElementById( m )) && contains( context, elem ) && elem.id === m ) { results.push( elem ); return results; } } // Type selector } else if ( match[2] ) { push.apply( results, context.getElementsByTagName( selector ) ); return results; // Class selector } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { push.apply( results, context.getElementsByClassName( m ) ); return results; } } // Take advantage of querySelectorAll if ( support.qsa && !compilerCache[ selector + " " ] && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { if ( nodeType !== 1 ) { newContext = context; newSelector = selector; // qSA looks outside Element context, which is not what we want // Thanks to Andrew Dupont for this workaround technique // Support: IE <=8 // Exclude object elements } else if ( context.nodeName.toLowerCase() !== "object" ) { // Capture the context ID, setting it first if necessary if ( (nid = context.getAttribute( "id" )) ) { nid = nid.replace( rescape, "\\$&" ); } else { context.setAttribute( "id", (nid = expando) ); } // Prefix every selector in the list groups = tokenize( selector ); i = groups.length; nidselect = ridentifier.test( nid ) ? "#" + nid : "[id='" + nid + "']"; while ( i-- ) { groups[i] = nidselect + " " + toSelector( groups[i] ); } newSelector = groups.join( "," ); // Expand context for sibling selectors newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; } if ( newSelector ) { try { push.apply( results, newContext.querySelectorAll( newSelector ) ); return results; } catch ( qsaError ) { } finally { if ( nid === expando ) { context.removeAttribute( "id" ); } } } } } } // All others return select( selector.replace( rtrim, "$1" ), context, results, seed ); } /** * Create key-value caches of limited size * @returns {function(string, object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ function createCache() { var keys = []; function cache( key, value ) { // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key + " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; } return (cache[ key + " " ] = value); } return cache; } /** * Mark a function for special use by Sizzle * @param {Function} fn The function to mark */ function markFunction( fn ) { fn[ expando ] = true; return fn; } /** * Support testing using an element * @param {Function} fn Passed the created div and expects a boolean result */ function assert( fn ) { var div = document.createElement("div"); try { return !!fn( div ); } catch (e) { return false; } finally { // Remove from its parent by default if ( div.parentNode ) { div.parentNode.removeChild( div ); } // release memory in IE div = null; } } /** * Adds the same handler for all of the specified attrs * @param {String} attrs Pipe-separated list of attributes * @param {Function} handler The method that will be applied */ function addHandle( attrs, handler ) { var arr = attrs.split("|"), i = arr.length; while ( i-- ) { Expr.attrHandle[ arr[i] ] = handler; } } /** * Checks document order of two siblings * @param {Element} a * @param {Element} b * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b */ function siblingCheck( a, b ) { var cur = b && a, diff = cur && a.nodeType === 1 && b.nodeType === 1 && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE ); // Use IE sourceIndex if available on both nodes if ( diff ) { return diff; } // Check if b follows a if ( cur ) { while ( (cur = cur.nextSibling) ) { if ( cur === b ) { return -1; } } } return a ? 1 : -1; } /** * Returns a function to use in pseudos for input types * @param {String} type */ function createInputPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === type; }; } /** * Returns a function to use in pseudos for buttons * @param {String} type */ function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && elem.type === type; }; } /** * Returns a function to use in pseudos for positionals * @param {Function} fn */ function createPositionalPseudo( fn ) { return markFunction(function( argument ) { argument = +argument; return markFunction(function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { if ( seed[ (j = matchIndexes[i]) ] ) { seed[j] = !(matches[j] = seed[j]); } } }); }); } /** * Checks a node for validity as a Sizzle context * @param {Element|Object=} context * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value */ function testContext( context ) { return context && typeof context.getElementsByTagName !== "undefined" && context; } // Expose support vars for convenience support = Sizzle.support = {}; /** * Detects XML nodes * @param {Element|Object} elem An element or a document * @returns {Boolean} True iff elem is a non-HTML XML node */ isXML = Sizzle.isXML = function( elem ) { // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) var documentElement = elem && (elem.ownerDocument || elem).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; /** * Sets document-related variables once based on the current document * @param {Element|Object} [doc] An element or document object to use to set the document * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { var hasCompare, parent, doc = node ? node.ownerDocument || node : preferredDoc; // Return early if doc is invalid or already selected if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } // Update global variables document = doc; docElem = document.documentElement; documentIsHTML = !isXML( document ); // Support: IE 9-11, Edge // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) if ( (parent = document.defaultView) && parent.top !== parent ) { // Support: IE 11 if ( parent.addEventListener ) { parent.addEventListener( "unload", unloadHandler, false ); // Support: IE 9 - 10 only } else if ( parent.attachEvent ) { parent.attachEvent( "onunload", unloadHandler ); } } /* Attributes ---------------------------------------------------------------------- */ // Support: IE<8 // Verify that getAttribute really returns attributes and not properties // (excepting IE8 booleans) support.attributes = assert(function( div ) { div.className = "i"; return !div.getAttribute("className"); }); /* getElement(s)By* ---------------------------------------------------------------------- */ // Check if getElementsByTagName("*") returns only elements support.getElementsByTagName = assert(function( div ) { div.appendChild( document.createComment("") ); return !div.getElementsByTagName("*").length; }); // Support: IE<9 support.getElementsByClassName = rnative.test( document.getElementsByClassName ); // Support: IE<10 // Check if getElementById returns elements by name // The broken getElementById methods don't pick up programatically-set names, // so use a roundabout getElementsByName test support.getById = assert(function( div ) { docElem.appendChild( div ).id = expando; return !document.getElementsByName || !document.getElementsByName( expando ).length; }); // ID find and filter if ( support.getById ) { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { var m = context.getElementById( id ); return m ? [ m ] : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; } else { // Support: IE6/7 // getElementById is not reliable as a find shortcut delete Expr.find["ID"]; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; } // Tag Expr.find["TAG"] = support.getElementsByTagName ? function( tag, context ) { if ( typeof context.getElementsByTagName !== "undefined" ) { return context.getElementsByTagName( tag ); // DocumentFragment nodes don't have gEBTN } else if ( support.qsa ) { return context.querySelectorAll( tag ); } } : function( tag, context ) { var elem, tmp = [], i = 0, // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { while ( (elem = results[i++]) ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } } return tmp; } return results; }; // Class Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { return context.getElementsByClassName( className ); } }; /* QSA/matchesSelector ---------------------------------------------------------------------- */ // QSA and matchesSelector support // matchesSelector(:active) reports false when true (IE9/Opera 11.5) rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21) // We allow this because of a bug in IE8/9 that throws an error // whenever `document.activeElement` is accessed on an iframe // So, we allow :focus to pass through QSA all the time to avoid the IE error // See http://bugs.jquery.com/ticket/13378 rbuggyQSA = []; if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { // Build QSA regex // Regex strategy adopted from Diego Perini assert(function( div ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explicitly // setting a boolean content attribute, // since its presence should be enough // http://bugs.jquery.com/ticket/12359 docElem.appendChild( div ).innerHTML = "<a id='" + expando + "'></a>" + "<select id='" + expando + "-\r\\' msallowcapture=''>" + "<option selected=''></option></select>"; // Support: IE8, Opera 11-12.16 // Nothing should be selected when empty strings follow ^= or $= or *= // The test attribute must be unknown in Opera but "safe" for WinRT // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section if ( div.querySelectorAll("[msallowcapture^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); } // Support: IE8 // Boolean attributes and "value" are not treated correctly if ( !div.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); } // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { rbuggyQSA.push("~="); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } // Support: Safari 8+, iOS 8+ // https://bugs.webkit.org/show_bug.cgi?id=136851 // In-page `selector#id sibing-combinator selector` fails if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { rbuggyQSA.push(".#.+[+~]"); } }); assert(function( div ) { // Support: Windows 8 Native Apps // The type and name attributes are restricted during .innerHTML assignment var input = document.createElement("input"); input.setAttribute( "type", "hidden" ); div.appendChild( input ).setAttribute( "name", "D" ); // Support: IE8 // Enforce case-sensitivity of name attribute if ( div.querySelectorAll("[name=d]").length ) { rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":enabled").length ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos div.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { assert(function( div ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( div, "div" ); // This should fail with an exception // Gecko does not error, returns false instead matches.call( div, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); /* Contains ---------------------------------------------------------------------- */ hasCompare = rnative.test( docElem.compareDocumentPosition ); // Element contains another // Purposefully self-exclusive // As in, an element does not contain itself contains = hasCompare || rnative.test( docElem.contains ) ? function( a, b ) { var adown = a.nodeType === 9 ? a.documentElement : a, bup = b && b.parentNode; return a === bup || !!( bup && bup.nodeType === 1 && ( adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 )); } : function( a, b ) { if ( b ) { while ( (b = b.parentNode) ) { if ( b === a ) { return true; } } } return false; }; /* Sorting ---------------------------------------------------------------------- */ // Document order sorting sortOrder = hasCompare ? function( a, b ) { // Flag for duplicate removal if ( a === b ) { hasDuplicate = true; return 0; } // Sort on method existence if only one input has compareDocumentPosition var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; if ( compare ) { return compare; } // Calculate position if both inputs belong to the same document compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? a.compareDocumentPosition( b ) : // Otherwise we know they are disconnected 1; // Disconnected nodes if ( compare & 1 || (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { // Choose the first element that is related to our preferred document if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { return -1; } if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { return 1; } // Maintain original order return sortInput ? ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : 0; } return compare & 4 ? -1 : 1; } : function( a, b ) { // Exit early if the nodes are identical if ( a === b ) { hasDuplicate = true; return 0; } var cur, i = 0, aup = a.parentNode, bup = b.parentNode, ap = [ a ], bp = [ b ]; // Parentless nodes are either documents or disconnected if ( !aup || !bup ) { return a === document ? -1 : b === document ? 1 : aup ? -1 : bup ? 1 : sortInput ? ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : 0; // If the nodes are siblings, we can do a quick check } else if ( aup === bup ) { return siblingCheck( a, b ); } // Otherwise we need full lists of their ancestors for comparison cur = a; while ( (cur = cur.parentNode) ) { ap.unshift( cur ); } cur = b; while ( (cur = cur.parentNode) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy while ( ap[i] === bp[i] ) { i++; } return i ? // Do a sibling check if the nodes have a common ancestor siblingCheck( ap[i], bp[i] ) : // Otherwise nodes in our document sort first ap[i] === preferredDoc ? -1 : bp[i] === preferredDoc ? 1 : 0; }; return document; }; Sizzle.matches = function( expr, elements ) { return Sizzle( expr, null, null, elements ); }; Sizzle.matchesSelector = function( elem, expr ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } // Make sure that attribute selectors are quoted expr = expr.replace( rattributeQuotes, "='$1']" ); if ( support.matchesSelector && documentIsHTML && !compilerCache[ expr + " " ] && ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { try { var ret = matches.call( elem, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9 elem.document && elem.document.nodeType !== 11 ) { return ret; } } catch (e) {} } return Sizzle( expr, document, null, [ elem ] ).length > 0; }; Sizzle.contains = function( context, elem ) { // Set document vars if needed if ( ( context.ownerDocument || context ) !== document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } var fn = Expr.attrHandle[ name.toLowerCase() ], // Don't get fooled by Object.prototype properties (jQuery #13807) val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? fn( elem, name, !documentIsHTML ) : undefined; return val !== undefined ? val : support.attributes || !documentIsHTML ? elem.getAttribute( name ) : (val = elem.getAttributeNode(name)) && val.specified ? val.value : null; }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; /** * Document sorting and removing duplicates * @param {ArrayLike} results */ Sizzle.uniqueSort = function( results ) { var elem, duplicates = [], j = 0, i = 0; // Unless we *know* we can detect duplicates, assume their presence hasDuplicate = !support.detectDuplicates; sortInput = !support.sortStable && results.slice( 0 ); results.sort( sortOrder ); if ( hasDuplicate ) { while ( (elem = results[i++]) ) { if ( elem === results[ i ] ) { j = duplicates.push( i ); } } while ( j-- ) { results.splice( duplicates[ j ], 1 ); } } // Clear input after sorting to release objects // See https://github.com/jquery/sizzle/pull/225 sortInput = null; return results; }; /** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getText = function( elem ) { var node, ret = "", i = 0, nodeType = elem.nodeType; if ( !nodeType ) { // If no nodeType, this is expected to be an array while ( (node = elem[i++]) ) { // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent for elements // innerText usage removed for consistency of new lines (jQuery #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } // Do not include comment or processing instruction nodes return ret; }; Expr = Sizzle.selectors = { // Can be adjusted by the user cacheLength: 50, createPseudo: markFunction, match: matchExpr, attrHandle: {}, find: {}, relative: { ">": { dir: "parentNode", first: true }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: true }, "~": { dir: "previousSibling" } }, preFilter: { "ATTR": function( match ) { match[1] = match[1].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); if ( match[2] === "~=" ) { match[3] = " " + match[3] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) 4 xn-component of xn+y argument ([+-]?\d*n|) 5 sign of xn-component 6 x of xn-component 7 sign of y-component 8 y of y-component */ match[1] = match[1].toLowerCase(); if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument if ( !match[3] ) { Sizzle.error( match[0] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); // other types prohibit arguments } else if ( match[3] ) { Sizzle.error( match[0] ); } return match; }, "PSEUDO": function( match ) { var excess, unquoted = !match[6] && match[2]; if ( matchExpr["CHILD"].test( match[0] ) ) { return null; } // Accept quoted arguments as-is if ( match[3] ) { match[2] = match[4] || match[5] || ""; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && // Get excess from tokenize (recursively) (excess = tokenize( unquoted, true )) && // advance to the next closing parenthesis (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { // excess is a negative index match[0] = match[0].slice( 0, excess ); match[2] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) return match.slice( 0, 3 ); } }, filter: { "TAG": function( nodeNameSelector ) { var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); return nodeNameSelector === "*" ? function() { return true; } : function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; }, "CLASS": function( className ) { var pattern = classCache[ className + " " ]; return pattern || (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && classCache( className, function( elem ) { return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); }); }, "ATTR": function( name, operator, check ) { return function( elem ) { var result = Sizzle.attr( elem, name ); if ( result == null ) { return operator === "!="; } if ( !operator ) { return true; } result += ""; return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : operator === "*=" ? check && result.indexOf( check ) > -1 : operator === "$=" ? check && result.slice( -check.length ) === check : operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : false; }; }, "CHILD": function( type, what, argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; return first === 1 && last === 0 ? // Shortcut for :nth-*(n) function( elem ) { return !!elem.parentNode; } : function( elem, context, xml ) { var cache, uniqueCache, outerCache, node, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType, diff = false; if ( parent ) { // :(first|last|only)-(child|of-type) if ( simple ) { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } return true; } start = [ forward ? parent.firstChild : parent.lastChild ]; // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { // Seek `elem` from a previously-cached index // ...in a gzip-friendly way node = parent; outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex && cache[ 2 ]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start (diff = nodeIndex = 0) || start.pop()) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } } else { // Use previously-cached element index if available if ( useCache ) { // ...in a gzip-friendly way node = elem; outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex; } // xml :nth-child(...) // or :nth-last-child(...) or :nth(-last)?-of-type(...) if ( diff === false ) { // Use the same loop as above to seek `elem` from the start while ( (node = ++nodeIndex && node && node[ dir ] || (diff = nodeIndex = 0) || start.pop()) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { // Cache the index of each encountered element if ( useCache ) { outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); uniqueCache[ type ] = [ dirruns, diff ]; } if ( node === elem ) { break; } } } } } // Incorporate the offset, then check against cycle size diff -= last; return diff === first || ( diff % first === 0 && diff / first >= 0 ); } }; }, "PSEUDO": function( pseudo, argument ) { // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters // Remember that setFilters inherits from pseudos var args, fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || Sizzle.error( "unsupported pseudo: " + pseudo ); // The user may use createPseudo to indicate that // arguments are needed to create the filter function // just as Sizzle does if ( fn[ expando ] ) { return fn( argument ); } // But maintain support for old signatures if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? markFunction(function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { idx = indexOf( seed, matched[i] ); seed[ idx ] = !( matches[ idx ] = matched[i] ); } }) : function( elem ) { return fn( elem, 0, args ); }; } return fn; } }, pseudos: { // Potentially complex pseudos "not": markFunction(function( selector ) { // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators var input = [], results = [], matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? markFunction(function( seed, matches, context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { if ( (elem = unmatched[i]) ) { seed[i] = !(matches[i] = elem); } } }) : function( elem, context, xml ) { input[0] = elem; matcher( input, null, xml, results ); // Don't keep the element (issue #299) input[0] = null; return !results.pop(); }; }), "has": markFunction(function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; }), "contains": markFunction(function( text ) { text = text.replace( runescape, funescape ); return function( elem ) { return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; }; }), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value // being equal to the identifier C, // or beginning with the identifier C immediately followed by "-". // The matching of C against the element's language value is performed case-insensitively. // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { // lang value must be a valid identifier if ( !ridentifier.test(lang || "") ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { if ( (elemLang = documentIsHTML ? elem.lang : elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); return false; }; }), // Miscellaneous "target": function( elem ) { var hash = window.location && window.location.hash; return hash && hash.slice( 1 ) === elem.id; }, "root": function( elem ) { return elem === docElem; }, "focus": function( elem ) { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, // Boolean properties "enabled": function( elem ) { return elem.disabled === false; }, "disabled": function( elem ) { return elem.disabled === true; }, "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); }, "selected": function( elem ) { // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { elem.parentNode.selectedIndex; } return elem.selected === true; }, // Contents "empty": function( elem ) { // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), // but not by others (comment: 8; processing instruction: 7; etc.) // nodeType < 6 works because attributes (2) do not appear as children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { if ( elem.nodeType < 6 ) { return false; } } return true; }, "parent": function( elem ) { return !Expr.pseudos["empty"]( elem ); }, // Element/input types "header": function( elem ) { return rheader.test( elem.nodeName ); }, "input": function( elem ) { return rinputs.test( elem.nodeName ); }, "button": function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === "button" || name === "button"; }, "text": function( elem ) { var attr; return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && // Support: IE<8 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); }, // Position-in-collection "first": createPositionalPseudo(function() { return [ 0 ]; }), "last": createPositionalPseudo(function( matchIndexes, length ) { return [ length - 1 ]; }), "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; }), "even": createPositionalPseudo(function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "odd": createPositionalPseudo(function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; --i >= 0; ) { matchIndexes.push( i ); } return matchIndexes; }), "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; }) } }; Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { Expr.pseudos[ i ] = createInputPseudo( i ); } for ( i in { submit: true, reset: true } ) { Expr.pseudos[ i ] = createButtonPseudo( i ); } // Easy API for creating new setFilters function setFilters() {} setFilters.prototype = Expr.filters = Expr.pseudos; Expr.setFilters = new setFilters(); tokenize = Sizzle.tokenize = function( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first run if ( !matched || (match = rcomma.exec( soFar )) ) { if ( match ) { // Don't consume trailing commas as valid soFar = soFar.slice( match[0].length ) || soFar; } groups.push( (tokens = []) ); } matched = false; // Combinators if ( (match = rcombinators.exec( soFar )) ) { matched = match.shift(); tokens.push({ value: matched, // Cast descendant combinators to space type: match[0].replace( rtrim, " " ) }); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || (match = preFilters[ type ]( match ))) ) { matched = match.shift(); tokens.push({ value: matched, type: type, matches: match }); soFar = soFar.slice( matched.length ); } } if ( !matched ) { break; } } // Return the length of the invalid excess // if we're just parsing // Otherwise, throw an error or return tokens return parseOnly ? soFar.length : soFar ? Sizzle.error( selector ) : // Cache the tokens tokenCache( selector, groups ).slice( 0 ); }; function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; } function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, checkNonElements = base && dir === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } } } : // Check against all ancestor/preceding elements function( elem, context, xml ) { var oldCache, uniqueCache, outerCache, newCache = [ dirruns, doneName ]; // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; } } } } else { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); if ( (oldCache = uniqueCache[ dir ]) && oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { // Assign to newCache so results back-propagate to previous elements return (newCache[ 2 ] = oldCache[ 2 ]); } else { // Reuse newcache so results back-propagate to previous elements uniqueCache[ dir ] = newCache; // A match means we're done; a fail means we have to keep checking if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { return true; } } } } } }; } function elementMatcher( matchers ) { return matchers.length > 1 ? function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { if ( !matchers[i]( elem, context, xml ) ) { return false; } } return true; } : matchers[0]; } function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; } function condense( unmatched, map, filter, context, xml ) { var elem, newUnmatched = [], i = 0, len = unmatched.length, mapped = map != null; for ( ; i < len; i++ ) { if ( (elem = unmatched[i]) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { map.push( i ); } } } } return newUnmatched; } function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { if ( postFilter && !postFilter[ expando ] ) { postFilter = setMatcher( postFilter ); } if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } return markFunction(function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? condense( elems, preMap, preFilter, context, xml ) : elems, matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? // ...intermediate processing is necessary [] : // ...otherwise use results directly results : matcherIn; // Find primary matches if ( matcher ) { matcher( matcherIn, matcherOut, context, xml ); } // Apply postFilter if ( postFilter ) { temp = condense( matcherOut, postMap ); postFilter( temp, [], context, xml ); // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { if ( (elem = temp[i]) ) { matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); } } } if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) ) { // Restore matcherIn since elem is not yet a final match temp.push( (matcherIn[i] = elem) ); } } postFinder( null, (matcherOut = []), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) && (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { seed[temp] = !(results[temp] = elem); } } } // Add elements to results, through postFinder if defined } else { matcherOut = condense( matcherOut === results ? matcherOut.splice( preexisting, matcherOut.length ) : matcherOut ); if ( postFinder ) { postFinder( null, results, matcherOut, xml ); } else { push.apply( results, matcherOut ); } } }); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[ tokens[0].type ], implicitRelative = leadingRelative || Expr.relative[" "], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) matchContext = addCombinator( function( elem ) { return elem === checkContext; }, implicitRelative, true ), matchAnyContext = addCombinator( function( elem ) { return indexOf( checkContext, elem ) > -1; }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( (checkContext = context).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); // Avoid hanging onto element (issue #299) checkContext = null; return ret; } ]; for ( ; i < len; i++ ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) { matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; } else { matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { if ( Expr.relative[ tokens[j].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( // If the preceding token was a descendant combinator, insert an implicit any-element `*` tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), j < len && toSelector( tokens ) ); } matchers.push( matcher ); } } return elementMatcher( matchers ); } function matcherFromGroupMatchers( elementMatchers, setMatchers ) { var bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, outermost ) { var elem, j, matcher, matchedCount = 0, i = "0", unmatched = seed && [], setMatched = [], contextBackup = outermostContext, // We must always have either seed elements or outermost context elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), // Use integer dirruns iff this is the outermost matcher dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), len = elems.length; if ( outermost ) { outermostContext = context === document || context || outermost; } // Add elements passing elementMatchers directly to results // Support: IE<9, Safari // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id for ( ; i !== len && (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { j = 0; if ( !context && elem.ownerDocument !== document ) { setDocument( elem ); xml = !documentIsHTML; } while ( (matcher = elementMatchers[j++]) ) { if ( matcher( elem, context || document, xml) ) { results.push( elem ); break; } } if ( outermost ) { dirruns = dirrunsUnique; } } // Track unmatched elements for set filters if ( bySet ) { // They will have gone through all possible matchers if ( (elem = !matcher && elem) ) { matchedCount--; } // Lengthen the array for every element, matched or not if ( seed ) { unmatched.push( elem ); } } } // `i` is now the count of elements visited above, and adding it to `matchedCount` // makes the latter nonnegative. matchedCount += i; // Apply set filters to unmatched elements // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` // equals `i`), unless we didn't visit _any_ elements in the above loop because we have // no element matchers and no seed. // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that // case, which will result in a "00" `matchedCount` that differs from `i` but is also // numerically zero. if ( bySet && i !== matchedCount ) { j = 0; while ( (matcher = setMatchers[j++]) ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { if ( !(unmatched[i] || setMatched[i]) ) { setMatched[i] = pop.call( results ); } } } // Discard index placeholder values to get only actual matches setMatched = condense( setMatched ); } // Add matches to results push.apply( results, setMatched ); // Seedless set matches succeeding multiple successful matchers stipulate sorting if ( outermost && !seed && setMatched.length > 0 && ( matchedCount + setMatchers.length ) > 1 ) { Sizzle.uniqueSort( results ); } } // Override manipulation of globals by nested matchers if ( outermost ) { dirruns = dirrunsUnique; outermostContext = contextBackup; } return unmatched; }; return bySet ? markFunction( superMatcher ) : superMatcher; } compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { var i, setMatchers = [], elementMatchers = [], cached = compilerCache[ selector + " " ]; if ( !cached ) { // Generate a function of recursive functions that can be used to check each element if ( !match ) { match = tokenize( selector ); } i = match.length; while ( i-- ) { cached = matcherFromTokens( match[i] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { elementMatchers.push( cached ); } } // Cache the compiled function cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); // Save selector and tokenization cached.selector = selector; } return cached; }; /** * A low-level selection function that works with Sizzle's compiled * selector functions * @param {String|Function} selector A selector or a pre-compiled * selector function built with Sizzle.compile * @param {Element} context * @param {Array} [results] * @param {Array} [seed] A set of elements to match against */ select = Sizzle.select = function( selector, context, results, seed ) { var i, tokens, token, type, find, compiled = typeof selector === "function" && selector, match = !seed && tokenize( (selector = compiled.selector || selector) ); results = results || []; // Try to minimize operations if there is only one selector in the list and no seed // (the latter of which guarantees us context) if ( match.length === 1 ) { // Reduce context if the leading compound selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && support.getById && context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; if ( !context ) { return results; // Precompiled matchers will still verify ancestry, so step up a level } else if ( compiled ) { context = context.parentNode; } selector = selector.slice( tokens.shift().value.length ); } // Fetch a seed set for right-to-left matching i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; while ( i-- ) { token = tokens[i]; // Abort if we hit a combinator if ( Expr.relative[ (type = token.type) ] ) { break; } if ( (find = Expr.find[ type ]) ) { // Search, expanding context for leading sibling combinators if ( (seed = find( token.matches[0].replace( runescape, funescape ), rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context )) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); selector = seed.length && toSelector( tokens ); if ( !selector ) { push.apply( results, seed ); return results; } break; } } } } // Compile and execute a filtering function if one is not provided // Provide `match` to avoid retokenization if we modified the selector above ( compiled || compile( selector, match ) )( seed, context, !documentIsHTML, results, !context || rsibling.test( selector ) && testContext( context.parentNode ) || context ); return results; }; // One-time assignments // Sort stability support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; // Support: Chrome 14-35+ // Always assume duplicates if they aren't passed to the comparison function support.detectDuplicates = !!hasDuplicate; // Initialize against the default document setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) // Detached nodes confoundingly follow *each other* support.sortDetached = assert(function( div1 ) { // Should return 1, but returns 4 (following) return div1.compareDocumentPosition( document.createElement("div") ) & 1; }); // Support: IE<8 // Prevent attribute/property "interpolation" // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !assert(function( div ) { div.innerHTML = "<a href='#'></a>"; return div.firstChild.getAttribute("href") === "#" ; }) ) { addHandle( "type|href|height|width", function( elem, name, isXML ) { if ( !isXML ) { return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); } }); } // Support: IE<9 // Use defaultValue in place of getAttribute("value") if ( !support.attributes || !assert(function( div ) { div.innerHTML = "<input/>"; div.firstChild.setAttribute( "value", "" ); return div.firstChild.getAttribute( "value" ) === ""; }) ) { addHandle( "value", function( elem, name, isXML ) { if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { return elem.defaultValue; } }); } // Support: IE<9 // Use getAttributeNode to fetch booleans when getAttribute lies if ( !assert(function( div ) { return div.getAttribute("disabled") == null; }) ) { addHandle( booleans, function( elem, name, isXML ) { var val; if ( !isXML ) { return elem[ name ] === true ? name.toLowerCase() : (val = elem.getAttributeNode( name )) && val.specified ? val.value : null; } }); } return Sizzle; })( window ); jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[ ":" ] = jQuery.expr.pseudos; jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; var dir = function( elem, dir, until ) { var matched = [], truncate = until !== undefined; while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { if ( elem.nodeType === 1 ) { if ( truncate && jQuery( elem ).is( until ) ) { break; } matched.push( elem ); } } return matched; }; var siblings = function( n, elem ) { var matched = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { matched.push( n ); } } return matched; }; var rneedsContext = jQuery.expr.match.needsContext; var rsingleTag = ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); var risSimple = /^.[^:#\[\.,]*$/; // Implement the identical functionality for filter and not function winnow( elements, qualifier, not ) { if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { /* jshint -W018 */ return !!qualifier.call( elem, i, elem ) !== not; } ); } if ( qualifier.nodeType ) { return jQuery.grep( elements, function( elem ) { return ( elem === qualifier ) !== not; } ); } if ( typeof qualifier === "string" ) { if ( risSimple.test( qualifier ) ) { return jQuery.filter( qualifier, elements, not ); } qualifier = jQuery.filter( qualifier, elements ); } return jQuery.grep( elements, function( elem ) { return ( jQuery.inArray( elem, qualifier ) > -1 ) !== not; } ); } jQuery.filter = function( expr, elems, not ) { var elem = elems[ 0 ]; if ( not ) { expr = ":not(" + expr + ")"; } return elems.length === 1 && elem.nodeType === 1 ? jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { return elem.nodeType === 1; } ) ); }; jQuery.fn.extend( { find: function( selector ) { var i, ret = [], self = this, len = self.length; if ( typeof selector !== "string" ) { return this.pushStack( jQuery( selector ).filter( function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } } ) ); } for ( i = 0; i < len; i++ ) { jQuery.find( selector, self[ i ], ret ); } // Needed because $( selector, context ) becomes $( context ).find( selector ) ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); ret.selector = this.selector ? this.selector + " " + selector : selector; return ret; }, filter: function( selector ) { return this.pushStack( winnow( this, selector || [], false ) ); }, not: function( selector ) { return this.pushStack( winnow( this, selector || [], true ) ); }, is: function( selector ) { return !!winnow( this, // If this is a positional/relative selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". typeof selector === "string" && rneedsContext.test( selector ) ? jQuery( selector ) : selector || [], false ).length; } } ); // Initialize a jQuery object // A central reference to the root jQuery(document) var rootjQuery, // A simple way to check for HTML strings // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, init = jQuery.fn.init = function( selector, context, root ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) if ( !selector ) { return this; } // init accepts an alternate rootjQuery // so migrate can support jQuery.sub (gh-2101) root = root || rootjQuery; // Handle HTML strings if ( typeof selector === "string" ) { if ( selector.charAt( 0 ) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; } else { match = rquickExpr.exec( selector ); } // Match html or make sure no context is specified for #id if ( match && ( match[ 1 ] || !context ) ) { // HANDLE: $(html) -> $(array) if ( match[ 1 ] ) { context = context instanceof jQuery ? context[ 0 ] : context; // scripts is true for back-compat // Intentionally let the error be thrown if parseHTML is not present jQuery.merge( this, jQuery.parseHTML( match[ 1 ], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { // Properties of context are called as methods if possible if ( jQuery.isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes } else { this.attr( match, context[ match ] ); } } } return this; // HANDLE: $(#id) } else { elem = document.getElementById( match[ 2 ] ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id !== match[ 2 ] ) { return rootjQuery.find( selector ); } // Otherwise, we inject the element directly into the jQuery object this.length = 1; this[ 0 ] = elem; } this.context = document; this.selector = selector; return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return ( context || root ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return this.constructor( context ).find( selector ); } // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { this.context = this[ 0 ] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return typeof root.ready !== "undefined" ? root.ready( selector ) : // Execute immediately if ready is not present selector( jQuery ); } if ( selector.selector !== undefined ) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }; // Give the init function the jQuery prototype for later instantiation init.prototype = jQuery.fn; // Initialize central reference rootjQuery = jQuery( document ); var rparentsprev = /^(?:parents|prev(?:Until|All))/, // methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.fn.extend( { has: function( target ) { var i, targets = jQuery( target, this ), len = targets.length; return this.filter( function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( this, targets[ i ] ) ) { return true; } } } ); }, closest: function( selectors, context ) { var cur, i = 0, l = this.length, matched = [], pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; for ( ; i < l; i++ ) { for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { // Always skip document fragments if ( cur.nodeType < 11 && ( pos ? pos.index( cur ) > -1 : // Don't pass non-elements to Sizzle cur.nodeType === 1 && jQuery.find.matchesSelector( cur, selectors ) ) ) { matched.push( cur ); break; } } } return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); }, // Determine the position of an element within // the matched set of elements index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; } // index in selector if ( typeof elem === "string" ) { return jQuery.inArray( this[ 0 ], jQuery( elem ) ); } // Locate the position of the desired element return jQuery.inArray( // If it receives a jQuery object, the first element is used elem.jquery ? elem[ 0 ] : elem, this ); }, add: function( selector, context ) { return this.pushStack( jQuery.uniqueSort( jQuery.merge( this.get(), jQuery( selector, context ) ) ) ); }, addBack: function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter( selector ) ); } } ); function sibling( cur, dir ) { do { cur = cur[ dir ]; } while ( cur && cur.nodeType !== 1 ); return cur; } jQuery.each( { parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); }, prev: function( elem ) { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { return dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return siblings( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { return siblings( elem.firstChild ); }, contents: function( elem ) { return jQuery.nodeName( elem, "iframe" ) ? elem.contentDocument || elem.contentWindow.document : jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ); if ( name.slice( -5 ) !== "Until" ) { selector = until; } if ( selector && typeof selector === "string" ) { ret = jQuery.filter( selector, ret ); } if ( this.length > 1 ) { // Remove duplicates if ( !guaranteedUnique[ name ] ) { ret = jQuery.uniqueSort( ret ); } // Reverse order for parents* and prev-derivatives if ( rparentsprev.test( name ) ) { ret = ret.reverse(); } } return this.pushStack( ret ); }; } ); var rnotwhite = ( /\S+/g ); // Convert String-formatted options into Object-formatted ones function createOptions( options ) { var object = {}; jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; } ); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? createOptions( options ) : jQuery.extend( {}, options ); var // Flag to know if list is currently firing firing, // Last fire value for non-forgettable lists memory, // Flag to know if list was already fired fired, // Flag to prevent firing locked, // Actual callback list list = [], // Queue of execution data for repeatable lists queue = [], // Index of currently firing callback (modified by add/remove as needed) firingIndex = -1, // Fire callbacks fire = function() { // Enforce single-firing locked = options.once; // Execute callbacks for all pending executions, // respecting firingIndex overrides and runtime changes fired = firing = true; for ( ; queue.length; firingIndex = -1 ) { memory = queue.shift(); while ( ++firingIndex < list.length ) { // Run callback and check for early termination if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && options.stopOnFalse ) { // Jump to end and forget the data so .add doesn't re-fire firingIndex = list.length; memory = false; } } } // Forget the data if we're done with it if ( !options.memory ) { memory = false; } firing = false; // Clean up if we're done firing for good if ( locked ) { // Keep an empty list if we have data for future add calls if ( memory ) { list = []; // Otherwise, this object is spent } else { list = ""; } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // If we have memory from a past run, we should fire after adding if ( memory && !firing ) { firingIndex = list.length - 1; queue.push( memory ); } ( function add( args ) { jQuery.each( args, function( _, arg ) { if ( jQuery.isFunction( arg ) ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && jQuery.type( arg ) !== "string" ) { // Inspect recursively add( arg ); } } ); } )( arguments ); if ( memory && !firing ) { fire(); } } return this; }, // Remove a callback from the list remove: function() { jQuery.each( arguments, function( _, arg ) { var index; while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( index <= firingIndex ) { firingIndex--; } } } ); return this; }, // Check if a given callback is in the list. // If no argument is given, return whether or not list has callbacks attached. has: function( fn ) { return fn ? jQuery.inArray( fn, list ) > -1 : list.length > 0; }, // Remove all callbacks from the list empty: function() { if ( list ) { list = []; } return this; }, // Disable .fire and .add // Abort any current/pending executions // Clear all callbacks and values disable: function() { locked = queue = []; list = memory = ""; return this; }, disabled: function() { return !list; }, // Disable .fire // Also disable .add unless we have memory (since it would have no effect) // Abort any pending executions lock: function() { locked = true; if ( !memory ) { self.disable(); } return this; }, locked: function() { return !!locked; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { if ( !locked ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; queue.push( args ); if ( !firing ) { fire(); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; jQuery.extend( { Deferred: function( func ) { var tuples = [ // action, add listener, listener list, final state [ "resolve", "done", jQuery.Callbacks( "once memory" ), "resolved" ], [ "reject", "fail", jQuery.Callbacks( "once memory" ), "rejected" ], [ "notify", "progress", jQuery.Callbacks( "memory" ) ] ], state = "pending", promise = { state: function() { return state; }, always: function() { deferred.done( arguments ).fail( arguments ); return this; }, then: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; return jQuery.Deferred( function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; // deferred[ done | fail | progress ] for forwarding actions to newDefer deferred[ tuple[ 1 ] ]( function() { var returned = fn && fn.apply( this, arguments ); if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise() .progress( newDefer.notify ) .done( newDefer.resolve ) .fail( newDefer.reject ); } else { newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); } } ); } ); fns = null; } ).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { return obj != null ? jQuery.extend( obj, promise ) : promise; } }, deferred = {}; // Keep pipe for back-compat promise.pipe = promise.then; // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], stateString = tuple[ 3 ]; // promise[ done | fail | progress ] = list.add promise[ tuple[ 1 ] ] = list.add; // Handle state if ( stateString ) { list.add( function() { // state = [ resolved | rejected ] state = stateString; // [ reject_list | resolve_list ].disable; progress_list.lock }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); } // deferred[ resolve | reject | notify ] deferred[ tuple[ 0 ] ] = function() { deferred[ tuple[ 0 ] + "With" ]( this === deferred ? promise : this, arguments ); return this; }; deferred[ tuple[ 0 ] + "With" ] = list.fireWith; } ); // Make the deferred a promise promise.promise( deferred ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( subordinate /* , ..., subordinateN */ ) { var i = 0, resolveValues = slice.call( arguments ), length = resolveValues.length, // the count of uncompleted subordinates remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, // the master Deferred. // If resolveValues consist of only a single Deferred, just use that. deferred = remaining === 1 ? subordinate : jQuery.Deferred(), // Update function for both resolve and progress values updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; if ( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !( --remaining ) ) { deferred.resolveWith( contexts, values ); } }; }, progressValues, progressContexts, resolveContexts; // add listeners to Deferred subordinates; treat others as resolved if ( length > 1 ) { progressValues = new Array( length ); progressContexts = new Array( length ); resolveContexts = new Array( length ); for ( ; i < length; i++ ) { if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { resolveValues[ i ].promise() .progress( updateFunc( i, progressContexts, progressValues ) ) .done( updateFunc( i, resolveContexts, resolveValues ) ) .fail( deferred.reject ); } else { --remaining; } } } // if we're not waiting on anything, resolve the master if ( !remaining ) { deferred.resolveWith( resolveContexts, resolveValues ); } return deferred.promise(); } } ); // The deferred used on DOM ready var readyList; jQuery.fn.ready = function( fn ) { // Add the callback jQuery.ready.promise().done( fn ); return this; }; jQuery.extend( { // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // A counter to track how many items to wait for before // the ready event fires. See #6781 readyWait: 1, // Hold (or release) the ready event holdReady: function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }, // Handle when the DOM is ready ready: function( wait ) { // Abort if there are pending holds or we're already ready if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { return; } // Remember that the DOM is ready jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be if ( wait !== true && --jQuery.readyWait > 0 ) { return; } // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); // Trigger any bound ready events if ( jQuery.fn.triggerHandler ) { jQuery( document ).triggerHandler( "ready" ); jQuery( document ).off( "ready" ); } } } ); /** * Clean-up method for dom ready events */ function detach() { if ( document.addEventListener ) { document.removeEventListener( "DOMContentLoaded", completed ); window.removeEventListener( "load", completed ); } else { document.detachEvent( "onreadystatechange", completed ); window.detachEvent( "onload", completed ); } } /** * The ready event handler and self cleanup method */ function completed() { // readyState === "complete" is good enough for us to call the dom ready in oldIE if ( document.addEventListener || window.event.type === "load" || document.readyState === "complete" ) { detach(); jQuery.ready(); } } jQuery.ready.promise = function( obj ) { if ( !readyList ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called // after the browser event has already occurred. // Support: IE6-10 // Older IE sometimes signals "interactive" too soon if ( document.readyState === "complete" || ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { // Handle it asynchronously to allow scripts the opportunity to delay ready window.setTimeout( jQuery.ready ); // Standards-based browsers support DOMContentLoaded } else if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", completed ); // A fallback to window.onload, that will always work window.addEventListener( "load", completed ); // If IE event model is used } else { // Ensure firing before onload, maybe late but safe also for iframes document.attachEvent( "onreadystatechange", completed ); // A fallback to window.onload, that will always work window.attachEvent( "onload", completed ); // If IE and not a frame // continually check to see if the document is ready var top = false; try { top = window.frameElement == null && document.documentElement; } catch ( e ) {} if ( top && top.doScroll ) { ( function doScrollCheck() { if ( !jQuery.isReady ) { try { // Use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ top.doScroll( "left" ); } catch ( e ) { return window.setTimeout( doScrollCheck, 50 ); } // detach all dom ready events detach(); // and execute any waiting functions jQuery.ready(); } } )(); } } } return readyList.promise( obj ); }; // Kick off the DOM ready check even if the user does not jQuery.ready.promise(); // Support: IE<9 // Iteration over object's inherited properties before its own var i; for ( i in jQuery( support ) ) { break; } support.ownFirst = i === "0"; // Note: most support tests are defined in their respective modules. // false until the test is run support.inlineBlockNeedsLayout = false; // Execute ASAP in case we need to set body.style.zoom jQuery( function() { // Minified: var a,b,c,d var val, div, body, container; body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body || !body.style ) { // Return for frameset docs that don't have a body return; } // Setup div = document.createElement( "div" ); container = document.createElement( "div" ); container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"; body.appendChild( container ).appendChild( div ); if ( typeof div.style.zoom !== "undefined" ) { // Support: IE<8 // Check if natively block-level elements act like inline-block // elements when setting their display to 'inline' and giving // them layout div.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1"; support.inlineBlockNeedsLayout = val = div.offsetWidth === 3; if ( val ) { // Prevent IE 6 from affecting layout for positioned elements #11048 // Prevent IE from shrinking the body in IE 7 mode #12869 // Support: IE<8 body.style.zoom = 1; } } body.removeChild( container ); } ); ( function() { var div = document.createElement( "div" ); // Support: IE<9 support.deleteExpando = true; try { delete div.test; } catch ( e ) { support.deleteExpando = false; } // Null elements to avoid leaks in IE. div = null; } )(); var acceptData = function( elem ) { var noData = jQuery.noData[ ( elem.nodeName + " " ).toLowerCase() ], nodeType = +elem.nodeType || 1; // Do not set data on non-element DOM nodes because it will not be cleared (#8335). return nodeType !== 1 && nodeType !== 9 ? false : // Nodes accept data unless otherwise specified; rejection can be conditional !noData || noData !== true && elem.getAttribute( "classid" ) === noData; }; var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, rmultiDash = /([A-Z])/g; function dataAttr( elem, key, data ) { // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { data = data === "true" ? true : data === "false" ? false : data === "null" ? null : // Only convert to a number if it doesn't change the string +data + "" === data ? +data : rbrace.test( data ) ? jQuery.parseJSON( data ) : data; } catch ( e ) {} // Make sure we set the data so it isn't changed later jQuery.data( elem, key, data ); } else { data = undefined; } } return data; } // checks a cache object for emptiness function isEmptyDataObject( obj ) { var name; for ( name in obj ) { // if the public data object is empty, the private is still empty if ( name === "data" && jQuery.isEmptyObject( obj[ name ] ) ) { continue; } if ( name !== "toJSON" ) { return false; } } return true; } function internalData( elem, name, data, pvt /* Internal Use Only */ ) { if ( !acceptData( elem ) ) { return; } var ret, thisCache, internalKey = jQuery.expando, // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary isNode = elem.nodeType, // Only DOM nodes need the global jQuery cache; JS object data is // attached directly to the object so GC can occur automatically cache = isNode ? jQuery.cache : elem, // Only defining an ID for JS objects if its cache already exists allows // the code to shortcut on the same path as a DOM node with no cache id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; // Avoid doing any more work than we need to when trying to get data on an // object that has no data at all if ( ( !id || !cache[ id ] || ( !pvt && !cache[ id ].data ) ) && data === undefined && typeof name === "string" ) { return; } if ( !id ) { // Only DOM nodes need a new unique ID for each element since their data // ends up in the global cache if ( isNode ) { id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++; } else { id = internalKey; } } if ( !cache[ id ] ) { // Avoid exposing jQuery metadata on plain JS objects when the object // is serialized using JSON.stringify cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; } // An object can be passed to jQuery.data instead of a key/value pair; this gets // shallow copied over onto the existing cache if ( typeof name === "object" || typeof name === "function" ) { if ( pvt ) { cache[ id ] = jQuery.extend( cache[ id ], name ); } else { cache[ id ].data = jQuery.extend( cache[ id ].data, name ); } } thisCache = cache[ id ]; // jQuery data() is stored in a separate object inside the object's internal data // cache in order to avoid key collisions between internal data and user-defined // data. if ( !pvt ) { if ( !thisCache.data ) { thisCache.data = {}; } thisCache = thisCache.data; } if ( data !== undefined ) { thisCache[ jQuery.camelCase( name ) ] = data; } // Check for both converted-to-camel and non-converted data property names // If a data property was specified if ( typeof name === "string" ) { // First Try to find as-is property data ret = thisCache[ name ]; // Test for null|undefined property data if ( ret == null ) { // Try to find the camelCased property ret = thisCache[ jQuery.camelCase( name ) ]; } } else { ret = thisCache; } return ret; } function internalRemoveData( elem, name, pvt ) { if ( !acceptData( elem ) ) { return; } var thisCache, i, isNode = elem.nodeType, // See jQuery.data for more information cache = isNode ? jQuery.cache : elem, id = isNode ? elem[ jQuery.expando ] : jQuery.expando; // If there is already no cache entry for this object, there is no // purpose in continuing if ( !cache[ id ] ) { return; } if ( name ) { thisCache = pvt ? cache[ id ] : cache[ id ].data; if ( thisCache ) { // Support array or space separated string names for data keys if ( !jQuery.isArray( name ) ) { // try the string as a key before any manipulation if ( name in thisCache ) { name = [ name ]; } else { // split the camel cased version by spaces unless a key with the spaces exists name = jQuery.camelCase( name ); if ( name in thisCache ) { name = [ name ]; } else { name = name.split( " " ); } } } else { // If "name" is an array of keys... // When data is initially created, via ("key", "val") signature, // keys will be converted to camelCase. // Since there is no way to tell _how_ a key was added, remove // both plain key and camelCase key. #12786 // This will only penalize the array argument path. name = name.concat( jQuery.map( name, jQuery.camelCase ) ); } i = name.length; while ( i-- ) { delete thisCache[ name[ i ] ]; } // If there is no data left in the cache, we want to continue // and let the cache object itself get destroyed if ( pvt ? !isEmptyDataObject( thisCache ) : !jQuery.isEmptyObject( thisCache ) ) { return; } } } // See jQuery.data for more information if ( !pvt ) { delete cache[ id ].data; // Don't destroy the parent cache unless the internal data object // had been the only thing left in it if ( !isEmptyDataObject( cache[ id ] ) ) { return; } } // Destroy the cache if ( isNode ) { jQuery.cleanData( [ elem ], true ); // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) /* jshint eqeqeq: false */ } else if ( support.deleteExpando || cache != cache.window ) { /* jshint eqeqeq: true */ delete cache[ id ]; // When all else fails, undefined } else { cache[ id ] = undefined; } } jQuery.extend( { cache: {}, // The following elements (space-suffixed to avoid Object.prototype collisions) // throw uncatchable exceptions if you attempt to set expando properties noData: { "applet ": true, "embed ": true, // ...but Flash objects (which have this classid) *can* handle expandos "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" }, hasData: function( elem ) { elem = elem.nodeType ? jQuery.cache[ elem[ jQuery.expando ] ] : elem[ jQuery.expando ]; return !!elem && !isEmptyDataObject( elem ); }, data: function( elem, name, data ) { return internalData( elem, name, data ); }, removeData: function( elem, name ) { return internalRemoveData( elem, name ); }, // For internal use only. _data: function( elem, name, data ) { return internalData( elem, name, data, true ); }, _removeData: function( elem, name ) { return internalRemoveData( elem, name, true ); } } ); jQuery.fn.extend( { data: function( key, value ) { var i, name, data, elem = this[ 0 ], attrs = elem && elem.attributes; // Special expections of .data basically thwart jQuery.access, // so implement the relevant behavior ourselves // Gets all values if ( key === undefined ) { if ( this.length ) { data = jQuery.data( elem ); if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { i = attrs.length; while ( i-- ) { // Support: IE11+ // The attrs elements can be null (#14894) if ( attrs[ i ] ) { name = attrs[ i ].name; if ( name.indexOf( "data-" ) === 0 ) { name = jQuery.camelCase( name.slice( 5 ) ); dataAttr( elem, name, data[ name ] ); } } } jQuery._data( elem, "parsedAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each( function() { jQuery.data( this, key ); } ); } return arguments.length > 1 ? // Sets one value this.each( function() { jQuery.data( this, key, value ); } ) : // Gets one value // Try to fetch any internally stored data first elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined; }, removeData: function( key ) { return this.each( function() { jQuery.removeData( this, key ); } ); } } ); jQuery.extend( { queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = jQuery._data( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || jQuery.isArray( data ) ) { queue = jQuery._data( elem, type, jQuery.makeArray( data ) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // not intended for public consumption - generates a queueHooks object, // or returns the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return jQuery._data( elem, key ) || jQuery._data( elem, key, { empty: jQuery.Callbacks( "once memory" ).add( function() { jQuery._removeData( elem, type + "queue" ); jQuery._removeData( elem, key ); } ) } ); } } ); jQuery.fn.extend( { queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[ 0 ], type ); } return data === undefined ? this : this.each( function() { var queue = jQuery.queue( this, type, data ); // ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { jQuery.dequeue( this, type ); } } ); }, dequeue: function( type ) { return this.each( function() { jQuery.dequeue( this, type ); } ); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while ( i-- ) { tmp = jQuery._data( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } } ); ( function() { var shrinkWrapBlocksVal; support.shrinkWrapBlocks = function() { if ( shrinkWrapBlocksVal != null ) { return shrinkWrapBlocksVal; } // Will be changed later if needed. shrinkWrapBlocksVal = false; // Minified: var b,c,d var div, body, container; body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body || !body.style ) { // Test fired too early or in an unsupported environment, exit. return; } // Setup div = document.createElement( "div" ); container = document.createElement( "div" ); container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"; body.appendChild( container ).appendChild( div ); // Support: IE6 // Check if elements with layout shrink-wrap their children if ( typeof div.style.zoom !== "undefined" ) { // Reset CSS: box-sizing; display; margin; border div.style.cssText = // Support: Firefox<29, Android 2.3 // Vendor-prefix box-sizing "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" + "box-sizing:content-box;display:block;margin:0;border:0;" + "padding:1px;width:1px;zoom:1"; div.appendChild( document.createElement( "div" ) ).style.width = "5px"; shrinkWrapBlocksVal = div.offsetWidth !== 3; } body.removeChild( container ); return shrinkWrapBlocksVal; }; } )(); var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; var isHidden = function( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); }; function adjustCSS( elem, prop, valueParts, tween ) { var adjusted, scale = 1, maxIterations = 20, currentValue = tween ? function() { return tween.cur(); } : function() { return jQuery.css( elem, prop, "" ); }, initial = currentValue(), unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), // Starting value computation is required for potential unit mismatches initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && rcssNum.exec( jQuery.css( elem, prop ) ); if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { // Trust units reported by jQuery.css unit = unit || initialInUnit[ 3 ]; // Make sure we update the tween properties later on valueParts = valueParts || []; // Iteratively approximate from a nonzero starting point initialInUnit = +initial || 1; do { // If previous iteration zeroed out, double until we get *something*. // Use string for doubling so we don't accidentally see scale as unchanged below scale = scale || ".5"; // Adjust and apply initialInUnit = initialInUnit / scale; jQuery.style( elem, prop, initialInUnit + unit ); // Update scale, tolerating zero or NaN from tween.cur() // Break the loop if scale is unchanged or perfect, or if we've just had enough. } while ( scale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations ); } if ( valueParts ) { initialInUnit = +initialInUnit || +initial || 0; // Apply relative offset (+=/-=) if specified adjusted = valueParts[ 1 ] ? initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : +valueParts[ 2 ]; if ( tween ) { tween.unit = unit; tween.start = initialInUnit; tween.end = adjusted; } } return adjusted; } // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, length = elems.length, bulk = key == null; // Sets many values if ( jQuery.type( key ) === "object" ) { chainable = true; for ( i in key ) { access( elems, fn, i, key[ i ], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; if ( !jQuery.isFunction( value ) ) { raw = true; } if ( bulk ) { // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); fn = null; // ...except when executing function values } else { bulk = fn; fn = function( elem, key, value ) { return bulk.call( jQuery( elem ), value ); }; } } if ( fn ) { for ( ; i < length; i++ ) { fn( elems[ i ], key, raw ? value : value.call( elems[ i ], i, fn( elems[ i ], key ) ) ); } } } return chainable ? elems : // Gets bulk ? fn.call( elems ) : length ? fn( elems[ 0 ], key ) : emptyGet; }; var rcheckableType = ( /^(?:checkbox|radio)$/i ); var rtagName = ( /<([\w:-]+)/ ); var rscriptType = ( /^$|\/(?:java|ecma)script/i ); var rleadingWhitespace = ( /^\s+/ ); var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|" + "details|dialog|figcaption|figure|footer|header|hgroup|main|" + "mark|meter|nav|output|picture|progress|section|summary|template|time|video"; function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; } ( function() { var div = document.createElement( "div" ), fragment = document.createDocumentFragment(), input = document.createElement( "input" ); // Setup div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; // IE strips leading whitespace when .innerHTML is used support.leadingWhitespace = div.firstChild.nodeType === 3; // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables support.tbody = !div.getElementsByTagName( "tbody" ).length; // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE support.htmlSerialize = !!div.getElementsByTagName( "link" ).length; // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works support.html5Clone = document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav></:nav>"; // Check if a disconnected checkbox will retain its checked // value of true after appended to the DOM (IE6/7) input.type = "checkbox"; input.checked = true; fragment.appendChild( input ); support.appendChecked = input.checked; // Make sure textarea (and checkbox) defaultValue is properly cloned // Support: IE6-IE11+ div.innerHTML = "<textarea>x</textarea>"; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; // #11217 - WebKit loses check when the name is after the checked attribute fragment.appendChild( div ); // Support: Windows Web Apps (WWA) // `name` and `type` must use .setAttribute for WWA (#14901) input = document.createElement( "input" ); input.setAttribute( "type", "radio" ); input.setAttribute( "checked", "checked" ); input.setAttribute( "name", "t" ); div.appendChild( input ); // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3 // old WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; // Support: IE<9 // Cloned elements keep attachEvent handlers, we use addEventListener on IE9+ support.noCloneEvent = !!div.addEventListener; // Support: IE<9 // Since attributes and properties are the same in IE, // cleanData must set properties to undefined rather than use removeAttribute div[ jQuery.expando ] = 1; support.attributes = !div.getAttribute( jQuery.expando ); } )(); // We have to close these tags to support XHTML (#13200) var wrapMap = { option: [ 1, "<select multiple='multiple'>", "</select>" ], legend: [ 1, "<fieldset>", "</fieldset>" ], area: [ 1, "<map>", "</map>" ], // Support: IE8 param: [ 1, "<object>", "</object>" ], thead: [ 1, "<table>", "</table>" ], tr: [ 2, "<table><tbody>", "</tbody></table>" ], col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, // unless wrapped in a div with non-breaking characters in front of it. _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ] }; // Support: IE8-IE9 wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; function getAll( context, tag ) { var elems, elem, i = 0, found = typeof context.getElementsByTagName !== "undefined" ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== "undefined" ? context.querySelectorAll( tag || "*" ) : undefined; if ( !found ) { for ( found = [], elems = context.childNodes || context; ( elem = elems[ i ] ) != null; i++ ) { if ( !tag || jQuery.nodeName( elem, tag ) ) { found.push( elem ); } else { jQuery.merge( found, getAll( elem, tag ) ); } } } return tag === undefined || tag && jQuery.nodeName( context, tag ) ? jQuery.merge( [ context ], found ) : found; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var elem, i = 0; for ( ; ( elem = elems[ i ] ) != null; i++ ) { jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[ i ], "globalEval" ) ); } } var rhtml = /<|&#?\w+;/, rtbody = /<tbody/i; function fixDefaultChecked( elem ) { if ( rcheckableType.test( elem.type ) ) { elem.defaultChecked = elem.checked; } } function buildFragment( elems, context, scripts, selection, ignored ) { var j, elem, contains, tmp, tag, tbody, wrap, l = elems.length, // Ensure a safe fragment safe = createSafeFragment( context ), nodes = [], i = 0; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( jQuery.type( elem ) === "object" ) { jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || safe.appendChild( context.createElement( "div" ) ); // Deserialize a standard representation tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; // Descend through wrappers to the right content j = wrap[ 0 ]; while ( j-- ) { tmp = tmp.lastChild; } // Manually add leading whitespace removed by IE if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[ 0 ] ) ); } // Remove IE's autoinserted <tbody> from table fragments if ( !support.tbody ) { // String was a <table>, *may* have spurious <tbody> elem = tag === "table" && !rtbody.test( elem ) ? tmp.firstChild : // String was a bare <thead> or <tfoot> wrap[ 1 ] === "<table>" && !rtbody.test( elem ) ? tmp : 0; j = elem && elem.childNodes.length; while ( j-- ) { if ( jQuery.nodeName( ( tbody = elem.childNodes[ j ] ), "tbody" ) && !tbody.childNodes.length ) { elem.removeChild( tbody ); } } } jQuery.merge( nodes, tmp.childNodes ); // Fix #12392 for WebKit and IE > 9 tmp.textContent = ""; // Fix #12392 for oldIE while ( tmp.firstChild ) { tmp.removeChild( tmp.firstChild ); } // Remember the top-level container for proper cleanup tmp = safe.lastChild; } } } // Fix #11356: Clear elements from fragment if ( tmp ) { safe.removeChild( tmp ); } // Reset defaultChecked for any radios and checkboxes // about to be appended to the DOM in IE 6/7 (#8060) if ( !support.appendChecked ) { jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); } i = 0; while ( ( elem = nodes[ i++ ] ) ) { // Skip elements already in the context collection (trac-4087) if ( selection && jQuery.inArray( elem, selection ) > -1 ) { if ( ignored ) { ignored.push( elem ); } continue; } contains = jQuery.contains( elem.ownerDocument, elem ); // Append to fragment tmp = getAll( safe.appendChild( elem ), "script" ); // Preserve script evaluation history if ( contains ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( ( elem = tmp[ j++ ] ) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } tmp = null; return safe; } ( function() { var i, eventName, div = document.createElement( "div" ); // Support: IE<9 (lack submit/change bubble), Firefox (lack focus(in | out) events) for ( i in { submit: true, change: true, focusin: true } ) { eventName = "on" + i; if ( !( support[ i ] = eventName in window ) ) { // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) div.setAttribute( eventName, "t" ); support[ i ] = div.attributes[ eventName ].expando === false; } } // Null elements to avoid leaks in IE. div = null; } )(); var rformElems = /^(?:input|select|textarea)$/i, rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, rtypenamespace = /^([^.]*)(?:\.(.+)|)/; function returnTrue() { return true; } function returnFalse() { return false; } // Support: IE9 // See #13393 for more info function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } } function on( elem, types, selector, data, fn, one ) { var origFn, type; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { on( elem, type, selector, data, types[ type ], one ); } return elem; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return elem; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return elem.each( function() { jQuery.event.add( this, types, fn, data, selector ); } ); } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var tmp, events, t, handleObjIn, special, eventHandle, handleObj, handlers, type, namespaces, origType, elemData = jQuery._data( elem ); // Don't attach events to noData or text/comment nodes (but allow plain objects) if ( !elemData ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !( events = elemData.events ) ) { events = elemData.events = {}; } if ( !( eventHandle = elemData.handle ) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== "undefined" && ( !e || jQuery.event.triggered !== e.type ) ? jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : undefined; }; // Add elem as a property of the handle fn to prevent a memory leak // with IE non-native events eventHandle.elem = elem; } // Handle multiple events separated by a space types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // There *must* be a type, no attaching namespace-only handlers if ( !type ) { continue; } // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend( { type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join( "." ) }, handleObjIn ); // Init the event handler queue if we're the first if ( !( handlers = events[ type ] ) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener/attachEvent if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle, false ); } else if ( elem.attachEvent ) { elem.attachEvent( "on" + type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } // Nullify elem to prevent memory leaks in IE elem = null; }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, handleObj, tmp, origCount, t, events, special, handlers, type, namespaces, origType, elemData = jQuery.hasData( elem ) && jQuery._data( elem ); if ( !elemData || !( events = elemData.events ) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[ 2 ] && new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { delete elemData.handle; // removeData also checks for emptiness and clears the expando if empty // so use it instead of delete jQuery._removeData( elem, "events" ); } }, trigger: function( event, data, elem, onlyHandlers ) { var handle, ontype, cur, bubbleType, special, tmp, i, eventPath = [ elem || document ], type = hasOwn.call( event, "type" ) ? event.type : event, namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; cur = tmp = elem = elem || document; // Don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // focus/blur morphs to focusin/out; ensure we're not firing them right now if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { return; } if ( type.indexOf( "." ) > -1 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split( "." ); type = namespaces.shift(); namespaces.sort(); } ontype = type.indexOf( ":" ) < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string event = event[ jQuery.expando ] ? event : new jQuery.Event( type, typeof event === "object" && event ); // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) event.isTrigger = onlyHandlers ? 2 : 3; event.namespace = namespaces.join( "." ); event.rnamespace = event.namespace ? new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : null; // Clean up the event in case it is being reused event.result = undefined; if ( !event.target ) { event.target = elem; } // Clone any incoming data and prepend the event, creating the handler arg list data = data == null ? [ event ] : jQuery.makeArray( data, [ event ] ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { return; } // Determine event propagation path in advance, per W3C events spec (#9951) // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { bubbleType = special.delegateType || type; if ( !rfocusMorph.test( bubbleType + type ) ) { cur = cur.parentNode; } for ( ; cur; cur = cur.parentNode ) { eventPath.push( cur ); tmp = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( tmp === ( elem.ownerDocument || document ) ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window ); } } // Fire handlers on the event path i = 0; while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Native handler handle = ontype && cur[ ontype ]; if ( handle && handle.apply && acceptData( cur ) ) { event.result = handle.apply( cur, data ); if ( event.result === false ) { event.preventDefault(); } } } event.type = type; // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { if ( ( !special._default || special._default.apply( eventPath.pop(), data ) === false ) && acceptData( elem ) ) { // Call a native DOM method on the target with the same name name as the event. // Can't use an .isFunction() check here because IE6/7 fails that test. // Don't do default actions on window, that's where global variables be (#6170) if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method tmp = elem[ ontype ]; if ( tmp ) { elem[ ontype ] = null; } // Prevent re-triggering of the same event, since we already bubbled it above jQuery.event.triggered = type; try { elem[ type ](); } catch ( e ) { // IE<9 dies on focus/blur to hidden element (#1486,#12518) // only reproducible on winXP IE8 native, not IE9 in IE8 mode } jQuery.event.triggered = undefined; if ( tmp ) { elem[ ontype ] = tmp; } } } } return event.result; }, dispatch: function( event ) { // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( event ); var i, j, ret, matched, handleObj, handlerQueue = [], args = slice.call( arguments ), handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[ 0 ] = event; event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( ( handleObj = matched.handlers[ j++ ] ) && !event.isImmediatePropagationStopped() ) { // Triggered event must either 1) have no namespace, or 2) have namespace(s) // a subset or equal to those in the bound event (both can have no namespace). if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || handleObj.handler ).apply( matched.elem, args ); if ( ret !== undefined ) { if ( ( event.result = ret ) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var i, matches, sel, handleObj, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Support (at least): Chrome, IE9 // Find delegate handlers // Black-hole SVG <use> instance trees (#13180) // // Support: Firefox<=42+ // Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343) if ( delegateCount && cur.nodeType && ( event.type !== "click" || isNaN( event.button ) || event.button < 1 ) ) { /* jshint eqeqeq: false */ for ( ; cur != this; cur = cur.parentNode || this ) { /* jshint eqeqeq: true */ // Don't check non-elements (#13208) // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== "click" ) ) { matches = []; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matches[ sel ] === undefined ) { matches[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) > -1 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matches[ sel ] ) { matches.push( handleObj ); } } if ( matches.length ) { handlerQueue.push( { elem: cur, handlers: matches } ); } } } } // Add the remaining (directly-bound) handlers if ( delegateCount < handlers.length ) { handlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } ); } return handlerQueue; }, fix: function( event ) { if ( event[ jQuery.expando ] ) { return event; } // Create a writable copy of the event object and normalize some properties var i, prop, copy, type = event.type, originalEvent = event, fixHook = this.fixHooks[ type ]; if ( !fixHook ) { this.fixHooks[ type ] = fixHook = rmouseEvent.test( type ) ? this.mouseHooks : rkeyEvent.test( type ) ? this.keyHooks : {}; } copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; event = new jQuery.Event( originalEvent ); i = copy.length; while ( i-- ) { prop = copy[ i ]; event[ prop ] = originalEvent[ prop ]; } // Support: IE<9 // Fix target property (#1925) if ( !event.target ) { event.target = originalEvent.srcElement || document; } // Support: Safari 6-8+ // Target should not be a text node (#504, #13143) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } // Support: IE<9 // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) event.metaKey = !!event.metaKey; return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }, // Includes some event props shared by KeyEvent and MouseEvent props: ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " + "metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ), fixHooks: {}, keyHooks: { props: "char charCode key keyCode".split( " " ), filter: function( event, original ) { // Add which for key events if ( event.which == null ) { event.which = original.charCode != null ? original.charCode : original.keyCode; } return event; } }, mouseHooks: { props: ( "button buttons clientX clientY fromElement offsetX offsetY " + "pageX pageY screenX screenY toElement" ).split( " " ), filter: function( event, original ) { var body, eventDoc, doc, button = original.button, fromElement = original.fromElement; // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null && original.clientX != null ) { eventDoc = event.target.ownerDocument || document; doc = eventDoc.documentElement; body = eventDoc.body; event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); } // Add relatedTarget, if necessary if ( !event.relatedTarget && fromElement ) { event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; } // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && button !== undefined ) { event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); } return event; } }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, focus: { // Fire native event if possible so blur/focus sequence is correct trigger: function() { if ( this !== safeActiveElement() && this.focus ) { try { this.focus(); return false; } catch ( e ) { // Support: IE<9 // If we error on focus to hidden element (#1486, #12518), // let .trigger() run the handlers } } }, delegateType: "focusin" }, blur: { trigger: function() { if ( this === safeActiveElement() && this.blur ) { this.blur(); return false; } }, delegateType: "focusout" }, click: { // For checkbox, fire native event so checked state will be right trigger: function() { if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { this.click(); return false; } }, // For cross-browser consistency, don't fire native .click() on links _default: function( event ) { return jQuery.nodeName( event.target, "a" ); } }, beforeunload: { postDispatch: function( event ) { // Support: Firefox 20+ // Firefox doesn't alert if the returnValue field is not set. if ( event.result !== undefined && event.originalEvent ) { event.originalEvent.returnValue = event.result; } } } }, // Piggyback on a donor event to simulate a different one simulate: function( type, elem, event ) { var e = jQuery.extend( new jQuery.Event(), event, { type: type, isSimulated: true // Previously, `originalEvent: {}` was set here, so stopPropagation call // would not be triggered on donor event, since in our own // jQuery.event.stopPropagation function we had a check for existence of // originalEvent.stopPropagation method, so, consequently it would be a noop. // // Guard for simulated events was moved to jQuery.event.stopPropagation function // since `originalEvent` should point to the original event for the // constancy with other events and for more focused logic } ); jQuery.event.trigger( e, null, elem ); if ( e.isDefaultPrevented() ) { event.preventDefault(); } } }; jQuery.removeEvent = document.removeEventListener ? function( elem, type, handle ) { // This "if" is needed for plain objects if ( elem.removeEventListener ) { elem.removeEventListener( type, handle ); } } : function( elem, type, handle ) { var name = "on" + type; if ( elem.detachEvent ) { // #8545, #7054, preventing memory leaks for custom events in IE6-8 // detachEvent needed property on element, by name of that event, // to properly expose it to GC if ( typeof elem[ name ] === "undefined" ) { elem[ name ] = null; } elem.detachEvent( name, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !( this instanceof jQuery.Event ) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && // Support: IE < 9, Android < 4.0 src.returnValue === false ? returnTrue : returnFalse; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || jQuery.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { constructor: jQuery.Event, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( !e ) { return; } // If preventDefault exists, run it on the original event if ( e.preventDefault ) { e.preventDefault(); // Support: IE // Otherwise set the returnValue property of the original event to false } else { e.returnValue = false; } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( !e || this.isSimulated ) { return; } // If stopPropagation exists, run it on the original event if ( e.stopPropagation ) { e.stopPropagation(); } // Support: IE // Set the cancelBubble property of the original event to true e.cancelBubble = true; }, stopImmediatePropagation: function() { var e = this.originalEvent; this.isImmediatePropagationStopped = returnTrue; if ( e && e.stopImmediatePropagation ) { e.stopImmediatePropagation(); } this.stopPropagation(); } }; // Create mouseenter/leave events using mouseover/out and event-time checks // so that event delegation works in jQuery. // Do the same for pointerenter/pointerleave and pointerover/pointerout // // Support: Safari 7 only // Safari sends mouseenter too often; see: // https://code.google.com/p/chromium/issues/detail?id=470258 // for the description of the bug (it existed in older Chrome versions as well). jQuery.each( { mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", pointerleave: "pointerout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mouseenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; } ); // IE submit delegation if ( !support.submit ) { jQuery.event.special.submit = { setup: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Lazy-add a submit handler when a descendant form may potentially be submitted jQuery.event.add( this, "click._submit keypress._submit", function( e ) { // Node name check avoids a VML-related crash in IE (#9807) var elem = e.target, form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? // Support: IE <=8 // We use jQuery.prop instead of elem.form // to allow fixing the IE8 delegated submit issue (gh-2332) // by 3rd party polyfills/workarounds. jQuery.prop( elem, "form" ) : undefined; if ( form && !jQuery._data( form, "submit" ) ) { jQuery.event.add( form, "submit._submit", function( event ) { event._submitBubble = true; } ); jQuery._data( form, "submit", true ); } } ); // return undefined since we don't need an event listener }, postDispatch: function( event ) { // If form was submitted by the user, bubble the event up the tree if ( event._submitBubble ) { delete event._submitBubble; if ( this.parentNode && !event.isTrigger ) { jQuery.event.simulate( "submit", this.parentNode, event ); } } }, teardown: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Remove delegated handlers; cleanData eventually reaps submit handlers attached above jQuery.event.remove( this, "._submit" ); } }; } // IE change delegation and checkbox/radio fix if ( !support.change ) { jQuery.event.special.change = { setup: function() { if ( rformElems.test( this.nodeName ) ) { // IE doesn't fire change on a check/radio until blur; trigger it on click // after a propertychange. Eat the blur-change in special.change.handle. // This still fires onchange a second time for check/radio after blur. if ( this.type === "checkbox" || this.type === "radio" ) { jQuery.event.add( this, "propertychange._change", function( event ) { if ( event.originalEvent.propertyName === "checked" ) { this._justChanged = true; } } ); jQuery.event.add( this, "click._change", function( event ) { if ( this._justChanged && !event.isTrigger ) { this._justChanged = false; } // Allow triggered, simulated change events (#11500) jQuery.event.simulate( "change", this, event ); } ); } return false; } // Delegated event; lazy-add a change handler on descendant inputs jQuery.event.add( this, "beforeactivate._change", function( e ) { var elem = e.target; if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "change" ) ) { jQuery.event.add( elem, "change._change", function( event ) { if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { jQuery.event.simulate( "change", this.parentNode, event ); } } ); jQuery._data( elem, "change", true ); } } ); }, handle: function( event ) { var elem = event.target; // Swallow native change events from checkbox/radio, we already triggered them above if ( this !== elem || event.isSimulated || event.isTrigger || ( elem.type !== "radio" && elem.type !== "checkbox" ) ) { return event.handleObj.handler.apply( this, arguments ); } }, teardown: function() { jQuery.event.remove( this, "._change" ); return !rformElems.test( this.nodeName ); } }; } // Support: Firefox // Firefox doesn't have focus(in | out) events // Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 // // Support: Chrome, Safari // focus(in | out) events fire after focus & blur events, // which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order // Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857 if ( !support.focusin ) { jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler on the document while someone wants focusin/focusout var handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); }; jQuery.event.special[ fix ] = { setup: function() { var doc = this.ownerDocument || this, attaches = jQuery._data( doc, fix ); if ( !attaches ) { doc.addEventListener( orig, handler, true ); } jQuery._data( doc, fix, ( attaches || 0 ) + 1 ); }, teardown: function() { var doc = this.ownerDocument || this, attaches = jQuery._data( doc, fix ) - 1; if ( !attaches ) { doc.removeEventListener( orig, handler, true ); jQuery._removeData( doc, fix ); } else { jQuery._data( doc, fix, attaches ); } } }; } ); } jQuery.fn.extend( { on: function( types, selector, data, fn ) { return on( this, types, selector, data, fn ); }, one: function( types, selector, data, fn ) { return on( this, types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each( function() { jQuery.event.remove( this, types, fn, selector ); } ); }, trigger: function( type, data ) { return this.each( function() { jQuery.event.trigger( type, data, this ); } ); }, triggerHandler: function( type, data ) { var elem = this[ 0 ]; if ( elem ) { return jQuery.event.trigger( type, data, elem, true ); } } } ); var rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, rnoshimcache = new RegExp( "<(?:" + nodeNames + ")[\\s/>]", "i" ), rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi, // Support: IE 10-11, Edge 10240+ // In IE/Edge using regex groups here causes severe slowdowns. // See https://connect.microsoft.com/IE/feedback/details/1736512/ rnoInnerhtml = /<script|<style|<link/i, // checked="checked" or checked rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, rscriptTypeMasked = /^true\/(.*)/, rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g, safeFragment = createSafeFragment( document ), fragmentDiv = safeFragment.appendChild( document.createElement( "div" ) ); // Support: IE<8 // Manipulating tables requires a tbody function manipulationTarget( elem, content ) { return jQuery.nodeName( elem, "table" ) && jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? elem.getElementsByTagName( "tbody" )[ 0 ] || elem.appendChild( elem.ownerDocument.createElement( "tbody" ) ) : elem; } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { elem.type = ( jQuery.find.attr( elem, "type" ) !== null ) + "/" + elem.type; return elem; } function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[ 1 ]; } else { elem.removeAttribute( "type" ); } return elem; } function cloneCopyEvent( src, dest ) { if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { return; } var type, i, l, oldData = jQuery._data( src ), curData = jQuery._data( dest, oldData ), events = oldData.events; if ( events ) { delete curData.handle; curData.events = {}; for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } // make the cloned public data object a copy from the original if ( curData.data ) { curData.data = jQuery.extend( {}, curData.data ); } } function fixCloneNodeIssues( src, dest ) { var nodeName, e, data; // We do not need to do anything for non-Elements if ( dest.nodeType !== 1 ) { return; } nodeName = dest.nodeName.toLowerCase(); // IE6-8 copies events bound via attachEvent when using cloneNode. if ( !support.noCloneEvent && dest[ jQuery.expando ] ) { data = jQuery._data( dest ); for ( e in data.events ) { jQuery.removeEvent( dest, e, data.handle ); } // Event data gets referenced instead of copied if the expando gets copied too dest.removeAttribute( jQuery.expando ); } // IE blanks contents when cloning scripts, and tries to evaluate newly-set text if ( nodeName === "script" && dest.text !== src.text ) { disableScript( dest ).text = src.text; restoreScript( dest ); // IE6-10 improperly clones children of object elements using classid. // IE10 throws NoModificationAllowedError if parent is null, #12132. } else if ( nodeName === "object" ) { if ( dest.parentNode ) { dest.outerHTML = src.outerHTML; } // This path appears unavoidable for IE9. When cloning an object // element in IE9, the outerHTML strategy above is not sufficient. // If the src has innerHTML and the destination does not, // copy the src.innerHTML into the dest.innerHTML. #10324 if ( support.html5Clone && ( src.innerHTML && !jQuery.trim( dest.innerHTML ) ) ) { dest.innerHTML = src.innerHTML; } } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button. Worse, IE6-7 fail to give the cloned element // a checked appearance if the defaultChecked value isn't also set dest.defaultChecked = dest.checked = src.checked; // IE6-7 get confused and end up setting the value of a cloned // checkbox/radio button to an empty string instead of "on" if ( dest.value !== src.value ) { dest.value = src.value; } // IE6-8 fails to return the selected option to the default selected // state when cloning options } else if ( nodeName === "option" ) { dest.defaultSelected = dest.selected = src.defaultSelected; // IE6-8 fails to set the defaultValue to the correct value when // cloning other types of input fields } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } function domManip( collection, args, callback, ignored ) { // Flatten any nested arrays args = concat.apply( [], args ); var first, node, hasScripts, scripts, doc, fragment, i = 0, l = collection.length, iNoClone = l - 1, value = args[ 0 ], isFunction = jQuery.isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( isFunction || ( l > 1 && typeof value === "string" && !support.checkClone && rchecked.test( value ) ) ) { return collection.each( function( index ) { var self = collection.eq( index ); if ( isFunction ) { args[ 0 ] = value.call( this, index, self.html() ); } domManip( self, args, callback, ignored ); } ); } if ( l ) { fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } // Require either new content or an interest in ignored elements to invoke the callback if ( first || ignored ) { scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item // instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { // Support: Android<4.1, PhantomJS<2 // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( collection[ i ], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src ) { // Optional AJAX dependency, but won't run scripts if not present if ( jQuery._evalUrl ) { jQuery._evalUrl( node.src ); } } else { jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ) .replace( rcleanScript, "" ) ); } } } } // Fix #11809: Avoid leaking memory fragment = first = null; } } return collection; } function remove( elem, selector, keepData ) { var node, elems = selector ? jQuery.filter( selector, elem ) : elem, i = 0; for ( ; ( node = elems[ i ] ) != null; i++ ) { if ( !keepData && node.nodeType === 1 ) { jQuery.cleanData( getAll( node ) ); } if ( node.parentNode ) { if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { setGlobalEval( getAll( node, "script" ) ); } node.parentNode.removeChild( node ); } } return elem; } jQuery.extend( { htmlPrefilter: function( html ) { return html.replace( rxhtmlTag, "<$1></$2>" ); }, clone: function( elem, dataAndEvents, deepDataAndEvents ) { var destElements, node, clone, i, srcElements, inPage = jQuery.contains( elem.ownerDocument, elem ); if ( support.html5Clone || jQuery.isXMLDoc( elem ) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { clone = elem.cloneNode( true ); // IE<=8 does not properly clone detached, unknown element nodes } else { fragmentDiv.innerHTML = elem.outerHTML; fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); } if ( ( !support.noCloneEvent || !support.noCloneChecked ) && ( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) { // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); // Fix all IE cloning issues for ( i = 0; ( node = srcElements[ i ] ) != null; ++i ) { // Ensure that the destination node is not null; Fixes #9587 if ( destElements[ i ] ) { fixCloneNodeIssues( node, destElements[ i ] ); } } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0; ( node = srcElements[ i ] ) != null; i++ ) { cloneCopyEvent( node, destElements[ i ] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } destElements = srcElements = node = null; // Return the cloned set return clone; }, cleanData: function( elems, /* internal */ forceAcceptData ) { var elem, type, id, data, i = 0, internalKey = jQuery.expando, cache = jQuery.cache, attributes = support.attributes, special = jQuery.event.special; for ( ; ( elem = elems[ i ] ) != null; i++ ) { if ( forceAcceptData || acceptData( elem ) ) { id = elem[ internalKey ]; data = id && cache[ id ]; if ( data ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Remove cache only if it was not already removed by jQuery.event.remove if ( cache[ id ] ) { delete cache[ id ]; // Support: IE<9 // IE does not allow us to delete expando properties from nodes // IE creates expando attributes along with the property // IE does not have a removeAttribute function on Document nodes if ( !attributes && typeof elem.removeAttribute !== "undefined" ) { elem.removeAttribute( internalKey ); // Webkit & Blink performance suffers when deleting properties // from DOM nodes, so set to undefined instead // https://code.google.com/p/chromium/issues/detail?id=378607 } else { elem[ internalKey ] = undefined; } deletedIds.push( id ); } } } } } } ); jQuery.fn.extend( { // Keep domManip exposed until 3.0 (gh-2225) domManip: domManip, detach: function( selector ) { return remove( this, selector, true ); }, remove: function( selector ) { return remove( this, selector ); }, text: function( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().append( ( this[ 0 ] && this[ 0 ].ownerDocument || document ).createTextNode( value ) ); }, null, value, arguments.length ); }, append: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.appendChild( elem ); } } ); }, prepend: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.insertBefore( elem, target.firstChild ); } } ); }, before: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } } ); }, after: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } } ); }, empty: function() { var elem, i = 0; for ( ; ( elem = this[ i ] ) != null; i++ ) { // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); } // Remove any remaining nodes while ( elem.firstChild ) { elem.removeChild( elem.firstChild ); } // If this is a select, ensure that it displays empty (#12336) // Support: IE<9 if ( elem.options && jQuery.nodeName( elem, "select" ) ) { elem.options.length = 0; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map( function() { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); } ); }, html: function( value ) { return access( this, function( value ) { var elem = this[ 0 ] || {}, i = 0, l = this.length; if ( value === undefined ) { return elem.nodeType === 1 ? elem.innerHTML.replace( rinlinejQuery, "" ) : undefined; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && ( support.htmlSerialize || !rnoshimcache.test( value ) ) && ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { value = jQuery.htmlPrefilter( value ); try { for ( ; i < l; i++ ) { // Remove element nodes and prevent memory leaks elem = this[ i ] || {}; if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch ( e ) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function() { var ignored = []; // Make the changes, replacing each non-ignored context element with the new content return domManip( this, arguments, function( elem ) { var parent = this.parentNode; if ( jQuery.inArray( this, ignored ) < 0 ) { jQuery.cleanData( getAll( this ) ); if ( parent ) { parent.replaceChild( elem, this ); } } // Force callback invocation }, ignored ); } } ); jQuery.each( { appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, i = 0, ret = [], insert = jQuery( selector ), last = insert.length - 1; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone( true ); jQuery( insert[ i ] )[ original ]( elems ); // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; } ); var iframe, elemdisplay = { // Support: Firefox // We have to pre-define these values for FF (#10227) HTML: "block", BODY: "block" }; /** * Retrieve the actual display of a element * @param {String} name nodeName of the element * @param {Object} doc Document object */ // Called only from within defaultDisplay function actualDisplay( name, doc ) { var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), display = jQuery.css( elem[ 0 ], "display" ); // We don't have any data stored on the element, // so use "detach" method as fast way to get rid of the element elem.detach(); return display; } /** * Try to determine the default display value of an element * @param {String} nodeName */ function defaultDisplay( nodeName ) { var doc = document, display = elemdisplay[ nodeName ]; if ( !display ) { display = actualDisplay( nodeName, doc ); // If the simple way fails, read from inside an iframe if ( display === "none" || !display ) { // Use the already-created iframe if possible iframe = ( iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" ) ) .appendTo( doc.documentElement ); // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document; // Support: IE doc.write(); doc.close(); display = actualDisplay( nodeName, doc ); iframe.detach(); } // Store the correct default display elemdisplay[ nodeName ] = display; } return display; } var rmargin = ( /^margin/ ); var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); var swap = function( elem, options, callback, args ) { var ret, name, old = {}; // Remember the old values, and insert the new ones for ( name in options ) { old[ name ] = elem.style[ name ]; elem.style[ name ] = options[ name ]; } ret = callback.apply( elem, args || [] ); // Revert the old values for ( name in options ) { elem.style[ name ] = old[ name ]; } return ret; }; var documentElement = document.documentElement; ( function() { var pixelPositionVal, pixelMarginRightVal, boxSizingReliableVal, reliableHiddenOffsetsVal, reliableMarginRightVal, reliableMarginLeftVal, container = document.createElement( "div" ), div = document.createElement( "div" ); // Finish early in limited (non-browser) environments if ( !div.style ) { return; } div.style.cssText = "float:left;opacity:.5"; // Support: IE<9 // Make sure that element opacity exists (as opposed to filter) support.opacity = div.style.opacity === "0.5"; // Verify style float existence // (IE uses styleFloat instead of cssFloat) support.cssFloat = !!div.style.cssFloat; div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; container = document.createElement( "div" ); container.style.cssText = "border:0;width:8px;height:0;top:0;left:-9999px;" + "padding:0;margin-top:1px;position:absolute"; div.innerHTML = ""; container.appendChild( div ); // Support: Firefox<29, Android 2.3 // Vendor-prefix box-sizing support.boxSizing = div.style.boxSizing === "" || div.style.MozBoxSizing === "" || div.style.WebkitBoxSizing === ""; jQuery.extend( support, { reliableHiddenOffsets: function() { if ( pixelPositionVal == null ) { computeStyleTests(); } return reliableHiddenOffsetsVal; }, boxSizingReliable: function() { // We're checking for pixelPositionVal here instead of boxSizingReliableVal // since that compresses better and they're computed together anyway. if ( pixelPositionVal == null ) { computeStyleTests(); } return boxSizingReliableVal; }, pixelMarginRight: function() { // Support: Android 4.0-4.3 if ( pixelPositionVal == null ) { computeStyleTests(); } return pixelMarginRightVal; }, pixelPosition: function() { if ( pixelPositionVal == null ) { computeStyleTests(); } return pixelPositionVal; }, reliableMarginRight: function() { // Support: Android 2.3 if ( pixelPositionVal == null ) { computeStyleTests(); } return reliableMarginRightVal; }, reliableMarginLeft: function() { // Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37 if ( pixelPositionVal == null ) { computeStyleTests(); } return reliableMarginLeftVal; } } ); function computeStyleTests() { var contents, divStyle, documentElement = document.documentElement; // Setup documentElement.appendChild( container ); div.style.cssText = // Support: Android 2.3 // Vendor-prefix box-sizing "-webkit-box-sizing:border-box;box-sizing:border-box;" + "position:relative;display:block;" + "margin:auto;border:1px;padding:1px;" + "top:1%;width:50%"; // Support: IE<9 // Assume reasonable values in the absence of getComputedStyle pixelPositionVal = boxSizingReliableVal = reliableMarginLeftVal = false; pixelMarginRightVal = reliableMarginRightVal = true; // Check for getComputedStyle so that this code is not run in IE<9. if ( window.getComputedStyle ) { divStyle = window.getComputedStyle( div ); pixelPositionVal = ( divStyle || {} ).top !== "1%"; reliableMarginLeftVal = ( divStyle || {} ).marginLeft === "2px"; boxSizingReliableVal = ( divStyle || { width: "4px" } ).width === "4px"; // Support: Android 4.0 - 4.3 only // Some styles come back with percentage values, even though they shouldn't div.style.marginRight = "50%"; pixelMarginRightVal = ( divStyle || { marginRight: "4px" } ).marginRight === "4px"; // Support: Android 2.3 only // Div with explicit width and no margin-right incorrectly // gets computed margin-right based on width of container (#3333) // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right contents = div.appendChild( document.createElement( "div" ) ); // Reset CSS: box-sizing; display; margin; border; padding contents.style.cssText = div.style.cssText = // Support: Android 2.3 // Vendor-prefix box-sizing "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;" + "box-sizing:content-box;display:block;margin:0;border:0;padding:0"; contents.style.marginRight = contents.style.width = "0"; div.style.width = "1px"; reliableMarginRightVal = !parseFloat( ( window.getComputedStyle( contents ) || {} ).marginRight ); div.removeChild( contents ); } // Support: IE6-8 // First check that getClientRects works as expected // Check if table cells still have offsetWidth/Height when they are set // to display:none and there are still other visible table cells in a // table row; if so, offsetWidth/Height are not reliable for use when // determining if an element has been hidden directly using // display:none (it is still safe to use offsets if a parent element is // hidden; don safety goggles and see bug #4512 for more information). div.style.display = "none"; reliableHiddenOffsetsVal = div.getClientRects().length === 0; if ( reliableHiddenOffsetsVal ) { div.style.display = ""; div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"; div.childNodes[ 0 ].style.borderCollapse = "separate"; contents = div.getElementsByTagName( "td" ); contents[ 0 ].style.cssText = "margin:0;border:0;padding:0;display:none"; reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0; if ( reliableHiddenOffsetsVal ) { contents[ 0 ].style.display = ""; contents[ 1 ].style.display = "none"; reliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0; } } // Teardown documentElement.removeChild( container ); } } )(); var getStyles, curCSS, rposition = /^(top|right|bottom|left)$/; if ( window.getComputedStyle ) { getStyles = function( elem ) { // Support: IE<=11+, Firefox<=30+ (#15098, #14150) // IE throws on elements created in popups // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" var view = elem.ownerDocument.defaultView; if ( !view || !view.opener ) { view = window; } return view.getComputedStyle( elem ); }; curCSS = function( elem, name, computed ) { var width, minWidth, maxWidth, ret, style = elem.style; computed = computed || getStyles( elem ); // getPropertyValue is only needed for .css('filter') in IE9, see #12537 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; // Support: Opera 12.1x only // Fall back to style even without computed // computed is undefined for elems on document fragments if ( ( ret === "" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) { ret = jQuery.style( elem, name ); } if ( computed ) { // A tribute to the "awesome hack by Dean Edwards" // Chrome < 17 and Safari 5.0 uses "computed value" // instead of "used value" for margin-right // Safari 5.1.7 (at least) returns percentage for a larger set of values, // but width seems to be reliably pixels // this is against the CSSOM draft spec: // http://dev.w3.org/csswg/cssom/#resolved-values if ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) { // Remember the original values width = style.width; minWidth = style.minWidth; maxWidth = style.maxWidth; // Put in the new values to get a computed value out style.minWidth = style.maxWidth = style.width = ret; ret = computed.width; // Revert the changed values style.width = width; style.minWidth = minWidth; style.maxWidth = maxWidth; } } // Support: IE // IE returns zIndex value as an integer. return ret === undefined ? ret : ret + ""; }; } else if ( documentElement.currentStyle ) { getStyles = function( elem ) { return elem.currentStyle; }; curCSS = function( elem, name, computed ) { var left, rs, rsLeft, ret, style = elem.style; computed = computed || getStyles( elem ); ret = computed ? computed[ name ] : undefined; // Avoid setting ret to empty string here // so we don't default to auto if ( ret == null && style && style[ name ] ) { ret = style[ name ]; } // From the awesome hack by Dean Edwards // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 // If we're not dealing with a regular pixel number // but a number that has a weird ending, we need to convert it to pixels // but not position css attributes, as those are // proportional to the parent element instead // and we can't measure the parent instead because it // might trigger a "stacking dolls" problem if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { // Remember the original values left = style.left; rs = elem.runtimeStyle; rsLeft = rs && rs.left; // Put in the new values to get a computed value out if ( rsLeft ) { rs.left = elem.currentStyle.left; } style.left = name === "fontSize" ? "1em" : ret; ret = style.pixelLeft + "px"; // Revert the changed values style.left = left; if ( rsLeft ) { rs.left = rsLeft; } } // Support: IE // IE returns zIndex value as an integer. return ret === undefined ? ret : ret + "" || "auto"; }; } function addGetHookIf( conditionFn, hookFn ) { // Define the hook, we'll check on the first run if it's really needed. return { get: function() { if ( conditionFn() ) { // Hook not needed (or it's not possible to use it due // to missing dependency), remove it. delete this.get; return; } // Hook needed; redefine it so that the support test is not executed again. return ( this.get = hookFn ).apply( this, arguments ); } }; } var ralpha = /alpha\([^)]*\)/i, ropacity = /opacity\s*=\s*([^)]*)/i, // swappable if display is none or starts with table except // "table", "table-cell", or "table-caption" // see here for display values: // https://developer.mozilla.org/en-US/docs/CSS/display rdisplayswap = /^(none|table(?!-c[ea]).+)/, rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ), cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = { letterSpacing: "0", fontWeight: "400" }, cssPrefixes = [ "Webkit", "O", "Moz", "ms" ], emptyStyle = document.createElement( "div" ).style; // return a css property mapped to a potentially vendor prefixed property function vendorPropName( name ) { // shortcut for names that are not vendor prefixed if ( name in emptyStyle ) { return name; } // check for vendor prefixed names var capName = name.charAt( 0 ).toUpperCase() + name.slice( 1 ), i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in emptyStyle ) { return name; } } } function showHide( elements, show ) { var display, elem, hidden, values = [], index = 0, length = elements.length; for ( ; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } values[ index ] = jQuery._data( elem, "olddisplay" ); display = elem.style.display; if ( show ) { // Reset the inline display of this element to learn if it is // being hidden by cascaded rules or not if ( !values[ index ] && display === "none" ) { elem.style.display = ""; } // Set elements which have been overridden with display: none // in a stylesheet to whatever the default browser style is // for such an element if ( elem.style.display === "" && isHidden( elem ) ) { values[ index ] = jQuery._data( elem, "olddisplay", defaultDisplay( elem.nodeName ) ); } } else { hidden = isHidden( elem ); if ( display && display !== "none" || !hidden ) { jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); } } } // Set the display of most of the elements in a second loop // to avoid the constant reflow for ( index = 0; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } if ( !show || elem.style.display === "none" || elem.style.display === "" ) { elem.style.display = show ? values[ index ] || "" : "none"; } } return elements; } function setPositiveNumber( elem, value, subtract ) { var matches = rnumsplit.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : value; } function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { var i = extra === ( isBorderBox ? "border" : "content" ) ? // If we already have the right measurement, avoid augmentation 4 : // Otherwise initialize for horizontal or vertical properties name === "width" ? 1 : 0, val = 0; for ( ; i < 4; i += 2 ) { // both box models exclude margin, so add it if we want it if ( extra === "margin" ) { val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); } if ( isBorderBox ) { // border-box includes padding, so remove it if we want content if ( extra === "content" ) { val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); } // at this point, extra isn't border nor margin, so remove border if ( extra !== "margin" ) { val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } else { // at this point, extra isn't content, so add padding val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); // at this point, extra isn't content nor padding, so add border if ( extra !== "padding" ) { val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } } return val; } function getWidthOrHeight( elem, name, extra ) { // Start with offset property, which is equivalent to the border-box value var valueIsBorderBox = true, val = name === "width" ? elem.offsetWidth : elem.offsetHeight, styles = getStyles( elem ), isBorderBox = support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // some non-html elements return undefined for offsetWidth, so check for null/undefined // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 if ( val <= 0 || val == null ) { // Fall back to computed then uncomputed css if necessary val = curCSS( elem, name, styles ); if ( val < 0 || val == null ) { val = elem.style[ name ]; } // Computed unit is not pixels. Stop here and return. if ( rnumnonpx.test( val ) ) { return val; } // we need the check for style in case a browser which returns unreliable values // for getComputedStyle silently falls back to the reliable elem.style valueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] ); // Normalize "", auto, and prepare for extra val = parseFloat( val ) || 0; } // use the active box-sizing model to add/subtract irrelevant styles return ( val + augmentWidthOrHeight( elem, name, extra || ( isBorderBox ? "border" : "content" ), valueIsBorderBox, styles ) ) + "px"; } jQuery.extend( { // Add in style property hooks for overriding the default // behavior of getting and setting a style property cssHooks: { opacity: { get: function( elem, computed ) { if ( computed ) { // We should always get a number back from opacity var ret = curCSS( elem, "opacity" ); return ret === "" ? "1" : ret; } } } }, // Don't automatically add "px" to these possibly-unitless properties cssNumber: { "animationIterationCount": true, "columnCount": true, "fillOpacity": true, "flexGrow": true, "flexShrink": true, "fontWeight": true, "lineHeight": true, "opacity": true, "order": true, "orphans": true, "widows": true, "zIndex": true, "zoom": true }, // Add in properties whose names you wish to fix before // setting or getting the value cssProps: { // normalize float css property "float": support.cssFloat ? "cssFloat" : "styleFloat" }, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { // Don't set styles on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we're working with the right name var ret, type, hooks, origName = jQuery.camelCase( name ), style = elem.style; name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we're setting a value if ( value !== undefined ) { type = typeof value; // Convert "+=" or "-=" to relative numbers (#7345) if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { value = adjustCSS( elem, name, ret ); // Fixes bug #9237 type = "number"; } // Make sure that null and NaN values aren't set. See: #7116 if ( value == null || value !== value ) { return; } // If a number was passed in, add the unit (except for certain CSS properties) if ( type === "number" ) { value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); } // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, // but it would mean to define eight // (for every problematic property) identical functions if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !( "set" in hooks ) || ( value = hooks.set( elem, value, extra ) ) !== undefined ) { // Support: IE // Swallow errors from 'invalid' CSS values (#5509) try { style[ name ] = value; } catch ( e ) {} } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { return ret; } // Otherwise just get the value from the style object return style[ name ]; } }, css: function( elem, name, extra, styles ) { var num, val, hooks, origName = jQuery.camelCase( name ); // Make sure that we're working with the right name name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } //convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Return, converting to number if forced or a qualifier was provided and val looks numeric if ( extra === "" || extra ) { num = parseFloat( val ); return extra === true || isFinite( num ) ? num || 0 : val; } return val; } } ); jQuery.each( [ "height", "width" ], function( i, name ) { jQuery.cssHooks[ name ] = { get: function( elem, computed, extra ) { if ( computed ) { // certain elements can have dimension info if we invisibly show them // however, it must have a current display style that would benefit from this return rdisplayswap.test( jQuery.css( elem, "display" ) ) && elem.offsetWidth === 0 ? swap( elem, cssShow, function() { return getWidthOrHeight( elem, name, extra ); } ) : getWidthOrHeight( elem, name, extra ); } }, set: function( elem, value, extra ) { var styles = extra && getStyles( elem ); return setPositiveNumber( elem, value, extra ? augmentWidthOrHeight( elem, name, extra, support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", styles ) : 0 ); } }; } ); if ( !support.opacity ) { jQuery.cssHooks.opacity = { get: function( elem, computed ) { // IE uses filters for opacity return ropacity.test( ( computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter ) || "" ) ? ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : computed ? "1" : ""; }, set: function( elem, value ) { var style = elem.style, currentStyle = elem.currentStyle, opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", filter = currentStyle && currentStyle.filter || style.filter || ""; // IE has trouble with opacity if it does not have layout // Force it by setting the zoom level style.zoom = 1; // if setting opacity to 1, and no other filters exist - // attempt to remove filter attribute #6652 // if value === "", then remove inline opacity #12685 if ( ( value >= 1 || value === "" ) && jQuery.trim( filter.replace( ralpha, "" ) ) === "" && style.removeAttribute ) { // Setting style.filter to null, "" & " " still leave "filter:" in the cssText // if "filter:" is present at all, clearType is disabled, we want to avoid this // style.removeAttribute is IE Only, but so apparently is this code path... style.removeAttribute( "filter" ); // if there is no filter style applied in a css rule // or unset inline opacity, we are done if ( value === "" || currentStyle && !currentStyle.filter ) { return; } } // otherwise, set new filter values style.filter = ralpha.test( filter ) ? filter.replace( ralpha, opacity ) : filter + " " + opacity; } }; } jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight, function( elem, computed ) { if ( computed ) { return swap( elem, { "display": "inline-block" }, curCSS, [ elem, "marginRight" ] ); } } ); jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, function( elem, computed ) { if ( computed ) { return ( parseFloat( curCSS( elem, "marginLeft" ) ) || // Support: IE<=11+ // Running getBoundingClientRect on a disconnected node in IE throws an error // Support: IE8 only // getClientRects() errors on disconnected elems ( jQuery.contains( elem.ownerDocument, elem ) ? elem.getBoundingClientRect().left - swap( elem, { marginLeft: 0 }, function() { return elem.getBoundingClientRect().left; } ) : 0 ) ) + "px"; } } ); // These hooks are used by animate to expand properties jQuery.each( { margin: "", padding: "", border: "Width" }, function( prefix, suffix ) { jQuery.cssHooks[ prefix + suffix ] = { expand: function( value ) { var i = 0, expanded = {}, // assumes a single number if not a string parts = typeof value === "string" ? value.split( " " ) : [ value ]; for ( ; i < 4; i++ ) { expanded[ prefix + cssExpand[ i ] + suffix ] = parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; } return expanded; } }; if ( !rmargin.test( prefix ) ) { jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; } } ); jQuery.fn.extend( { css: function( name, value ) { return access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( jQuery.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); }, show: function() { return showHide( this, true ); }, hide: function() { return showHide( this ); }, toggle: function( state ) { if ( typeof state === "boolean" ) { return state ? this.show() : this.hide(); } return this.each( function() { if ( isHidden( this ) ) { jQuery( this ).show(); } else { jQuery( this ).hide(); } } ); } } ); function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); } jQuery.Tween = Tween; Tween.prototype = { constructor: Tween, init: function( elem, options, prop, end, easing, unit ) { this.elem = elem; this.prop = prop; this.easing = easing || jQuery.easing._default; this.options = options; this.start = this.now = this.cur(); this.end = end; this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); }, cur: function() { var hooks = Tween.propHooks[ this.prop ]; return hooks && hooks.get ? hooks.get( this ) : Tween.propHooks._default.get( this ); }, run: function( percent ) { var eased, hooks = Tween.propHooks[ this.prop ]; if ( this.options.duration ) { this.pos = eased = jQuery.easing[ this.easing ]( percent, this.options.duration * percent, 0, 1, this.options.duration ); } else { this.pos = eased = percent; } this.now = ( this.end - this.start ) * eased + this.start; if ( this.options.step ) { this.options.step.call( this.elem, this.now, this ); } if ( hooks && hooks.set ) { hooks.set( this ); } else { Tween.propHooks._default.set( this ); } return this; } }; Tween.prototype.init.prototype = Tween.prototype; Tween.propHooks = { _default: { get: function( tween ) { var result; // Use a property on the element directly when it is not a DOM element, // or when there is no matching style property that exists. if ( tween.elem.nodeType !== 1 || tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { return tween.elem[ tween.prop ]; } // passing an empty string as a 3rd parameter to .css will automatically // attempt a parseFloat and fallback to a string if the parse fails // so, simple values such as "10px" are parsed to Float. // complex values such as "rotate(1rad)" are returned as is. result = jQuery.css( tween.elem, tween.prop, "" ); // Empty strings, null, undefined and "auto" are converted to 0. return !result || result === "auto" ? 0 : result; }, set: function( tween ) { // use step hook for back compat - use cssHook if its there - use .style if its // available and use plain properties where available if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); } else if ( tween.elem.nodeType === 1 && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; } } } }; // Support: IE <=9 // Panic based approach to setting things on disconnected nodes Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { set: function( tween ) { if ( tween.elem.nodeType && tween.elem.parentNode ) { tween.elem[ tween.prop ] = tween.now; } } }; jQuery.easing = { linear: function( p ) { return p; }, swing: function( p ) { return 0.5 - Math.cos( p * Math.PI ) / 2; }, _default: "swing" }; jQuery.fx = Tween.prototype.init; // Back Compat <1.8 extension point jQuery.fx.step = {}; var fxNow, timerId, rfxtypes = /^(?:toggle|show|hide)$/, rrun = /queueHooks$/; // Animations created synchronously will run synchronously function createFxNow() { window.setTimeout( function() { fxNow = undefined; } ); return ( fxNow = jQuery.now() ); } // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, attrs = { height: type }, i = 0; // if we include width, step value is 1 to do all cssExpand values, // if we don't include width, step value is 2 to skip over Left and Right includeWidth = includeWidth ? 1 : 0; for ( ; i < 4 ; i += 2 - includeWidth ) { which = cssExpand[ i ]; attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; } if ( includeWidth ) { attrs.opacity = attrs.width = type; } return attrs; } function createTween( value, prop, animation ) { var tween, collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { // we're done with this property return tween; } } } function defaultPrefilter( elem, props, opts ) { /* jshint validthis: true */ var prop, value, toggle, tween, hooks, oldfire, display, checkDisplay, anim = this, orig = {}, style = elem.style, hidden = elem.nodeType && isHidden( elem ), dataShow = jQuery._data( elem, "fxshow" ); // handle queue: false promises if ( !opts.queue ) { hooks = jQuery._queueHooks( elem, "fx" ); if ( hooks.unqueued == null ) { hooks.unqueued = 0; oldfire = hooks.empty.fire; hooks.empty.fire = function() { if ( !hooks.unqueued ) { oldfire(); } }; } hooks.unqueued++; anim.always( function() { // doing this makes sure that the complete handler will be called // before this completes anim.always( function() { hooks.unqueued--; if ( !jQuery.queue( elem, "fx" ).length ) { hooks.empty.fire(); } } ); } ); } // height/width overflow pass if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { // Make sure that nothing sneaks out // Record all 3 overflow attributes because IE does not // change the overflow attribute when overflowX and // overflowY are set to the same value opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Set display property to inline-block for height/width // animations on inline elements that are having width/height animated display = jQuery.css( elem, "display" ); // Test default display if display is currently "none" checkDisplay = display === "none" ? jQuery._data( elem, "olddisplay" ) || defaultDisplay( elem.nodeName ) : display; if ( checkDisplay === "inline" && jQuery.css( elem, "float" ) === "none" ) { // inline-level elements accept inline-block; // block-level elements need to be inline with layout if ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === "inline" ) { style.display = "inline-block"; } else { style.zoom = 1; } } } if ( opts.overflow ) { style.overflow = "hidden"; if ( !support.shrinkWrapBlocks() ) { anim.always( function() { style.overflow = opts.overflow[ 0 ]; style.overflowX = opts.overflow[ 1 ]; style.overflowY = opts.overflow[ 2 ]; } ); } } // show/hide pass for ( prop in props ) { value = props[ prop ]; if ( rfxtypes.exec( value ) ) { delete props[ prop ]; toggle = toggle || value === "toggle"; if ( value === ( hidden ? "hide" : "show" ) ) { // If there is dataShow left over from a stopped hide or show // and we are going to proceed with show, we should pretend to be hidden if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { hidden = true; } else { continue; } } orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); // Any non-fx value stops us from restoring the original display value } else { display = undefined; } } if ( !jQuery.isEmptyObject( orig ) ) { if ( dataShow ) { if ( "hidden" in dataShow ) { hidden = dataShow.hidden; } } else { dataShow = jQuery._data( elem, "fxshow", {} ); } // store state if its toggle - enables .stop().toggle() to "reverse" if ( toggle ) { dataShow.hidden = !hidden; } if ( hidden ) { jQuery( elem ).show(); } else { anim.done( function() { jQuery( elem ).hide(); } ); } anim.done( function() { var prop; jQuery._removeData( elem, "fxshow" ); for ( prop in orig ) { jQuery.style( elem, prop, orig[ prop ] ); } } ); for ( prop in orig ) { tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); if ( !( prop in dataShow ) ) { dataShow[ prop ] = tween.start; if ( hidden ) { tween.end = tween.start; tween.start = prop === "width" || prop === "height" ? 1 : 0; } } } // If this is a noop like .hide().hide(), restore an overwritten display value } else if ( ( display === "none" ? defaultDisplay( elem.nodeName ) : display ) === "inline" ) { style.display = display; } } function propFilter( props, specialEasing ) { var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass for ( index in props ) { name = jQuery.camelCase( index ); easing = specialEasing[ name ]; value = props[ index ]; if ( jQuery.isArray( value ) ) { easing = value[ 1 ]; value = props[ index ] = value[ 0 ]; } if ( index !== name ) { props[ name ] = value; delete props[ index ]; } hooks = jQuery.cssHooks[ name ]; if ( hooks && "expand" in hooks ) { value = hooks.expand( value ); delete props[ name ]; // not quite $.extend, this wont overwrite keys already present. // also - reusing 'index' from above because we have the correct "name" for ( index in value ) { if ( !( index in props ) ) { props[ index ] = value[ index ]; specialEasing[ index ] = easing; } } } else { specialEasing[ name ] = easing; } } } function Animation( elem, properties, options ) { var result, stopped, index = 0, length = Animation.prefilters.length, deferred = jQuery.Deferred().always( function() { // don't match elem in the :animated selector delete tick.elem; } ), tick = function() { if ( stopped ) { return false; } var currentTime = fxNow || createFxNow(), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), // Support: Android 2.3 // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) temp = remaining / animation.duration || 0, percent = 1 - temp, index = 0, length = animation.tweens.length; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( percent ); } deferred.notifyWith( elem, [ animation, percent, remaining ] ); if ( percent < 1 && length ) { return remaining; } else { deferred.resolveWith( elem, [ animation ] ); return false; } }, animation = deferred.promise( { elem: elem, props: jQuery.extend( {}, properties ), opts: jQuery.extend( true, { specialEasing: {}, easing: jQuery.easing._default }, options ), originalProperties: properties, originalOptions: options, startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); return tween; }, stop: function( gotoEnd ) { var index = 0, // if we are going to the end, we want to run all the tweens // otherwise we skip this part length = gotoEnd ? animation.tweens.length : 0; if ( stopped ) { return this; } stopped = true; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( 1 ); } // resolve when we played the last frame // otherwise, reject if ( gotoEnd ) { deferred.notifyWith( elem, [ animation, 1, 0 ] ); deferred.resolveWith( elem, [ animation, gotoEnd ] ); } else { deferred.rejectWith( elem, [ animation, gotoEnd ] ); } return this; } } ), props = animation.props; propFilter( props, animation.opts.specialEasing ); for ( ; index < length ; index++ ) { result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); if ( result ) { if ( jQuery.isFunction( result.stop ) ) { jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = jQuery.proxy( result.stop, result ); } return result; } } jQuery.map( props, createTween, animation ); if ( jQuery.isFunction( animation.opts.start ) ) { animation.opts.start.call( elem, animation ); } jQuery.fx.timer( jQuery.extend( tick, { elem: elem, anim: animation, queue: animation.opts.queue } ) ); // attach callbacks from options return animation.progress( animation.opts.progress ) .done( animation.opts.done, animation.opts.complete ) .fail( animation.opts.fail ) .always( animation.opts.always ); } jQuery.Animation = jQuery.extend( Animation, { tweeners: { "*": [ function( prop, value ) { var tween = this.createTween( prop, value ); adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); return tween; } ] }, tweener: function( props, callback ) { if ( jQuery.isFunction( props ) ) { callback = props; props = [ "*" ]; } else { props = props.match( rnotwhite ); } var prop, index = 0, length = props.length; for ( ; index < length ; index++ ) { prop = props[ index ]; Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; Animation.tweeners[ prop ].unshift( callback ); } }, prefilters: [ defaultPrefilter ], prefilter: function( callback, prepend ) { if ( prepend ) { Animation.prefilters.unshift( callback ); } else { Animation.prefilters.push( callback ); } } } ); jQuery.speed = function( speed, easing, fn ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { complete: fn || !fn && easing || jQuery.isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing }; opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; // normalize opt.queue - true/undefined/null -> "fx" if ( opt.queue == null || opt.queue === true ) { opt.queue = "fx"; } // Queueing opt.old = opt.complete; opt.complete = function() { if ( jQuery.isFunction( opt.old ) ) { opt.old.call( this ); } if ( opt.queue ) { jQuery.dequeue( this, opt.queue ); } }; return opt; }; jQuery.fn.extend( { fadeTo: function( speed, to, easing, callback ) { // show any hidden elements after setting opacity to 0 return this.filter( isHidden ).css( "opacity", 0 ).show() // animate to the value specified .end().animate( { opacity: to }, speed, easing, callback ); }, animate: function( prop, speed, easing, callback ) { var empty = jQuery.isEmptyObject( prop ), optall = jQuery.speed( speed, easing, callback ), doAnimation = function() { // Operate on a copy of prop so per-property easing won't be lost var anim = Animation( this, jQuery.extend( {}, prop ), optall ); // Empty animations, or finishing resolves immediately if ( empty || jQuery._data( this, "finish" ) ) { anim.stop( true ); } }; doAnimation.finish = doAnimation; return empty || optall.queue === false ? this.each( doAnimation ) : this.queue( optall.queue, doAnimation ); }, stop: function( type, clearQueue, gotoEnd ) { var stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }; if ( typeof type !== "string" ) { gotoEnd = clearQueue; clearQueue = type; type = undefined; } if ( clearQueue && type !== false ) { this.queue( type || "fx", [] ); } return this.each( function() { var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = jQuery._data( this ); if ( index ) { if ( data[ index ] && data[ index ].stop ) { stopQueue( data[ index ] ); } } else { for ( index in data ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { stopQueue( data[ index ] ); } } } for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && ( type == null || timers[ index ].queue === type ) ) { timers[ index ].anim.stop( gotoEnd ); dequeue = false; timers.splice( index, 1 ); } } // start the next in the queue if the last step wasn't forced // timers currently will call their complete callbacks, which will dequeue // but only if they were gotoEnd if ( dequeue || !gotoEnd ) { jQuery.dequeue( this, type ); } } ); }, finish: function( type ) { if ( type !== false ) { type = type || "fx"; } return this.each( function() { var index, data = jQuery._data( this ), queue = data[ type + "queue" ], hooks = data[ type + "queueHooks" ], timers = jQuery.timers, length = queue ? queue.length : 0; // enable finishing flag on private data data.finish = true; // empty the queue first jQuery.queue( this, type, [] ); if ( hooks && hooks.stop ) { hooks.stop.call( this, true ); } // look for any active animations, and finish them for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) { timers[ index ].anim.stop( true ); timers.splice( index, 1 ); } } // look for any animations in the old queue and finish them for ( index = 0; index < length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) { queue[ index ].finish.call( this ); } } // turn off finishing flag delete data.finish; } ); } } ); jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? cssFn.apply( this, arguments ) : this.animate( genFx( name, true ), speed, easing, callback ); }; } ); // Generate shortcuts for custom animations jQuery.each( { slideDown: genFx( "show" ), slideUp: genFx( "hide" ), slideToggle: genFx( "toggle" ), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function( name, props ) { jQuery.fn[ name ] = function( speed, easing, callback ) { return this.animate( props, speed, easing, callback ); }; } ); jQuery.timers = []; jQuery.fx.tick = function() { var timer, timers = jQuery.timers, i = 0; fxNow = jQuery.now(); for ( ; i < timers.length; i++ ) { timer = timers[ i ]; // Checks the timer has not already been removed if ( !timer() && timers[ i ] === timer ) { timers.splice( i--, 1 ); } } if ( !timers.length ) { jQuery.fx.stop(); } fxNow = undefined; }; jQuery.fx.timer = function( timer ) { jQuery.timers.push( timer ); if ( timer() ) { jQuery.fx.start(); } else { jQuery.timers.pop(); } }; jQuery.fx.interval = 13; jQuery.fx.start = function() { if ( !timerId ) { timerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval ); } }; jQuery.fx.stop = function() { window.clearInterval( timerId ); timerId = null; }; jQuery.fx.speeds = { slow: 600, fast: 200, // Default speed _default: 400 }; // Based off of the plugin by Clint Helfers, with permission. // http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ jQuery.fn.delay = function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { var timeout = window.setTimeout( next, time ); hooks.stop = function() { window.clearTimeout( timeout ); }; } ); }; ( function() { var a, input = document.createElement( "input" ), div = document.createElement( "div" ), select = document.createElement( "select" ), opt = select.appendChild( document.createElement( "option" ) ); // Setup div = document.createElement( "div" ); div.setAttribute( "className", "t" ); div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; a = div.getElementsByTagName( "a" )[ 0 ]; // Support: Windows Web Apps (WWA) // `type` must use .setAttribute for WWA (#14901) input.setAttribute( "type", "checkbox" ); div.appendChild( input ); a = div.getElementsByTagName( "a" )[ 0 ]; // First batch of tests. a.style.cssText = "top:1px"; // Test setAttribute on camelCase class. // If it works, we need attrFixes when doing get/setAttribute (ie6/7) support.getSetAttribute = div.className !== "t"; // Get the style information from getAttribute // (IE uses .cssText instead) support.style = /top/.test( a.getAttribute( "style" ) ); // Make sure that URLs aren't manipulated // (IE normalizes it by default) support.hrefNormalized = a.getAttribute( "href" ) === "/a"; // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) support.checkOn = !!input.value; // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) support.optSelected = opt.selected; // Tests for enctype support on a form (#6743) support.enctype = !!document.createElement( "form" ).enctype; // Make sure that the options inside disabled selects aren't marked as disabled // (WebKit marks them as disabled) select.disabled = true; support.optDisabled = !opt.disabled; // Support: IE8 only // Check if we can trust getAttribute("value") input = document.createElement( "input" ); input.setAttribute( "value", "" ); support.input = input.getAttribute( "value" ) === ""; // Check if an input maintains its value after becoming a radio input.value = "t"; input.setAttribute( "type", "radio" ); support.radioValue = input.value === "t"; } )(); var rreturn = /\r/g, rspaces = /[\x20\t\r\n\f]+/g; jQuery.fn.extend( { val: function( value ) { var hooks, ret, isFunction, elem = this[ 0 ]; if ( !arguments.length ) { if ( elem ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; if ( hooks && "get" in hooks && ( ret = hooks.get( elem, "value" ) ) !== undefined ) { return ret; } ret = elem.value; return typeof ret === "string" ? // handle most common string cases ret.replace( rreturn, "" ) : // handle cases where value is null/undef or number ret == null ? "" : ret; } return; } isFunction = jQuery.isFunction( value ); return this.each( function( i ) { var val; if ( this.nodeType !== 1 ) { return; } if ( isFunction ) { val = value.call( this, i, jQuery( this ).val() ); } else { val = value; } // Treat null/undefined as ""; convert numbers to string if ( val == null ) { val = ""; } else if ( typeof val === "number" ) { val += ""; } else if ( jQuery.isArray( val ) ) { val = jQuery.map( val, function( value ) { return value == null ? "" : value + ""; } ); } hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; // If set returns undefined, fall back to normal setting if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { this.value = val; } } ); } } ); jQuery.extend( { valHooks: { option: { get: function( elem ) { var val = jQuery.find.attr( elem, "value" ); return val != null ? val : // Support: IE10-11+ // option.text throws exceptions (#14686, #14858) // Strip and collapse whitespace // https://html.spec.whatwg.org/#strip-and-collapse-whitespace jQuery.trim( jQuery.text( elem ) ).replace( rspaces, " " ); } }, select: { get: function( elem ) { var value, option, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one" || index < 0, values = one ? null : [], max = one ? index + 1 : options.length, i = index < 0 ? max : one ? index : 0; // Loop through all the selected options for ( ; i < max; i++ ) { option = options[ i ]; // oldIE doesn't update selected after form reset (#2551) if ( ( option.selected || i === index ) && // Don't return options that are disabled or in a disabled optgroup ( support.optDisabled ? !option.disabled : option.getAttribute( "disabled" ) === null ) && ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { // Get the specific value for the option value = jQuery( option ).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; }, set: function( elem, value ) { var optionSet, option, options = elem.options, values = jQuery.makeArray( value ), i = options.length; while ( i-- ) { option = options[ i ]; if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 ) { // Support: IE6 // When new option element is added to select box we need to // force reflow of newly added node in order to workaround delay // of initialization properties try { option.selected = optionSet = true; } catch ( _ ) { // Will be executed only in IE6 option.scrollHeight; } } else { option.selected = false; } } // Force browsers to behave consistently when non-matching value is set if ( !optionSet ) { elem.selectedIndex = -1; } return options; } } } } ); // Radios and checkboxes getter/setter jQuery.each( [ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { set: function( elem, value ) { if ( jQuery.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); } } }; if ( !support.checkOn ) { jQuery.valHooks[ this ].get = function( elem ) { return elem.getAttribute( "value" ) === null ? "on" : elem.value; }; } } ); var nodeHook, boolHook, attrHandle = jQuery.expr.attrHandle, ruseDefault = /^(?:checked|selected)$/i, getSetAttribute = support.getSetAttribute, getSetInput = support.input; jQuery.fn.extend( { attr: function( name, value ) { return access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each( function() { jQuery.removeAttr( this, name ); } ); } } ); jQuery.extend( { attr: function( elem, name, value ) { var ret, hooks, nType = elem.nodeType; // Don't get/set attributes on text, comment and attribute nodes if ( nType === 3 || nType === 8 || nType === 2 ) { return; } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === "undefined" ) { return jQuery.prop( elem, name, value ); } // All attributes are lowercase // Grab necessary hook if one is defined if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { name = name.toLowerCase(); hooks = jQuery.attrHooks[ name ] || ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); return; } if ( hooks && "set" in hooks && ( ret = hooks.set( elem, value, name ) ) !== undefined ) { return ret; } elem.setAttribute( name, value + "" ); return value; } if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { return ret; } ret = jQuery.find.attr( elem, name ); // Non-existent attributes return null, we normalize to undefined return ret == null ? undefined : ret; }, attrHooks: { type: { set: function( elem, value ) { if ( !support.radioValue && value === "radio" && jQuery.nodeName( elem, "input" ) ) { // Setting the type on a radio button after the value resets the value in IE8-9 // Reset value to default in case type is set after value during creation var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } } }, removeAttr: function( elem, value ) { var name, propName, i = 0, attrNames = value && value.match( rnotwhite ); if ( attrNames && elem.nodeType === 1 ) { while ( ( name = attrNames[ i++ ] ) ) { propName = jQuery.propFix[ name ] || name; // Boolean attributes get special treatment (#10870) if ( jQuery.expr.match.bool.test( name ) ) { // Set corresponding property to false if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { elem[ propName ] = false; // Support: IE<9 // Also clear defaultChecked/defaultSelected (if appropriate) } else { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ propName ] = false; } // See #9699 for explanation of this approach (setting first, then removal) } else { jQuery.attr( elem, name, "" ); } elem.removeAttribute( getSetAttribute ? name : propName ); } } } } ); // Hooks for boolean attributes boolHook = { set: function( elem, value, name ) { if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { // IE<8 needs the *property* name elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); } else { // Support: IE<9 // Use defaultChecked and defaultSelected for oldIE elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; } return name; } }; jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { var getter = attrHandle[ name ] || jQuery.find.attr; if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { attrHandle[ name ] = function( elem, name, isXML ) { var ret, handle; if ( !isXML ) { // Avoid an infinite loop by temporarily removing this function from the getter handle = attrHandle[ name ]; attrHandle[ name ] = ret; ret = getter( elem, name, isXML ) != null ? name.toLowerCase() : null; attrHandle[ name ] = handle; } return ret; }; } else { attrHandle[ name ] = function( elem, name, isXML ) { if ( !isXML ) { return elem[ jQuery.camelCase( "default-" + name ) ] ? name.toLowerCase() : null; } }; } } ); // fix oldIE attroperties if ( !getSetInput || !getSetAttribute ) { jQuery.attrHooks.value = { set: function( elem, value, name ) { if ( jQuery.nodeName( elem, "input" ) ) { // Does not return so that setAttribute is also used elem.defaultValue = value; } else { // Use nodeHook if defined (#1954); otherwise setAttribute is fine return nodeHook && nodeHook.set( elem, value, name ); } } }; } // IE6/7 do not support getting/setting some attributes with get/setAttribute if ( !getSetAttribute ) { // Use this for any attribute in IE6/7 // This fixes almost every IE6/7 issue nodeHook = { set: function( elem, value, name ) { // Set the existing or create a new attribute node var ret = elem.getAttributeNode( name ); if ( !ret ) { elem.setAttributeNode( ( ret = elem.ownerDocument.createAttribute( name ) ) ); } ret.value = value += ""; // Break association with cloned elements by also using setAttribute (#9646) if ( name === "value" || value === elem.getAttribute( name ) ) { return value; } } }; // Some attributes are constructed with empty-string values when not defined attrHandle.id = attrHandle.name = attrHandle.coords = function( elem, name, isXML ) { var ret; if ( !isXML ) { return ( ret = elem.getAttributeNode( name ) ) && ret.value !== "" ? ret.value : null; } }; // Fixing value retrieval on a button requires this module jQuery.valHooks.button = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); if ( ret && ret.specified ) { return ret.value; } }, set: nodeHook.set }; // Set contenteditable to false on removals(#10429) // Setting to empty string throws an error as an invalid value jQuery.attrHooks.contenteditable = { set: function( elem, value, name ) { nodeHook.set( elem, value === "" ? false : value, name ); } }; // Set width and height to auto instead of 0 on empty string( Bug #8150 ) // This is for removals jQuery.each( [ "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = { set: function( elem, value ) { if ( value === "" ) { elem.setAttribute( name, "auto" ); return value; } } }; } ); } if ( !support.style ) { jQuery.attrHooks.style = { get: function( elem ) { // Return undefined in the case of empty string // Note: IE uppercases css property names, but if we were to .toLowerCase() // .cssText, that would destroy case sensitivity in URL's, like in "background" return elem.style.cssText || undefined; }, set: function( elem, value ) { return ( elem.style.cssText = value + "" ); } }; } var rfocusable = /^(?:input|select|textarea|button|object)$/i, rclickable = /^(?:a|area)$/i; jQuery.fn.extend( { prop: function( name, value ) { return access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { name = jQuery.propFix[ name ] || name; return this.each( function() { // try/catch handles cases where IE balks (such as removing a property on window) try { this[ name ] = undefined; delete this[ name ]; } catch ( e ) {} } ); } } ); jQuery.extend( { prop: function( elem, name, value ) { var ret, hooks, nType = elem.nodeType; // Don't get/set properties on text, comment and attribute nodes if ( nType === 3 || nType === 8 || nType === 2 ) { return; } if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { // Fix name and attach hooks name = jQuery.propFix[ name ] || name; hooks = jQuery.propHooks[ name ]; } if ( value !== undefined ) { if ( hooks && "set" in hooks && ( ret = hooks.set( elem, value, name ) ) !== undefined ) { return ret; } return ( elem[ name ] = value ); } if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { return ret; } return elem[ name ]; }, propHooks: { tabIndex: { get: function( elem ) { // elem.tabIndex doesn't always return the // correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ // Use proper attribute retrieval(#12072) var tabindex = jQuery.find.attr( elem, "tabindex" ); return tabindex ? parseInt( tabindex, 10 ) : rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? 0 : -1; } } }, propFix: { "for": "htmlFor", "class": "className" } } ); // Some attributes require a special call on IE // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !support.hrefNormalized ) { // href/src property should get the full normalized URL (#10299/#12915) jQuery.each( [ "href", "src" ], function( i, name ) { jQuery.propHooks[ name ] = { get: function( elem ) { return elem.getAttribute( name, 4 ); } }; } ); } // Support: Safari, IE9+ // Accessing the selectedIndex property // forces the browser to respect setting selected // on the option // The getter ensures a default option is selected // when in an optgroup if ( !support.optSelected ) { jQuery.propHooks.selected = { get: function( elem ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; // Make sure that it also works with optgroups, see #5701 if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } return null; }, set: function( elem ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } } }; } jQuery.each( [ "tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable" ], function() { jQuery.propFix[ this.toLowerCase() ] = this; } ); // IE6/7 call enctype encoding if ( !support.enctype ) { jQuery.propFix.enctype = "encoding"; } var rclass = /[\t\r\n\f]/g; function getClass( elem ) { return jQuery.attr( elem, "class" ) || ""; } jQuery.fn.extend( { addClass: function( value ) { var classes, elem, cur, curValue, clazz, j, finalValue, i = 0; if ( jQuery.isFunction( value ) ) { return this.each( function( j ) { jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); } ); } if ( typeof value === "string" && value ) { classes = value.match( rnotwhite ) || []; while ( ( elem = this[ i++ ] ) ) { curValue = getClass( elem ); cur = elem.nodeType === 1 && ( " " + curValue + " " ).replace( rclass, " " ); if ( cur ) { j = 0; while ( ( clazz = classes[ j++ ] ) ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) { cur += clazz + " "; } } // only assign if different to avoid unneeded rendering. finalValue = jQuery.trim( cur ); if ( curValue !== finalValue ) { jQuery.attr( elem, "class", finalValue ); } } } } return this; }, removeClass: function( value ) { var classes, elem, cur, curValue, clazz, j, finalValue, i = 0; if ( jQuery.isFunction( value ) ) { return this.each( function( j ) { jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); } ); } if ( !arguments.length ) { return this.attr( "class", "" ); } if ( typeof value === "string" && value ) { classes = value.match( rnotwhite ) || []; while ( ( elem = this[ i++ ] ) ) { curValue = getClass( elem ); // This expression is here for better compressibility (see addClass) cur = elem.nodeType === 1 && ( " " + curValue + " " ).replace( rclass, " " ); if ( cur ) { j = 0; while ( ( clazz = classes[ j++ ] ) ) { // Remove *all* instances while ( cur.indexOf( " " + clazz + " " ) > -1 ) { cur = cur.replace( " " + clazz + " ", " " ); } } // Only assign if different to avoid unneeded rendering. finalValue = jQuery.trim( cur ); if ( curValue !== finalValue ) { jQuery.attr( elem, "class", finalValue ); } } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value; if ( typeof stateVal === "boolean" && type === "string" ) { return stateVal ? this.addClass( value ) : this.removeClass( value ); } if ( jQuery.isFunction( value ) ) { return this.each( function( i ) { jQuery( this ).toggleClass( value.call( this, i, getClass( this ), stateVal ), stateVal ); } ); } return this.each( function() { var className, i, self, classNames; if ( type === "string" ) { // Toggle individual class names i = 0; self = jQuery( this ); classNames = value.match( rnotwhite ) || []; while ( ( className = classNames[ i++ ] ) ) { // Check each className given, space separated list if ( self.hasClass( className ) ) { self.removeClass( className ); } else { self.addClass( className ); } } // Toggle whole class name } else if ( value === undefined || type === "boolean" ) { className = getClass( this ); if ( className ) { // store className if set jQuery._data( this, "__className__", className ); } // If the element has a class name or if we're passed "false", // then remove the whole classname (if there was one, the above saved it). // Otherwise bring back whatever was previously saved (if anything), // falling back to the empty string if nothing was stored. jQuery.attr( this, "class", className || value === false ? "" : jQuery._data( this, "__className__" ) || "" ); } } ); }, hasClass: function( selector ) { var className, elem, i = 0; className = " " + selector + " "; while ( ( elem = this[ i++ ] ) ) { if ( elem.nodeType === 1 && ( " " + getClass( elem ) + " " ).replace( rclass, " " ) .indexOf( className ) > -1 ) { return true; } } return false; } } ); // Return jQuery for attributes-only inclusion jQuery.each( ( "blur focus focusin focusout load resize scroll unload click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup error contextmenu" ).split( " " ), function( i, name ) { // Handle event binding jQuery.fn[ name ] = function( data, fn ) { return arguments.length > 0 ? this.on( name, null, data, fn ) : this.trigger( name ); }; } ); jQuery.fn.extend( { hover: function( fnOver, fnOut ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); } } ); var location = window.location; var nonce = jQuery.now(); var rquery = ( /\?/ ); var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g; jQuery.parseJSON = function( data ) { // Attempt to parse using the native JSON parser first if ( window.JSON && window.JSON.parse ) { // Support: Android 2.3 // Workaround failure to string-cast null input return window.JSON.parse( data + "" ); } var requireNonComma, depth = null, str = jQuery.trim( data + "" ); // Guard against invalid (and possibly dangerous) input by ensuring that nothing remains // after removing valid tokens return str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) { // Force termination if we see a misplaced comma if ( requireNonComma && comma ) { depth = 0; } // Perform no more replacements after returning to outermost depth if ( depth === 0 ) { return token; } // Commas must not follow "[", "{", or "," requireNonComma = open || comma; // Determine new depth // array/object open ("[" or "{"): depth += true - false (increment) // array/object close ("]" or "}"): depth += false - true (decrement) // other cases ("," or primitive): depth += true - true (numeric cast) depth += !close - !open; // Remove this token return ""; } ) ) ? ( Function( "return " + str ) )() : jQuery.error( "Invalid JSON: " + data ); }; // Cross-browser xml parsing jQuery.parseXML = function( data ) { var xml, tmp; if ( !data || typeof data !== "string" ) { return null; } try { if ( window.DOMParser ) { // Standard tmp = new window.DOMParser(); xml = tmp.parseFromString( data, "text/xml" ); } else { // IE xml = new window.ActiveXObject( "Microsoft.XMLDOM" ); xml.async = "false"; xml.loadXML( data ); } } catch ( e ) { xml = undefined; } if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { jQuery.error( "Invalid XML: " + data ); } return xml; }; var rhash = /#.*$/, rts = /([?&])_=[^&]*/, // IE leaves an \r character at EOL rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/, /* Prefilters * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) * 2) These are called: * - BEFORE asking for a transport * - AFTER param serialization (s.data is a string if s.processData is true) * 3) key is the dataType * 4) the catchall symbol "*" can be used * 5) execution will start with transport dataType and THEN continue down to "*" if needed */ prefilters = {}, /* Transports bindings * 1) key is the dataType * 2) the catchall symbol "*" can be used * 3) selection will start with transport dataType and THEN go to "*" if needed */ transports = {}, // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression allTypes = "*/".concat( "*" ), // Document location ajaxLocation = location.href, // Segment location into parts ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || []; if ( jQuery.isFunction( func ) ) { // For each dataType in the dataTypeExpression while ( ( dataType = dataTypes[ i++ ] ) ) { // Prepend if requested if ( dataType.charAt( 0 ) === "+" ) { dataType = dataType.slice( 1 ) || "*"; ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); // Otherwise append } else { ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); } } } }; } // Base inspection function for prefilters and transports function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { options.dataTypes.unshift( dataTypeOrTransport ); inspect( dataTypeOrTransport ); return false; } else if ( seekingTransport ) { return !( selected = dataTypeOrTransport ); } } ); return selected; } return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); } // A special extend for ajax options // that takes "flat" options (not to be deep extended) // Fixes #9887 function ajaxExtend( target, src ) { var deep, key, flatOptions = jQuery.ajaxSettings.flatOptions || {}; for ( key in src ) { if ( src[ key ] !== undefined ) { ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; } } if ( deep ) { jQuery.extend( true, target, deep ); } return target; } /* Handles responses to an ajax request: * - finds the right dataType (mediates between content-type and expected dataType) * - returns the corresponding response */ function ajaxHandleResponses( s, jqXHR, responses ) { var firstDataType, ct, finalDataType, type, contents = s.contents, dataTypes = s.dataTypes; // Remove auto dataType and get content-type in the process while ( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); } } // Check if we're dealing with a known content-type if ( ct ) { for ( type in contents ) { if ( contents[ type ] && contents[ type ].test( ct ) ) { dataTypes.unshift( type ); break; } } } // Check to see if we have a response for the expected dataType if ( dataTypes[ 0 ] in responses ) { finalDataType = dataTypes[ 0 ]; } else { // Try convertible dataTypes for ( type in responses ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { finalDataType = type; break; } if ( !firstDataType ) { firstDataType = type; } } // Or just use first one finalDataType = finalDataType || firstDataType; } // If we found a dataType // We add the dataType to the list if needed // and return the corresponding response if ( finalDataType ) { if ( finalDataType !== dataTypes[ 0 ] ) { dataTypes.unshift( finalDataType ); } return responses[ finalDataType ]; } } /* Chain conversions given the request and the original response * Also sets the responseXXX fields on the jqXHR instance */ function ajaxConvert( s, response, jqXHR, isSuccess ) { var conv2, current, conv, tmp, prev, converters = {}, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(); // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.converters ) { converters[ conv.toLowerCase() ] = s.converters[ conv ]; } } current = dataTypes.shift(); // Convert to each sequential dataType while ( current ) { if ( s.responseFields[ current ] ) { jqXHR[ s.responseFields[ current ] ] = response; } // Apply the dataFilter if provided if ( !prev && isSuccess && s.dataFilter ) { response = s.dataFilter( response, s.dataType ); } prev = current; current = dataTypes.shift(); if ( current ) { // There's only work to do if current dataType is non-auto if ( current === "*" ) { current = prev; // Convert response if prev dataType is non-auto and differs from current } else if ( prev !== "*" && prev !== current ) { // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair if ( !conv ) { for ( conv2 in converters ) { // If conv2 outputs current tmp = conv2.split( " " ); if ( tmp[ 1 ] === current ) { // If prev can be converted to accepted input conv = converters[ prev + " " + tmp[ 0 ] ] || converters[ "* " + tmp[ 0 ] ]; if ( conv ) { // Condense equivalence converters if ( conv === true ) { conv = converters[ conv2 ]; // Otherwise, insert the intermediate dataType } else if ( converters[ conv2 ] !== true ) { current = tmp[ 0 ]; dataTypes.unshift( tmp[ 1 ] ); } break; } } } } // Apply converter (if not an equivalence) if ( conv !== true ) { // Unless errors are allowed to bubble, catch and return them if ( conv && s[ "throws" ] ) { // jscs:ignore requireDotNotation response = conv( response ); } else { try { response = conv( response ); } catch ( e ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; } } } } } } return { state: "success", data: response }; } jQuery.extend( { // Counter for holding the number of active queries active: 0, // Last-Modified header cache for next request lastModified: {}, etag: {}, ajaxSettings: { url: ajaxLocation, type: "GET", isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), global: true, processData: true, async: true, contentType: "application/x-www-form-urlencoded; charset=UTF-8", /* timeout: 0, data: null, dataType: null, username: null, password: null, cache: null, throws: false, traditional: false, headers: {}, */ accepts: { "*": allTypes, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/ }, responseFields: { xml: "responseXML", text: "responseText", json: "responseJSON" }, // Data converters // Keys separate source (or catchall "*") and destination types with a single space converters: { // Convert anything to text "* text": String, // Text to html (true = no transformation) "text html": true, // Evaluate text as a json expression "text json": jQuery.parseJSON, // Parse text as xml "text xml": jQuery.parseXML }, // For options that shouldn't be deep extended: // you can add your own custom options here if // and when you create one that shouldn't be // deep extended (see ajaxExtend) flatOptions: { url: true, context: true } }, // Creates a full fledged settings object into target // with both ajaxSettings and settings fields. // If target is omitted, writes into ajaxSettings. ajaxSetup: function( target, settings ) { return settings ? // Building a settings object ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : // Extending ajaxSettings ajaxExtend( jQuery.ajaxSettings, target ); }, ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), ajaxTransport: addToPrefiltersOrTransports( transports ), // Main method ajax: function( url, options ) { // If url is an object, simulate pre-1.5 signature if ( typeof url === "object" ) { options = url; url = undefined; } // Force options to be an object options = options || {}; var // Cross-domain detection vars parts, // Loop variable i, // URL without anti-cache param cacheURL, // Response headers as string responseHeadersString, // timeout handle timeoutTimer, // To know if global events are to be dispatched fireGlobals, transport, // Response headers responseHeaders, // Create the final options object s = jQuery.ajaxSetup( {}, options ), // Callbacks context callbackContext = s.context || s, // Context for global events is callbackContext if it is a DOM node or jQuery collection globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? jQuery( callbackContext ) : jQuery.event, // Deferreds deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks( "once memory" ), // Status-dependent callbacks statusCode = s.statusCode || {}, // Headers (they are sent all at once) requestHeaders = {}, requestHeadersNames = {}, // The jqXHR state state = 0, // Default abort message strAbort = "canceled", // Fake xhr jqXHR = { readyState: 0, // Builds headers hashtable if needed getResponseHeader: function( key ) { var match; if ( state === 2 ) { if ( !responseHeaders ) { responseHeaders = {}; while ( ( match = rheaders.exec( responseHeadersString ) ) ) { responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ]; } } match = responseHeaders[ key.toLowerCase() ]; } return match == null ? null : match; }, // Raw string getAllResponseHeaders: function() { return state === 2 ? responseHeadersString : null; }, // Caches the header setRequestHeader: function( name, value ) { var lname = name.toLowerCase(); if ( !state ) { name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; requestHeaders[ name ] = value; } return this; }, // Overrides response content-type header overrideMimeType: function( type ) { if ( !state ) { s.mimeType = type; } return this; }, // Status-dependent callbacks statusCode: function( map ) { var code; if ( map ) { if ( state < 2 ) { for ( code in map ) { // Lazy-add the new callback in a way that preserves old ones statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; } } else { // Execute the appropriate callbacks jqXHR.always( map[ jqXHR.status ] ); } } return this; }, // Cancel the request abort: function( statusText ) { var finalText = statusText || strAbort; if ( transport ) { transport.abort( finalText ); } done( 0, finalText ); return this; } }; // Attach deferreds deferred.promise( jqXHR ).complete = completeDeferred.add; jqXHR.success = jqXHR.done; jqXHR.error = jqXHR.fail; // Remove hash character (#7531: and string promotion) // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) // Handle falsy url in the settings object (#10093: consistency with old signature) // We also use the url parameter if available s.url = ( ( url || s.url || ajaxLocation ) + "" ) .replace( rhash, "" ) .replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); // Alias method option to type as per ticket #12004 s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ]; // A cross-domain request is in order when we have a protocol:host:port mismatch if ( s.crossDomain == null ) { parts = rurl.exec( s.url.toLowerCase() ); s.crossDomain = !!( parts && ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !== ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) ) ); } // Convert data if not already a string if ( s.data && s.processData && typeof s.data !== "string" ) { s.data = jQuery.param( s.data, s.traditional ); } // Apply prefilters inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); // If request was aborted inside a prefilter, stop there if ( state === 2 ) { return jqXHR; } // We can fire global events as of now if asked to // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) fireGlobals = jQuery.event && s.global; // Watch for a new set of requests if ( fireGlobals && jQuery.active++ === 0 ) { jQuery.event.trigger( "ajaxStart" ); } // Uppercase the type s.type = s.type.toUpperCase(); // Determine if request has content s.hasContent = !rnoContent.test( s.type ); // Save the URL in case we're toying with the If-Modified-Since // and/or If-None-Match header later on cacheURL = s.url; // More options handling for requests with no content if ( !s.hasContent ) { // If data is available, append data to url if ( s.data ) { cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data ); // #9682: remove data so that it's not used in an eventual retry delete s.data; } // Add anti-cache in url if needed if ( s.cache === false ) { s.url = rts.test( cacheURL ) ? // If there is already a '_' parameter, set its value cacheURL.replace( rts, "$1_=" + nonce++ ) : // Otherwise add one to the end cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++; } } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { if ( jQuery.lastModified[ cacheURL ] ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); } if ( jQuery.etag[ cacheURL ] ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); } } // Set the correct header, if data is being sent if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { jqXHR.setRequestHeader( "Content-Type", s.contentType ); } // Set the Accepts header for the server, depending on the dataType jqXHR.setRequestHeader( "Accept", s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? s.accepts[ s.dataTypes[ 0 ] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : s.accepts[ "*" ] ); // Check for headers option for ( i in s.headers ) { jqXHR.setRequestHeader( i, s.headers[ i ] ); } // Allow custom headers/mimetypes and early abort if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { // Abort if not done already and return return jqXHR.abort(); } // aborting is no longer a cancellation strAbort = "abort"; // Install callbacks on deferreds for ( i in { success: 1, error: 1, complete: 1 } ) { jqXHR[ i ]( s[ i ] ); } // Get transport transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); // If no transport, we auto-abort if ( !transport ) { done( -1, "No Transport" ); } else { jqXHR.readyState = 1; // Send global event if ( fireGlobals ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); } // If request was aborted inside ajaxSend, stop there if ( state === 2 ) { return jqXHR; } // Timeout if ( s.async && s.timeout > 0 ) { timeoutTimer = window.setTimeout( function() { jqXHR.abort( "timeout" ); }, s.timeout ); } try { state = 1; transport.send( requestHeaders, done ); } catch ( e ) { // Propagate exception as error if not done if ( state < 2 ) { done( -1, e ); // Simply rethrow otherwise } else { throw e; } } } // Callback for when everything is done function done( status, nativeStatusText, responses, headers ) { var isSuccess, success, error, response, modified, statusText = nativeStatusText; // Called once if ( state === 2 ) { return; } // State is "done" now state = 2; // Clear timeout if it exists if ( timeoutTimer ) { window.clearTimeout( timeoutTimer ); } // Dereference transport for early garbage collection // (no matter how long the jqXHR object will be used) transport = undefined; // Cache response headers responseHeadersString = headers || ""; // Set readyState jqXHR.readyState = status > 0 ? 4 : 0; // Determine if successful isSuccess = status >= 200 && status < 300 || status === 304; // Get response data if ( responses ) { response = ajaxHandleResponses( s, jqXHR, responses ); } // Convert no matter what (that way responseXXX fields are always set) response = ajaxConvert( s, response, jqXHR, isSuccess ); // If successful, handle type chaining if ( isSuccess ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { modified = jqXHR.getResponseHeader( "Last-Modified" ); if ( modified ) { jQuery.lastModified[ cacheURL ] = modified; } modified = jqXHR.getResponseHeader( "etag" ); if ( modified ) { jQuery.etag[ cacheURL ] = modified; } } // if no content if ( status === 204 || s.type === "HEAD" ) { statusText = "nocontent"; // if not modified } else if ( status === 304 ) { statusText = "notmodified"; // If we have data, let's convert it } else { statusText = response.state; success = response.data; error = response.error; isSuccess = !error; } } else { // We extract error from statusText // then normalize statusText and status for non-aborts error = statusText; if ( status || !statusText ) { statusText = "error"; if ( status < 0 ) { status = 0; } } } // Set data for the fake xhr object jqXHR.status = status; jqXHR.statusText = ( nativeStatusText || statusText ) + ""; // Success/Error if ( isSuccess ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); } else { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); } // Status-dependent callbacks jqXHR.statusCode( statusCode ); statusCode = undefined; if ( fireGlobals ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", [ jqXHR, s, isSuccess ? success : error ] ); } // Complete completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); if ( fireGlobals ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); // Handle the global AJAX counter if ( !( --jQuery.active ) ) { jQuery.event.trigger( "ajaxStop" ); } } } return jqXHR; }, getJSON: function( url, data, callback ) { return jQuery.get( url, data, callback, "json" ); }, getScript: function( url, callback ) { return jQuery.get( url, undefined, callback, "script" ); } } ); jQuery.each( [ "get", "post" ], function( i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // shift arguments if data argument was omitted if ( jQuery.isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } // The url can be an options object (which then must have .url) return jQuery.ajax( jQuery.extend( { url: url, type: method, dataType: type, data: data, success: callback }, jQuery.isPlainObject( url ) && url ) ); }; } ); jQuery._evalUrl = function( url ) { return jQuery.ajax( { url: url, // Make this explicit, since user can override this through ajaxSetup (#11264) type: "GET", dataType: "script", cache: true, async: false, global: false, "throws": true } ); }; jQuery.fn.extend( { wrapAll: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each( function( i ) { jQuery( this ).wrapAll( html.call( this, i ) ); } ); } if ( this[ 0 ] ) { // The elements to wrap the target around var wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); if ( this[ 0 ].parentNode ) { wrap.insertBefore( this[ 0 ] ); } wrap.map( function() { var elem = this; while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { elem = elem.firstChild; } return elem; } ).append( this ); } return this; }, wrapInner: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each( function( i ) { jQuery( this ).wrapInner( html.call( this, i ) ); } ); } return this.each( function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } } ); }, wrap: function( html ) { var isFunction = jQuery.isFunction( html ); return this.each( function( i ) { jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html ); } ); }, unwrap: function() { return this.parent().each( function() { if ( !jQuery.nodeName( this, "body" ) ) { jQuery( this ).replaceWith( this.childNodes ); } } ).end(); } } ); function getDisplay( elem ) { return elem.style && elem.style.display || jQuery.css( elem, "display" ); } function filterHidden( elem ) { // Disconnected elements are considered hidden if ( !jQuery.contains( elem.ownerDocument || document, elem ) ) { return true; } while ( elem && elem.nodeType === 1 ) { if ( getDisplay( elem ) === "none" || elem.type === "hidden" ) { return true; } elem = elem.parentNode; } return false; } jQuery.expr.filters.hidden = function( elem ) { // Support: Opera <= 12.12 // Opera reports offsetWidths and offsetHeights less than zero on some elements return support.reliableHiddenOffsets() ? ( elem.offsetWidth <= 0 && elem.offsetHeight <= 0 && !elem.getClientRects().length ) : filterHidden( elem ); }; jQuery.expr.filters.visible = function( elem ) { return !jQuery.expr.filters.hidden( elem ); }; var r20 = /%20/g, rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; function buildParams( prefix, obj, traditional, add ) { var name; if ( jQuery.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", v, traditional, add ); } } ); } else if ( !traditional && jQuery.type( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } // Serialize an array of form elements or a set of // key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, value ) { // If value is a function, invoke it and return its value value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); }; // Set traditional to true for jQuery <= 1.3.2 behavior. if ( traditional === undefined ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; } // If an array was passed in, assume that it is an array of form elements. if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); } ); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ).replace( r20, "+" ); }; jQuery.fn.extend( { serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map( function() { // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; } ) .filter( function() { var type = this.type; // Use .is(":disabled") so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) ); } ) .map( function( i, elem ) { var val = jQuery( this ).val(); return val == null ? null : jQuery.isArray( val ) ? jQuery.map( val, function( val ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ) : { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ).get(); } } ); // Create the request object // (This is still attached to ajaxSettings for backward compatibility) jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ? // Support: IE6-IE8 function() { // XHR cannot access local files, always use ActiveX for that case if ( this.isLocal ) { return createActiveXHR(); } // Support: IE 9-11 // IE seems to error on cross-domain PATCH requests when ActiveX XHR // is used. In IE 9+ always use the native XHR. // Note: this condition won't catch Edge as it doesn't define // document.documentMode but it also doesn't support ActiveX so it won't // reach this code. if ( document.documentMode > 8 ) { return createStandardXHR(); } // Support: IE<9 // oldIE XHR does not support non-RFC2616 methods (#13240) // See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx // and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9 // Although this check for six methods instead of eight // since IE also does not support "trace" and "connect" return /^(get|post|head|put|delete|options)$/i.test( this.type ) && createStandardXHR() || createActiveXHR(); } : // For all other browsers, use the standard XMLHttpRequest object createStandardXHR; var xhrId = 0, xhrCallbacks = {}, xhrSupported = jQuery.ajaxSettings.xhr(); // Support: IE<10 // Open requests must be manually aborted on unload (#5280) // See https://support.microsoft.com/kb/2856746 for more info if ( window.attachEvent ) { window.attachEvent( "onunload", function() { for ( var key in xhrCallbacks ) { xhrCallbacks[ key ]( undefined, true ); } } ); } // Determine support properties support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); xhrSupported = support.ajax = !!xhrSupported; // Create transport if the browser can provide an xhr if ( xhrSupported ) { jQuery.ajaxTransport( function( options ) { // Cross domain only allowed if supported through XMLHttpRequest if ( !options.crossDomain || support.cors ) { var callback; return { send: function( headers, complete ) { var i, xhr = options.xhr(), id = ++xhrId; // Open the socket xhr.open( options.type, options.url, options.async, options.username, options.password ); // Apply custom fields if provided if ( options.xhrFields ) { for ( i in options.xhrFields ) { xhr[ i ] = options.xhrFields[ i ]; } } // Override mime type if needed if ( options.mimeType && xhr.overrideMimeType ) { xhr.overrideMimeType( options.mimeType ); } // X-Requested-With header // For cross-domain requests, seeing as conditions for a preflight are // akin to a jigsaw puzzle, we simply never set it to be sure. // (it can always be set on a per-request basis or even using ajaxSetup) // For same-domain requests, won't change header if already provided. if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { headers[ "X-Requested-With" ] = "XMLHttpRequest"; } // Set headers for ( i in headers ) { // Support: IE<9 // IE's ActiveXObject throws a 'Type Mismatch' exception when setting // request header to a null-value. // // To keep consistent with other XHR implementations, cast the value // to string and ignore `undefined`. if ( headers[ i ] !== undefined ) { xhr.setRequestHeader( i, headers[ i ] + "" ); } } // Do send the request // This may raise an exception which is actually // handled in jQuery.ajax (so no try/catch here) xhr.send( ( options.hasContent && options.data ) || null ); // Listener callback = function( _, isAbort ) { var status, statusText, responses; // Was never called and is aborted or complete if ( callback && ( isAbort || xhr.readyState === 4 ) ) { // Clean up delete xhrCallbacks[ id ]; callback = undefined; xhr.onreadystatechange = jQuery.noop; // Abort manually if needed if ( isAbort ) { if ( xhr.readyState !== 4 ) { xhr.abort(); } } else { responses = {}; status = xhr.status; // Support: IE<10 // Accessing binary-data responseText throws an exception // (#11426) if ( typeof xhr.responseText === "string" ) { responses.text = xhr.responseText; } // Firefox throws an exception when accessing // statusText for faulty cross-domain requests try { statusText = xhr.statusText; } catch ( e ) { // We normalize with Webkit giving an empty statusText statusText = ""; } // Filter status for non standard behaviors // If the request is local and we have data: assume a success // (success with no data won't get notified, that's the best we // can do given current implementations) if ( !status && options.isLocal && !options.crossDomain ) { status = responses.text ? 200 : 404; // IE - #1450: sometimes returns 1223 when it should be 204 } else if ( status === 1223 ) { status = 204; } } } // Call complete if needed if ( responses ) { complete( status, statusText, responses, xhr.getAllResponseHeaders() ); } }; // Do send the request // `xhr.send` may raise an exception, but it will be // handled in jQuery.ajax (so no try/catch here) if ( !options.async ) { // If we're in sync mode we fire the callback callback(); } else if ( xhr.readyState === 4 ) { // (IE6 & IE7) if it's in cache and has been // retrieved directly we need to fire the callback window.setTimeout( callback ); } else { // Register the callback, but delay it in case `xhr.send` throws // Add to the list of active xhr callbacks xhr.onreadystatechange = xhrCallbacks[ id ] = callback; } }, abort: function() { if ( callback ) { callback( undefined, true ); } } }; } } ); } // Functions to create xhrs function createStandardXHR() { try { return new window.XMLHttpRequest(); } catch ( e ) {} } function createActiveXHR() { try { return new window.ActiveXObject( "Microsoft.XMLHTTP" ); } catch ( e ) {} } // Install script dataType jQuery.ajaxSetup( { accepts: { script: "text/javascript, application/javascript, " + "application/ecmascript, application/x-ecmascript" }, contents: { script: /\b(?:java|ecma)script\b/ }, converters: { "text script": function( text ) { jQuery.globalEval( text ); return text; } } } ); // Handle cache's special case and global jQuery.ajaxPrefilter( "script", function( s ) { if ( s.cache === undefined ) { s.cache = false; } if ( s.crossDomain ) { s.type = "GET"; s.global = false; } } ); // Bind script tag hack transport jQuery.ajaxTransport( "script", function( s ) { // This transport only deals with cross domain requests if ( s.crossDomain ) { var script, head = document.head || jQuery( "head" )[ 0 ] || document.documentElement; return { send: function( _, callback ) { script = document.createElement( "script" ); script.async = true; if ( s.scriptCharset ) { script.charset = s.scriptCharset; } script.src = s.url; // Attach handlers for all browsers script.onload = script.onreadystatechange = function( _, isAbort ) { if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { // Handle memory leak in IE script.onload = script.onreadystatechange = null; // Remove the script if ( script.parentNode ) { script.parentNode.removeChild( script ); } // Dereference the script script = null; // Callback if not abort if ( !isAbort ) { callback( 200, "success" ); } } }; // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending // Use native DOM manipulation to avoid our domManip AJAX trickery head.insertBefore( script, head.firstChild ); }, abort: function() { if ( script ) { script.onload( undefined, true ); } } }; } } ); var oldCallbacks = [], rjsonp = /(=)\?(?=&|$)|\?\?/; // Default jsonp settings jQuery.ajaxSetup( { jsonp: "callback", jsonpCallback: function() { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) ); this[ callback ] = true; return callback; } } ); // Detect, normalize options and install callbacks for jsonp requests jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { var callbackName, overwritten, responseContainer, jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? "url" : typeof s.data === "string" && ( s.contentType || "" ) .indexOf( "application/x-www-form-urlencoded" ) === 0 && rjsonp.test( s.data ) && "data" ); // Handle iff the expected data type is "jsonp" or we have a parameter to set if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { // Get callback name, remembering preexisting value associated with it callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback; // Insert callback into url or form data if ( jsonProp ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); } else if ( s.jsonp !== false ) { s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; } // Use data converter to retrieve json after script execution s.converters[ "script json" ] = function() { if ( !responseContainer ) { jQuery.error( callbackName + " was not called" ); } return responseContainer[ 0 ]; }; // force json dataType s.dataTypes[ 0 ] = "json"; // Install callback overwritten = window[ callbackName ]; window[ callbackName ] = function() { responseContainer = arguments; }; // Clean-up function (fires after converters) jqXHR.always( function() { // If previous value didn't exist - remove it if ( overwritten === undefined ) { jQuery( window ).removeProp( callbackName ); // Otherwise restore preexisting value } else { window[ callbackName ] = overwritten; } // Save back as free if ( s[ callbackName ] ) { // make sure that re-using the options doesn't screw things around s.jsonpCallback = originalSettings.jsonpCallback; // save the callback name for future use oldCallbacks.push( callbackName ); } // Call if it was a function and we have a response if ( responseContainer && jQuery.isFunction( overwritten ) ) { overwritten( responseContainer[ 0 ] ); } responseContainer = overwritten = undefined; } ); // Delegate to script return "script"; } } ); // data: string of html // context (optional): If specified, the fragment will be created in this context, // defaults to document // keepScripts (optional): If true, will include scripts passed in the html string jQuery.parseHTML = function( data, context, keepScripts ) { if ( !data || typeof data !== "string" ) { return null; } if ( typeof context === "boolean" ) { keepScripts = context; context = false; } context = context || document; var parsed = rsingleTag.exec( data ), scripts = !keepScripts && []; // Single tag if ( parsed ) { return [ context.createElement( parsed[ 1 ] ) ]; } parsed = buildFragment( [ data ], context, scripts ); if ( scripts && scripts.length ) { jQuery( scripts ).remove(); } return jQuery.merge( [], parsed.childNodes ); }; // Keep a copy of the old load method var _load = jQuery.fn.load; /** * Load a url into a page */ jQuery.fn.load = function( url, params, callback ) { if ( typeof url !== "string" && _load ) { return _load.apply( this, arguments ); } var selector, type, response, self = this, off = url.indexOf( " " ); if ( off > -1 ) { selector = jQuery.trim( url.slice( off, url.length ) ); url = url.slice( 0, off ); } // If it's a function if ( jQuery.isFunction( params ) ) { // We assume that it's the callback callback = params; params = undefined; // Otherwise, build a param string } else if ( params && typeof params === "object" ) { type = "POST"; } // If we have elements to modify, make the request if ( self.length > 0 ) { jQuery.ajax( { url: url, // If "type" variable is undefined, then "GET" method will be used. // Make value of this field explicit since // user can override it through ajaxSetup method type: type || "GET", dataType: "html", data: params } ).done( function( responseText ) { // Save response for use in complete callback response = arguments; self.html( selector ? // If a selector was specified, locate the right elements in a dummy div // Exclude scripts to avoid IE 'Permission Denied' errors jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) : // Otherwise use the full result responseText ); // If the request succeeds, this function gets "data", "status", "jqXHR" // but they are ignored because response was set above. // If it fails, this function gets "jqXHR", "status", "error" } ).always( callback && function( jqXHR, status ) { self.each( function() { callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] ); } ); } ); } return this; }; // Attach a bunch of functions for handling common AJAX events jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { jQuery.fn[ type ] = function( fn ) { return this.on( type, fn ); }; } ); jQuery.expr.filters.animated = function( elem ) { return jQuery.grep( jQuery.timers, function( fn ) { return elem === fn.elem; } ).length; }; /** * Gets a window from an element */ function getWindow( elem ) { return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 ? elem.defaultView || elem.parentWindow : false; } jQuery.offset = { setOffset: function( elem, options, i ) { var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition, position = jQuery.css( elem, "position" ), curElem = jQuery( elem ), props = {}; // set position first, in-case top/left are set even on static elem if ( position === "static" ) { elem.style.position = "relative"; } curOffset = curElem.offset(); curCSSTop = jQuery.css( elem, "top" ); curCSSLeft = jQuery.css( elem, "left" ); calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray( "auto", [ curCSSTop, curCSSLeft ] ) > -1; // need to be able to calculate position if either top or left // is auto and position is either absolute or fixed if ( calculatePosition ) { curPosition = curElem.position(); curTop = curPosition.top; curLeft = curPosition.left; } else { curTop = parseFloat( curCSSTop ) || 0; curLeft = parseFloat( curCSSLeft ) || 0; } if ( jQuery.isFunction( options ) ) { // Use jQuery.extend here to allow modification of coordinates argument (gh-1848) options = options.call( elem, i, jQuery.extend( {}, curOffset ) ); } if ( options.top != null ) { props.top = ( options.top - curOffset.top ) + curTop; } if ( options.left != null ) { props.left = ( options.left - curOffset.left ) + curLeft; } if ( "using" in options ) { options.using.call( elem, props ); } else { curElem.css( props ); } } }; jQuery.fn.extend( { offset: function( options ) { if ( arguments.length ) { return options === undefined ? this : this.each( function( i ) { jQuery.offset.setOffset( this, options, i ); } ); } var docElem, win, box = { top: 0, left: 0 }, elem = this[ 0 ], doc = elem && elem.ownerDocument; if ( !doc ) { return; } docElem = doc.documentElement; // Make sure it's not a disconnected DOM node if ( !jQuery.contains( docElem, elem ) ) { return box; } // If we don't have gBCR, just use 0,0 rather than error // BlackBerry 5, iOS 3 (original iPhone) if ( typeof elem.getBoundingClientRect !== "undefined" ) { box = elem.getBoundingClientRect(); } win = getWindow( doc ); return { top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ), left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 ) }; }, position: function() { if ( !this[ 0 ] ) { return; } var offsetParent, offset, parentOffset = { top: 0, left: 0 }, elem = this[ 0 ]; // Fixed elements are offset from window (parentOffset = {top:0, left: 0}, // because it is its only offset parent if ( jQuery.css( elem, "position" ) === "fixed" ) { // we assume that getBoundingClientRect is available when computed position is fixed offset = elem.getBoundingClientRect(); } else { // Get *real* offsetParent offsetParent = this.offsetParent(); // Get correct offsets offset = this.offset(); if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) { parentOffset = offsetParent.offset(); } // Add offsetParent borders parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ); parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ); } // Subtract parent offsets and element margins // note: when an element has margin: auto the offsetLeft and marginLeft // are the same in Safari causing offset.left to incorrectly be 0 return { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true ) }; }, offsetParent: function() { return this.map( function() { var offsetParent = this.offsetParent; while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) { offsetParent = offsetParent.offsetParent; } return offsetParent || documentElement; } ); } } ); // Create scrollLeft and scrollTop methods jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) { var top = /Y/.test( prop ); jQuery.fn[ method ] = function( val ) { return access( this, function( elem, method, val ) { var win = getWindow( elem ); if ( val === undefined ) { return win ? ( prop in win ) ? win[ prop ] : win.document.documentElement[ method ] : elem[ method ]; } if ( win ) { win.scrollTo( !top ? val : jQuery( win ).scrollLeft(), top ? val : jQuery( win ).scrollTop() ); } else { elem[ method ] = val; } }, method, val, arguments.length, null ); }; } ); // Support: Safari<7-8+, Chrome<37-44+ // Add the top/left cssHooks using jQuery.fn.position // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 // getComputedStyle returns percent when specified for top/left/bottom/right // rather than make the css module depend on the offset module, we just check for it here jQuery.each( [ "top", "left" ], function( i, prop ) { jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition, function( elem, computed ) { if ( computed ) { computed = curCSS( elem, prop ); // if curCSS returns percentage, fallback to offset return rnumnonpx.test( computed ) ? jQuery( elem ).position()[ prop ] + "px" : computed; } } ); } ); // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { // margin is only for outerHeight, outerWidth jQuery.fn[ funcName ] = function( margin, value ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); return access( this, function( elem, type, value ) { var doc; if ( jQuery.isWindow( elem ) ) { // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there // isn't a whole lot we can do. See pull request at this URL for discussion: // https://github.com/jquery/jquery/pull/764 return elem.document.documentElement[ "client" + name ]; } // Get document width or height if ( elem.nodeType === 9 ) { doc = elem.documentElement; // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], // whichever is greatest // unfortunately, this causes bug #3838 in IE6/8 only, // but there is currently no good, small way to fix it. return Math.max( elem.body[ "scroll" + name ], doc[ "scroll" + name ], elem.body[ "offset" + name ], doc[ "offset" + name ], doc[ "client" + name ] ); } return value === undefined ? // Get width or height on the element, requesting but not forcing parseFloat jQuery.css( elem, type, extra ) : // Set width or height on the element jQuery.style( elem, type, value, extra ); }, type, chainable ? margin : undefined, chainable, null ); }; } ); } ); jQuery.fn.extend( { bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, undelegate: function( selector, types, fn ) { // ( namespace ) or ( selector, types [, fn] ) return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); } } ); // The number of elements contained in the matched element set jQuery.fn.size = function() { return this.length; }; jQuery.fn.andSelf = jQuery.fn.addBack; // Register as a named AMD module, since jQuery can be concatenated with other // files that may use define, but not via a proper concatenation script that // understands anonymous AMD modules. A named AMD is safest and most robust // way to register. Lowercase jquery is used because AMD module names are // derived from file names, and jQuery is normally delivered in a lowercase // file name. Do this after creating the global so that if an AMD module wants // to call noConflict to hide this version of jQuery, it will work. // Note that for maximum portability, libraries that are not jQuery should // declare themselves as anonymous modules, and avoid setting a global if an // AMD loader is present. jQuery is a special case. For more information, see // https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon if ( typeof define === "function" && define.amd ) { define( "jquery", [], function() { return jQuery; } ); } var // Map over jQuery in case of overwrite _jQuery = window.jQuery, // Map over the $ in case of overwrite _$ = window.$; jQuery.noConflict = function( deep ) { if ( window.$ === jQuery ) { window.$ = _$; } if ( deep && window.jQuery === jQuery ) { window.jQuery = _jQuery; } return jQuery; }; // Expose jQuery and $ identifiers, even in // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) // and CommonJS for browser emulators (#13566) if ( !noGlobal ) { window.jQuery = window.$ = jQuery; } return jQuery; })); (function($, undefined) { /** * Unobtrusive scripting adapter for jQuery * https://github.com/rails/jquery-ujs * * Requires jQuery 1.8.0 or later. * * Released under the MIT license * */ // Cut down on the number of issues from people inadvertently including jquery_ujs twice // by detecting and raising an error when it happens. 'use strict'; if ( $.rails !== undefined ) { $.error('jquery-ujs has already been loaded!'); } // Shorthand to make it a little easier to call public rails functions from within rails.js var rails; var $document = $(document); $.rails = rails = { // Link elements bound by jquery-ujs linkClickSelector: 'a[data-confirm], a[data-method], a[data-remote]:not([disabled]), a[data-disable-with], a[data-disable]', // Button elements bound by jquery-ujs buttonClickSelector: 'button[data-remote]:not([form]):not(form button), button[data-confirm]:not([form]):not(form button)', // Select elements bound by jquery-ujs inputChangeSelector: 'select[data-remote], input[data-remote], textarea[data-remote]', // Form elements bound by jquery-ujs formSubmitSelector: 'form', // Form input elements bound by jquery-ujs formInputClickSelector: 'form input[type=submit], form input[type=image], form button[type=submit], form button:not([type]), input[type=submit][form], input[type=image][form], button[type=submit][form], button[form]:not([type])', // Form input elements disabled during form submission disableSelector: 'input[data-disable-with]:enabled, button[data-disable-with]:enabled, textarea[data-disable-with]:enabled, input[data-disable]:enabled, button[data-disable]:enabled, textarea[data-disable]:enabled', // Form input elements re-enabled after form submission enableSelector: 'input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled, input[data-disable]:disabled, button[data-disable]:disabled, textarea[data-disable]:disabled', // Form required input elements requiredInputSelector: 'input[name][required]:not([disabled]), textarea[name][required]:not([disabled])', // Form file input elements fileInputSelector: 'input[name][type=file]:not([disabled])', // Link onClick disable selector with possible reenable after remote submission linkDisableSelector: 'a[data-disable-with], a[data-disable]', // Button onClick disable selector with possible reenable after remote submission buttonDisableSelector: 'button[data-remote][data-disable-with], button[data-remote][data-disable]', // Up-to-date Cross-Site Request Forgery token csrfToken: function() { return $('meta[name=csrf-token]').attr('content'); }, // URL param that must contain the CSRF token csrfParam: function() { return $('meta[name=csrf-param]').attr('content'); }, // Make sure that every Ajax request sends the CSRF token CSRFProtection: function(xhr) { var token = rails.csrfToken(); if (token) xhr.setRequestHeader('X-CSRF-Token', token); }, // Make sure that all forms have actual up-to-date tokens (cached forms contain old ones) refreshCSRFTokens: function(){ $('form input[name="' + rails.csrfParam() + '"]').val(rails.csrfToken()); }, // Triggers an event on an element and returns false if the event result is false fire: function(obj, name, data) { var event = $.Event(name); obj.trigger(event, data); return event.result !== false; }, // Default confirm dialog, may be overridden with custom confirm dialog in $.rails.confirm confirm: function(message) { return confirm(message); }, // Default ajax function, may be overridden with custom function in $.rails.ajax ajax: function(options) { return $.ajax(options); }, // Default way to get an element's href. May be overridden at $.rails.href. href: function(element) { return element[0].href; }, // Checks "data-remote" if true to handle the request through a XHR request. isRemote: function(element) { return element.data('remote') !== undefined && element.data('remote') !== false; }, // Submits "remote" forms and links with ajax handleRemote: function(element) { var method, url, data, withCredentials, dataType, options; if (rails.fire(element, 'ajax:before')) { withCredentials = element.data('with-credentials') || null; dataType = element.data('type') || ($.ajaxSettings && $.ajaxSettings.dataType); if (element.is('form')) { method = element.data('ujs:submit-button-formmethod') || element.attr('method'); url = element.data('ujs:submit-button-formaction') || element.attr('action'); data = $(element[0]).serializeArray(); // memoized value from clicked submit button var button = element.data('ujs:submit-button'); if (button) { data.push(button); element.data('ujs:submit-button', null); } element.data('ujs:submit-button-formmethod', null); element.data('ujs:submit-button-formaction', null); } else if (element.is(rails.inputChangeSelector)) { method = element.data('method'); url = element.data('url'); data = element.serialize(); if (element.data('params')) data = data + '&' + element.data('params'); } else if (element.is(rails.buttonClickSelector)) { method = element.data('method') || 'get'; url = element.data('url'); data = element.serialize(); if (element.data('params')) data = data + '&' + element.data('params'); } else { method = element.data('method'); url = rails.href(element); data = element.data('params') || null; } options = { type: method || 'GET', data: data, dataType: dataType, // stopping the "ajax:beforeSend" event will cancel the ajax request beforeSend: function(xhr, settings) { if (settings.dataType === undefined) { xhr.setRequestHeader('accept', '*/*;q=0.5, ' + settings.accepts.script); } if (rails.fire(element, 'ajax:beforeSend', [xhr, settings])) { element.trigger('ajax:send', xhr); } else { return false; } }, success: function(data, status, xhr) { element.trigger('ajax:success', [data, status, xhr]); }, complete: function(xhr, status) { element.trigger('ajax:complete', [xhr, status]); }, error: function(xhr, status, error) { element.trigger('ajax:error', [xhr, status, error]); }, crossDomain: rails.isCrossDomain(url) }; // There is no withCredentials for IE6-8 when // "Enable native XMLHTTP support" is disabled if (withCredentials) { options.xhrFields = { withCredentials: withCredentials }; } // Only pass url to `ajax` options if not blank if (url) { options.url = url; } return rails.ajax(options); } else { return false; } }, // Determines if the request is a cross domain request. isCrossDomain: function(url) { var originAnchor = document.createElement('a'); originAnchor.href = location.href; var urlAnchor = document.createElement('a'); try { urlAnchor.href = url; // This is a workaround to a IE bug. urlAnchor.href = urlAnchor.href; // If URL protocol is false or is a string containing a single colon // *and* host are false, assume it is not a cross-domain request // (should only be the case for IE7 and IE compatibility mode). // Otherwise, evaluate protocol and host of the URL against the origin // protocol and host. return !(((!urlAnchor.protocol || urlAnchor.protocol === ':') && !urlAnchor.host) || (originAnchor.protocol + '//' + originAnchor.host === urlAnchor.protocol + '//' + urlAnchor.host)); } catch (e) { // If there is an error parsing the URL, assume it is crossDomain. return true; } }, // Handles "data-method" on links such as: // <a href="/users/5" data-method="delete" rel="nofollow" data-confirm="Are you sure?">Delete</a> handleMethod: function(link) { var href = rails.href(link), method = link.data('method'), target = link.attr('target'), csrfToken = rails.csrfToken(), csrfParam = rails.csrfParam(), form = $('<form method="post" action="' + href + '"></form>'), metadataInput = '<input name="_method" value="' + method + '" type="hidden" />'; if (csrfParam !== undefined && csrfToken !== undefined && !rails.isCrossDomain(href)) { metadataInput += '<input name="' + csrfParam + '" value="' + csrfToken + '" type="hidden" />'; } if (target) { form.attr('target', target); } form.hide().append(metadataInput).appendTo('body'); form.submit(); }, // Helper function that returns form elements that match the specified CSS selector // If form is actually a "form" element this will return associated elements outside the from that have // the html form attribute set formElements: function(form, selector) { return form.is('form') ? $(form[0].elements).filter(selector) : form.find(selector); }, /* Disables form elements: - Caches element value in 'ujs:enable-with' data store - Replaces element text with value of 'data-disable-with' attribute - Sets disabled property to true */ disableFormElements: function(form) { rails.formElements(form, rails.disableSelector).each(function() { rails.disableFormElement($(this)); }); }, disableFormElement: function(element) { var method, replacement; method = element.is('button') ? 'html' : 'val'; replacement = element.data('disable-with'); if (replacement !== undefined) { element.data('ujs:enable-with', element[method]()); element[method](replacement); } element.prop('disabled', true); element.data('ujs:disabled', true); }, /* Re-enables disabled form elements: - Replaces element text with cached value from 'ujs:enable-with' data store (created in `disableFormElements`) - Sets disabled property to false */ enableFormElements: function(form) { rails.formElements(form, rails.enableSelector).each(function() { rails.enableFormElement($(this)); }); }, enableFormElement: function(element) { var method = element.is('button') ? 'html' : 'val'; if (element.data('ujs:enable-with') !== undefined) { element[method](element.data('ujs:enable-with')); element.removeData('ujs:enable-with'); // clean up cache } element.prop('disabled', false); element.removeData('ujs:disabled'); }, /* For 'data-confirm' attribute: - Fires `confirm` event - Shows the confirmation dialog - Fires the `confirm:complete` event Returns `true` if no function stops the chain and user chose yes; `false` otherwise. Attaching a handler to the element's `confirm` event that returns a `falsy` value cancels the confirmation dialog. Attaching a handler to the element's `confirm:complete` event that returns a `falsy` value makes this function return false. The `confirm:complete` event is fired whether or not the user answered true or false to the dialog. */ allowAction: function(element) { var message = element.data('confirm'), answer = false, callback; if (!message) { return true; } if (rails.fire(element, 'confirm')) { try { answer = rails.confirm(message); } catch (e) { (console.error || console.log).call(console, e.stack || e); } callback = rails.fire(element, 'confirm:complete', [answer]); } return answer && callback; }, // Helper function which checks for blank inputs in a form that match the specified CSS selector blankInputs: function(form, specifiedSelector, nonBlank) { var foundInputs = $(), input, valueToCheck, radiosForNameWithNoneSelected, radioName, selector = specifiedSelector || 'input,textarea', requiredInputs = form.find(selector), checkedRadioButtonNames = {}; requiredInputs.each(function() { input = $(this); if (input.is('input[type=radio]')) { // Don't count unchecked required radio as blank if other radio with same name is checked, // regardless of whether same-name radio input has required attribute or not. The spec // states https://www.w3.org/TR/html5/forms.html#the-required-attribute radioName = input.attr('name'); // Skip if we've already seen the radio with this name. if (!checkedRadioButtonNames[radioName]) { // If none checked if (form.find('input[type=radio]:checked[name="' + radioName + '"]').length === 0) { radiosForNameWithNoneSelected = form.find( 'input[type=radio][name="' + radioName + '"]'); foundInputs = foundInputs.add(radiosForNameWithNoneSelected); } // We only need to check each name once. checkedRadioButtonNames[radioName] = radioName; } } else { valueToCheck = input.is('input[type=checkbox],input[type=radio]') ? input.is(':checked') : !!input.val(); if (valueToCheck === nonBlank) { foundInputs = foundInputs.add(input); } } }); return foundInputs.length ? foundInputs : false; }, // Helper function which checks for non-blank inputs in a form that match the specified CSS selector nonBlankInputs: function(form, specifiedSelector) { return rails.blankInputs(form, specifiedSelector, true); // true specifies nonBlank }, // Helper function, needed to provide consistent behavior in IE stopEverything: function(e) { $(e.target).trigger('ujs:everythingStopped'); e.stopImmediatePropagation(); return false; }, // Replace element's html with the 'data-disable-with' after storing original html // and prevent clicking on it disableElement: function(element) { var replacement = element.data('disable-with'); if (replacement !== undefined) { element.data('ujs:enable-with', element.html()); // store enabled state element.html(replacement); } element.bind('click.railsDisable', function(e) { // prevent further clicking return rails.stopEverything(e); }); element.data('ujs:disabled', true); }, // Restore element to its original state which was disabled by 'disableElement' above enableElement: function(element) { if (element.data('ujs:enable-with') !== undefined) { element.html(element.data('ujs:enable-with')); // set to old enabled state element.removeData('ujs:enable-with'); // clean up cache } element.unbind('click.railsDisable'); // enable element element.removeData('ujs:disabled'); } }; if (rails.fire($document, 'rails:attachBindings')) { $.ajaxPrefilter(function(options, originalOptions, xhr){ if ( !options.crossDomain ) { rails.CSRFProtection(xhr); }}); // This event works the same as the load event, except that it fires every // time the page is loaded. // // See https://github.com/rails/jquery-ujs/issues/357 // See https://developer.mozilla.org/en-US/docs/Using_Firefox_1.5_caching $(window).on('pageshow.rails', function () { $($.rails.enableSelector).each(function () { var element = $(this); if (element.data('ujs:disabled')) { $.rails.enableFormElement(element); } }); $($.rails.linkDisableSelector).each(function () { var element = $(this); if (element.data('ujs:disabled')) { $.rails.enableElement(element); } }); }); $document.on('ajax:complete', rails.linkDisableSelector, function() { rails.enableElement($(this)); }); $document.on('ajax:complete', rails.buttonDisableSelector, function() { rails.enableFormElement($(this)); }); $document.on('click.rails', rails.linkClickSelector, function(e) { var link = $(this), method = link.data('method'), data = link.data('params'), metaClick = e.metaKey || e.ctrlKey; if (!rails.allowAction(link)) return rails.stopEverything(e); if (!metaClick && link.is(rails.linkDisableSelector)) rails.disableElement(link); if (rails.isRemote(link)) { if (metaClick && (!method || method === 'GET') && !data) { return true; } var handleRemote = rails.handleRemote(link); // Response from rails.handleRemote() will either be false or a deferred object promise. if (handleRemote === false) { rails.enableElement(link); } else { handleRemote.fail( function() { rails.enableElement(link); } ); } return false; } else if (method) { rails.handleMethod(link); return false; } }); $document.on('click.rails', rails.buttonClickSelector, function(e) { var button = $(this); if (!rails.allowAction(button) || !rails.isRemote(button)) return rails.stopEverything(e); if (button.is(rails.buttonDisableSelector)) rails.disableFormElement(button); var handleRemote = rails.handleRemote(button); // Response from rails.handleRemote() will either be false or a deferred object promise. if (handleRemote === false) { rails.enableFormElement(button); } else { handleRemote.fail( function() { rails.enableFormElement(button); } ); } return false; }); $document.on('change.rails', rails.inputChangeSelector, function(e) { var link = $(this); if (!rails.allowAction(link) || !rails.isRemote(link)) return rails.stopEverything(e); rails.handleRemote(link); return false; }); $document.on('submit.rails', rails.formSubmitSelector, function(e) { var form = $(this), remote = rails.isRemote(form), blankRequiredInputs, nonBlankFileInputs; if (!rails.allowAction(form)) return rails.stopEverything(e); // Skip other logic when required values are missing or file upload is present if (form.attr('novalidate') === undefined) { if (form.data('ujs:formnovalidate-button') === undefined) { blankRequiredInputs = rails.blankInputs(form, rails.requiredInputSelector, false); if (blankRequiredInputs && rails.fire(form, 'ajax:aborted:required', [blankRequiredInputs])) { return rails.stopEverything(e); } } else { // Clear the formnovalidate in case the next button click is not on a formnovalidate button // Not strictly necessary to do here, since it is also reset on each button click, but just to be certain form.data('ujs:formnovalidate-button', undefined); } } if (remote) { nonBlankFileInputs = rails.nonBlankInputs(form, rails.fileInputSelector); if (nonBlankFileInputs) { // Slight timeout so that the submit button gets properly serialized // (make it easy for event handler to serialize form without disabled values) setTimeout(function(){ rails.disableFormElements(form); }, 13); var aborted = rails.fire(form, 'ajax:aborted:file', [nonBlankFileInputs]); // Re-enable form elements if event bindings return false (canceling normal form submission) if (!aborted) { setTimeout(function(){ rails.enableFormElements(form); }, 13); } return aborted; } rails.handleRemote(form); return false; } else { // Slight timeout so that the submit button gets properly serialized setTimeout(function(){ rails.disableFormElements(form); }, 13); } }); $document.on('click.rails', rails.formInputClickSelector, function(event) { var button = $(this); if (!rails.allowAction(button)) return rails.stopEverything(event); // Register the pressed submit button var name = button.attr('name'), data = name ? {name:name, value:button.val()} : null; var form = button.closest('form'); if (form.length === 0) { form = $('#' + button.attr('form')); } form.data('ujs:submit-button', data); // Save attributes from button form.data('ujs:formnovalidate-button', button.attr('formnovalidate')); form.data('ujs:submit-button-formaction', button.attr('formaction')); form.data('ujs:submit-button-formmethod', button.attr('formmethod')); }); $document.on('ajax:send.rails', rails.formSubmitSelector, function(event) { if (this === event.target) rails.disableFormElements($(this)); }); $document.on('ajax:complete.rails', rails.formSubmitSelector, function(event) { if (this === event.target) rails.enableFormElements($(this)); }); $(function(){ rails.refreshCSRFTokens(); }); } })( jQuery ); /* ======================================================================== * Bootstrap: affix.js v3.2.0 * http://getbootstrap.com/javascript/#affix * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // AFFIX CLASS DEFINITION // ====================== var Affix = function (element, options) { this.options = $.extend({}, Affix.DEFAULTS, options) this.$target = $(this.options.target) .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) this.$element = $(element) this.affixed = this.unpin = this.pinnedOffset = null this.checkPosition() } Affix.VERSION = '3.2.0' Affix.RESET = 'affix affix-top affix-bottom' Affix.DEFAULTS = { offset: 0, target: window } Affix.prototype.getPinnedOffset = function () { if (this.pinnedOffset) return this.pinnedOffset this.$element.removeClass(Affix.RESET).addClass('affix') var scrollTop = this.$target.scrollTop() var position = this.$element.offset() return (this.pinnedOffset = position.top - scrollTop) } Affix.prototype.checkPositionWithEventLoop = function () { setTimeout($.proxy(this.checkPosition, this), 1) } Affix.prototype.checkPosition = function () { if (!this.$element.is(':visible')) return var scrollHeight = $(document).height() var scrollTop = this.$target.scrollTop() var position = this.$element.offset() var offset = this.options.offset var offsetTop = offset.top var offsetBottom = offset.bottom if (typeof offset != 'object') offsetBottom = offsetTop = offset if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false : offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' : offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false if (this.affixed === affix) return if (this.unpin != null) this.$element.css('top', '') var affixType = 'affix' + (affix ? '-' + affix : '') var e = $.Event(affixType + '.bs.affix') this.$element.trigger(e) if (e.isDefaultPrevented()) return this.affixed = affix this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null this.$element .removeClass(Affix.RESET) .addClass(affixType) .trigger($.Event(affixType.replace('affix', 'affixed'))) if (affix == 'bottom') { this.$element.offset({ top: scrollHeight - this.$element.height() - offsetBottom }) } } // AFFIX PLUGIN DEFINITION // ======================= function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.affix') var options = typeof option == 'object' && option if (!data) $this.data('bs.affix', (data = new Affix(this, options))) if (typeof option == 'string') data[option]() }) } var old = $.fn.affix $.fn.affix = Plugin $.fn.affix.Constructor = Affix // AFFIX NO CONFLICT // ================= $.fn.affix.noConflict = function () { $.fn.affix = old return this } // AFFIX DATA-API // ============== $(window).on('load', function () { $('[data-spy="affix"]').each(function () { var $spy = $(this) var data = $spy.data() data.offset = data.offset || {} if (data.offsetBottom) data.offset.bottom = data.offsetBottom if (data.offsetTop) data.offset.top = data.offsetTop Plugin.call($spy, data) }) }) }(jQuery); /* ======================================================================== * Bootstrap: alert.js v3.2.0 * http://getbootstrap.com/javascript/#alerts * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // ALERT CLASS DEFINITION // ====================== var dismiss = '[data-dismiss="alert"]' var Alert = function (el) { $(el).on('click', dismiss, this.close) } Alert.VERSION = '3.2.0' Alert.prototype.close = function (e) { var $this = $(this) var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = $(selector) if (e) e.preventDefault() if (!$parent.length) { $parent = $this.hasClass('alert') ? $this : $this.parent() } $parent.trigger(e = $.Event('close.bs.alert')) if (e.isDefaultPrevented()) return $parent.removeClass('in') function removeElement() { // detach from parent, fire event then clean up data $parent.detach().trigger('closed.bs.alert').remove() } $.support.transition && $parent.hasClass('fade') ? $parent .one('bsTransitionEnd', removeElement) .emulateTransitionEnd(150) : removeElement() } // ALERT PLUGIN DEFINITION // ======================= function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.alert') if (!data) $this.data('bs.alert', (data = new Alert(this))) if (typeof option == 'string') data[option].call($this) }) } var old = $.fn.alert $.fn.alert = Plugin $.fn.alert.Constructor = Alert // ALERT NO CONFLICT // ================= $.fn.alert.noConflict = function () { $.fn.alert = old return this } // ALERT DATA-API // ============== $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) }(jQuery); /* ======================================================================== * Bootstrap: button.js v3.2.0 * http://getbootstrap.com/javascript/#buttons * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // BUTTON PUBLIC CLASS DEFINITION // ============================== var Button = function (element, options) { this.$element = $(element) this.options = $.extend({}, Button.DEFAULTS, options) this.isLoading = false } Button.VERSION = '3.2.0' Button.DEFAULTS = { loadingText: 'loading...' } Button.prototype.setState = function (state) { var d = 'disabled' var $el = this.$element var val = $el.is('input') ? 'val' : 'html' var data = $el.data() state = state + 'Text' if (data.resetText == null) $el.data('resetText', $el[val]()) $el[val](data[state] == null ? this.options[state] : data[state]) // push to event loop to allow forms to submit setTimeout($.proxy(function () { if (state == 'loadingText') { this.isLoading = true $el.addClass(d).attr(d, d) } else if (this.isLoading) { this.isLoading = false $el.removeClass(d).removeAttr(d) } }, this), 0) } Button.prototype.toggle = function () { var changed = true var $parent = this.$element.closest('[data-toggle="buttons"]') if ($parent.length) { var $input = this.$element.find('input') if ($input.prop('type') == 'radio') { if ($input.prop('checked') && this.$element.hasClass('active')) changed = false else $parent.find('.active').removeClass('active') } if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') } if (changed) this.$element.toggleClass('active') } // BUTTON PLUGIN DEFINITION // ======================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.button') var options = typeof option == 'object' && option if (!data) $this.data('bs.button', (data = new Button(this, options))) if (option == 'toggle') data.toggle() else if (option) data.setState(option) }) } var old = $.fn.button $.fn.button = Plugin $.fn.button.Constructor = Button // BUTTON NO CONFLICT // ================== $.fn.button.noConflict = function () { $.fn.button = old return this } // BUTTON DATA-API // =============== $(document).on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { var $btn = $(e.target) if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') Plugin.call($btn, 'toggle') e.preventDefault() }) }(jQuery); /* ======================================================================== * Bootstrap: carousel.js v3.2.0 * http://getbootstrap.com/javascript/#carousel * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // CAROUSEL CLASS DEFINITION // ========================= var Carousel = function (element, options) { this.$element = $(element).on('keydown.bs.carousel', $.proxy(this.keydown, this)) this.$indicators = this.$element.find('.carousel-indicators') this.options = options this.paused = this.sliding = this.interval = this.$active = this.$items = null this.options.pause == 'hover' && this.$element .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) } Carousel.VERSION = '3.2.0' Carousel.DEFAULTS = { interval: 5000, pause: 'hover', wrap: true } Carousel.prototype.keydown = function (e) { switch (e.which) { case 37: this.prev(); break case 39: this.next(); break default: return } e.preventDefault() } Carousel.prototype.cycle = function (e) { e || (this.paused = false) this.interval && clearInterval(this.interval) this.options.interval && !this.paused && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) return this } Carousel.prototype.getItemIndex = function (item) { this.$items = item.parent().children('.item') return this.$items.index(item || this.$active) } Carousel.prototype.to = function (pos) { var that = this var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) if (pos > (this.$items.length - 1) || pos < 0) return if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" if (activeIndex == pos) return this.pause().cycle() return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) } Carousel.prototype.pause = function (e) { e || (this.paused = true) if (this.$element.find('.next, .prev').length && $.support.transition) { this.$element.trigger($.support.transition.end) this.cycle(true) } this.interval = clearInterval(this.interval) return this } Carousel.prototype.next = function () { if (this.sliding) return return this.slide('next') } Carousel.prototype.prev = function () { if (this.sliding) return return this.slide('prev') } Carousel.prototype.slide = function (type, next) { var $active = this.$element.find('.item.active') var $next = next || $active[type]() var isCycling = this.interval var direction = type == 'next' ? 'left' : 'right' var fallback = type == 'next' ? 'first' : 'last' var that = this if (!$next.length) { if (!this.options.wrap) return $next = this.$element.find('.item')[fallback]() } if ($next.hasClass('active')) return (this.sliding = false) var relatedTarget = $next[0] var slideEvent = $.Event('slide.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) this.$element.trigger(slideEvent) if (slideEvent.isDefaultPrevented()) return this.sliding = true isCycling && this.pause() if (this.$indicators.length) { this.$indicators.find('.active').removeClass('active') var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) $nextIndicator && $nextIndicator.addClass('active') } var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" if ($.support.transition && this.$element.hasClass('slide')) { $next.addClass(type) $next[0].offsetWidth // force reflow $active.addClass(direction) $next.addClass(direction) $active .one('bsTransitionEnd', function () { $next.removeClass([type, direction].join(' ')).addClass('active') $active.removeClass(['active', direction].join(' ')) that.sliding = false setTimeout(function () { that.$element.trigger(slidEvent) }, 0) }) .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000) } else { $active.removeClass('active') $next.addClass('active') this.sliding = false this.$element.trigger(slidEvent) } isCycling && this.cycle() return this } // CAROUSEL PLUGIN DEFINITION // ========================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.carousel') var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) var action = typeof option == 'string' ? option : options.slide if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) if (typeof option == 'number') data.to(option) else if (action) data[action]() else if (options.interval) data.pause().cycle() }) } var old = $.fn.carousel $.fn.carousel = Plugin $.fn.carousel.Constructor = Carousel // CAROUSEL NO CONFLICT // ==================== $.fn.carousel.noConflict = function () { $.fn.carousel = old return this } // CAROUSEL DATA-API // ================= $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { var href var $this = $(this) var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 if (!$target.hasClass('carousel')) return var options = $.extend({}, $target.data(), $this.data()) var slideIndex = $this.attr('data-slide-to') if (slideIndex) options.interval = false Plugin.call($target, options) if (slideIndex) { $target.data('bs.carousel').to(slideIndex) } e.preventDefault() }) $(window).on('load', function () { $('[data-ride="carousel"]').each(function () { var $carousel = $(this) Plugin.call($carousel, $carousel.data()) }) }) }(jQuery); /* ======================================================================== * Bootstrap: collapse.js v3.2.0 * http://getbootstrap.com/javascript/#collapse * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // COLLAPSE PUBLIC CLASS DEFINITION // ================================ var Collapse = function (element, options) { this.$element = $(element) this.options = $.extend({}, Collapse.DEFAULTS, options) this.transitioning = null if (this.options.parent) this.$parent = $(this.options.parent) if (this.options.toggle) this.toggle() } Collapse.VERSION = '3.2.0' Collapse.DEFAULTS = { toggle: true } Collapse.prototype.dimension = function () { var hasWidth = this.$element.hasClass('width') return hasWidth ? 'width' : 'height' } Collapse.prototype.show = function () { if (this.transitioning || this.$element.hasClass('in')) return var startEvent = $.Event('show.bs.collapse') this.$element.trigger(startEvent) if (startEvent.isDefaultPrevented()) return var actives = this.$parent && this.$parent.find('> .panel > .in') if (actives && actives.length) { var hasData = actives.data('bs.collapse') if (hasData && hasData.transitioning) return Plugin.call(actives, 'hide') hasData || actives.data('bs.collapse', null) } var dimension = this.dimension() this.$element .removeClass('collapse') .addClass('collapsing')[dimension](0) this.transitioning = 1 var complete = function () { this.$element .removeClass('collapsing') .addClass('collapse in')[dimension]('') this.transitioning = 0 this.$element .trigger('shown.bs.collapse') } if (!$.support.transition) return complete.call(this) var scrollSize = $.camelCase(['scroll', dimension].join('-')) this.$element .one('bsTransitionEnd', $.proxy(complete, this)) .emulateTransitionEnd(350)[dimension](this.$element[0][scrollSize]) } Collapse.prototype.hide = function () { if (this.transitioning || !this.$element.hasClass('in')) return var startEvent = $.Event('hide.bs.collapse') this.$element.trigger(startEvent) if (startEvent.isDefaultPrevented()) return var dimension = this.dimension() this.$element[dimension](this.$element[dimension]())[0].offsetHeight this.$element .addClass('collapsing') .removeClass('collapse') .removeClass('in') this.transitioning = 1 var complete = function () { this.transitioning = 0 this.$element .trigger('hidden.bs.collapse') .removeClass('collapsing') .addClass('collapse') } if (!$.support.transition) return complete.call(this) this.$element [dimension](0) .one('bsTransitionEnd', $.proxy(complete, this)) .emulateTransitionEnd(350) } Collapse.prototype.toggle = function () { this[this.$element.hasClass('in') ? 'hide' : 'show']() } // COLLAPSE PLUGIN DEFINITION // ========================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.collapse') var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) if (!data && options.toggle && option == 'show') option = !option if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) if (typeof option == 'string') data[option]() }) } var old = $.fn.collapse $.fn.collapse = Plugin $.fn.collapse.Constructor = Collapse // COLLAPSE NO CONFLICT // ==================== $.fn.collapse.noConflict = function () { $.fn.collapse = old return this } // COLLAPSE DATA-API // ================= $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { var href var $this = $(this) var target = $this.attr('data-target') || e.preventDefault() || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 var $target = $(target) var data = $target.data('bs.collapse') var option = data ? 'toggle' : $this.data() var parent = $this.attr('data-parent') var $parent = parent && $(parent) if (!data || !data.transitioning) { if ($parent) $parent.find('[data-toggle="collapse"][data-parent="' + parent + '"]').not($this).addClass('collapsed') $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed') } Plugin.call($target, option) }) }(jQuery); /* ======================================================================== * Bootstrap: dropdown.js v3.2.0 * http://getbootstrap.com/javascript/#dropdowns * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // DROPDOWN CLASS DEFINITION // ========================= var backdrop = '.dropdown-backdrop' var toggle = '[data-toggle="dropdown"]' var Dropdown = function (element) { $(element).on('click.bs.dropdown', this.toggle) } Dropdown.VERSION = '3.2.0' Dropdown.prototype.toggle = function (e) { var $this = $(this) if ($this.is('.disabled, :disabled')) return var $parent = getParent($this) var isActive = $parent.hasClass('open') clearMenus() if (!isActive) { if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { // if mobile we use a backdrop because click events don't delegate $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus) } var relatedTarget = { relatedTarget: this } $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) if (e.isDefaultPrevented()) return $this.trigger('focus') $parent .toggleClass('open') .trigger('shown.bs.dropdown', relatedTarget) } return false } Dropdown.prototype.keydown = function (e) { if (!/(38|40|27)/.test(e.keyCode)) return var $this = $(this) e.preventDefault() e.stopPropagation() if ($this.is('.disabled, :disabled')) return var $parent = getParent($this) var isActive = $parent.hasClass('open') if (!isActive || (isActive && e.keyCode == 27)) { if (e.which == 27) $parent.find(toggle).trigger('focus') return $this.trigger('click') } var desc = ' li:not(.divider):visible a' var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc) if (!$items.length) return var index = $items.index($items.filter(':focus')) if (e.keyCode == 38 && index > 0) index-- // up if (e.keyCode == 40 && index < $items.length - 1) index++ // down if (!~index) index = 0 $items.eq(index).trigger('focus') } function clearMenus(e) { if (e && e.which === 3) return $(backdrop).remove() $(toggle).each(function () { var $parent = getParent($(this)) var relatedTarget = { relatedTarget: this } if (!$parent.hasClass('open')) return $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) if (e.isDefaultPrevented()) return $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget) }) } function getParent($this) { var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = selector && $(selector) return $parent && $parent.length ? $parent : $this.parent() } // DROPDOWN PLUGIN DEFINITION // ========================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.dropdown') if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) if (typeof option == 'string') data[option].call($this) }) } var old = $.fn.dropdown $.fn.dropdown = Plugin $.fn.dropdown.Constructor = Dropdown // DROPDOWN NO CONFLICT // ==================== $.fn.dropdown.noConflict = function () { $.fn.dropdown = old return this } // APPLY TO STANDARD DROPDOWN ELEMENTS // =================================== $(document) .on('click.bs.dropdown.data-api', clearMenus) .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) .on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown) }(jQuery); /* ======================================================================== * Bootstrap: tab.js v3.2.0 * http://getbootstrap.com/javascript/#tabs * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // TAB CLASS DEFINITION // ==================== var Tab = function (element) { this.element = $(element) } Tab.VERSION = '3.2.0' Tab.prototype.show = function () { var $this = this.element var $ul = $this.closest('ul:not(.dropdown-menu)') var selector = $this.data('target') if (!selector) { selector = $this.attr('href') selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } if ($this.parent('li').hasClass('active')) return var previous = $ul.find('.active:last a')[0] var e = $.Event('show.bs.tab', { relatedTarget: previous }) $this.trigger(e) if (e.isDefaultPrevented()) return var $target = $(selector) this.activate($this.closest('li'), $ul) this.activate($target, $target.parent(), function () { $this.trigger({ type: 'shown.bs.tab', relatedTarget: previous }) }) } Tab.prototype.activate = function (element, container, callback) { var $active = container.find('> .active') var transition = callback && $.support.transition && $active.hasClass('fade') function next() { $active .removeClass('active') .find('> .dropdown-menu > .active') .removeClass('active') element.addClass('active') if (transition) { element[0].offsetWidth // reflow for transition element.addClass('in') } else { element.removeClass('fade') } if (element.parent('.dropdown-menu')) { element.closest('li.dropdown').addClass('active') } callback && callback() } transition ? $active .one('bsTransitionEnd', next) .emulateTransitionEnd(150) : next() $active.removeClass('in') } // TAB PLUGIN DEFINITION // ===================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.tab') if (!data) $this.data('bs.tab', (data = new Tab(this))) if (typeof option == 'string') data[option]() }) } var old = $.fn.tab $.fn.tab = Plugin $.fn.tab.Constructor = Tab // TAB NO CONFLICT // =============== $.fn.tab.noConflict = function () { $.fn.tab = old return this } // TAB DATA-API // ============ $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) { e.preventDefault() Plugin.call($(this), 'show') }) }(jQuery); /* ======================================================================== * Bootstrap: transition.js v3.2.0 * http://getbootstrap.com/javascript/#transitions * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) // ============================================================ function transitionEnd() { var el = document.createElement('bootstrap') var transEndEventNames = { WebkitTransition : 'webkitTransitionEnd', MozTransition : 'transitionend', OTransition : 'oTransitionEnd otransitionend', transition : 'transitionend' } for (var name in transEndEventNames) { if (el.style[name] !== undefined) { return { end: transEndEventNames[name] } } } return false // explicit for ie8 ( ._.) } // http://blog.alexmaccaw.com/css-transitions $.fn.emulateTransitionEnd = function (duration) { var called = false var $el = this $(this).one('bsTransitionEnd', function () { called = true }) var callback = function () { if (!called) $($el).trigger($.support.transition.end) } setTimeout(callback, duration) return this } $(function () { $.support.transition = transitionEnd() if (!$.support.transition) return $.event.special.bsTransitionEnd = { bindType: $.support.transition.end, delegateType: $.support.transition.end, handle: function (e) { if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) } } }) }(jQuery); /* ======================================================================== * Bootstrap: scrollspy.js v3.2.0 * http://getbootstrap.com/javascript/#scrollspy * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // SCROLLSPY CLASS DEFINITION // ========================== function ScrollSpy(element, options) { var process = $.proxy(this.process, this) this.$body = $('body') this.$scrollElement = $(element).is('body') ? $(window) : $(element) this.options = $.extend({}, ScrollSpy.DEFAULTS, options) this.selector = (this.options.target || '') + ' .nav li > a' this.offsets = [] this.targets = [] this.activeTarget = null this.scrollHeight = 0 this.$scrollElement.on('scroll.bs.scrollspy', process) this.refresh() this.process() } ScrollSpy.VERSION = '3.2.0' ScrollSpy.DEFAULTS = { offset: 10 } ScrollSpy.prototype.getScrollHeight = function () { return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight) } ScrollSpy.prototype.refresh = function () { var offsetMethod = 'offset' var offsetBase = 0 if (!$.isWindow(this.$scrollElement[0])) { offsetMethod = 'position' offsetBase = this.$scrollElement.scrollTop() } this.offsets = [] this.targets = [] this.scrollHeight = this.getScrollHeight() var self = this this.$body .find(this.selector) .map(function () { var $el = $(this) var href = $el.data('target') || $el.attr('href') var $href = /^#./.test(href) && $(href) return ($href && $href.length && $href.is(':visible') && [[$href[offsetMethod]().top + offsetBase, href]]) || null }) .sort(function (a, b) { return a[0] - b[0] }) .each(function () { self.offsets.push(this[0]) self.targets.push(this[1]) }) } ScrollSpy.prototype.process = function () { var scrollTop = this.$scrollElement.scrollTop() + this.options.offset var scrollHeight = this.getScrollHeight() var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height() var offsets = this.offsets var targets = this.targets var activeTarget = this.activeTarget var i if (this.scrollHeight != scrollHeight) { this.refresh() } if (scrollTop >= maxScroll) { return activeTarget != (i = targets[targets.length - 1]) && this.activate(i) } if (activeTarget && scrollTop <= offsets[0]) { return activeTarget != (i = targets[0]) && this.activate(i) } for (i = offsets.length; i--;) { activeTarget != targets[i] && scrollTop >= offsets[i] && (!offsets[i + 1] || scrollTop <= offsets[i + 1]) && this.activate(targets[i]) } } ScrollSpy.prototype.activate = function (target) { this.activeTarget = target $(this.selector) .parentsUntil(this.options.target, '.active') .removeClass('active') var selector = this.selector + '[data-target="' + target + '"],' + this.selector + '[href="' + target + '"]' var active = $(selector) .parents('li') .addClass('active') if (active.parent('.dropdown-menu').length) { active = active .closest('li.dropdown') .addClass('active') } active.trigger('activate.bs.scrollspy') } // SCROLLSPY PLUGIN DEFINITION // =========================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.scrollspy') var options = typeof option == 'object' && option if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) if (typeof option == 'string') data[option]() }) } var old = $.fn.scrollspy $.fn.scrollspy = Plugin $.fn.scrollspy.Constructor = ScrollSpy // SCROLLSPY NO CONFLICT // ===================== $.fn.scrollspy.noConflict = function () { $.fn.scrollspy = old return this } // SCROLLSPY DATA-API // ================== $(window).on('load.bs.scrollspy.data-api', function () { $('[data-spy="scroll"]').each(function () { var $spy = $(this) Plugin.call($spy, $spy.data()) }) }) }(jQuery); /* ======================================================================== * Bootstrap: modal.js v3.2.0 * http://getbootstrap.com/javascript/#modals * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // MODAL CLASS DEFINITION // ====================== var Modal = function (element, options) { this.options = options this.$body = $(document.body) this.$element = $(element) this.$backdrop = this.isShown = null this.scrollbarWidth = 0 if (this.options.remote) { this.$element .find('.modal-content') .load(this.options.remote, $.proxy(function () { this.$element.trigger('loaded.bs.modal') }, this)) } } Modal.VERSION = '3.2.0' Modal.DEFAULTS = { backdrop: true, keyboard: true, show: true } Modal.prototype.toggle = function (_relatedTarget) { return this.isShown ? this.hide() : this.show(_relatedTarget) } Modal.prototype.show = function (_relatedTarget) { var that = this var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) this.$element.trigger(e) if (this.isShown || e.isDefaultPrevented()) return this.isShown = true this.checkScrollbar() this.$body.addClass('modal-open') this.setScrollbar() this.escape() this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) this.backdrop(function () { var transition = $.support.transition && that.$element.hasClass('fade') if (!that.$element.parent().length) { that.$element.appendTo(that.$body) // don't move modals dom position } that.$element .show() .scrollTop(0) if (transition) { that.$element[0].offsetWidth // force reflow } that.$element .addClass('in') .attr('aria-hidden', false) that.enforceFocus() var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) transition ? that.$element.find('.modal-dialog') // wait for modal to slide in .one('bsTransitionEnd', function () { that.$element.trigger('focus').trigger(e) }) .emulateTransitionEnd(300) : that.$element.trigger('focus').trigger(e) }) } Modal.prototype.hide = function (e) { if (e) e.preventDefault() e = $.Event('hide.bs.modal') this.$element.trigger(e) if (!this.isShown || e.isDefaultPrevented()) return this.isShown = false this.$body.removeClass('modal-open') this.resetScrollbar() this.escape() $(document).off('focusin.bs.modal') this.$element .removeClass('in') .attr('aria-hidden', true) .off('click.dismiss.bs.modal') $.support.transition && this.$element.hasClass('fade') ? this.$element .one('bsTransitionEnd', $.proxy(this.hideModal, this)) .emulateTransitionEnd(300) : this.hideModal() } Modal.prototype.enforceFocus = function () { $(document) .off('focusin.bs.modal') // guard against infinite focus loop .on('focusin.bs.modal', $.proxy(function (e) { if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { this.$element.trigger('focus') } }, this)) } Modal.prototype.escape = function () { if (this.isShown && this.options.keyboard) { this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) { e.which == 27 && this.hide() }, this)) } else if (!this.isShown) { this.$element.off('keyup.dismiss.bs.modal') } } Modal.prototype.hideModal = function () { var that = this this.$element.hide() this.backdrop(function () { that.$element.trigger('hidden.bs.modal') }) } Modal.prototype.removeBackdrop = function () { this.$backdrop && this.$backdrop.remove() this.$backdrop = null } Modal.prototype.backdrop = function (callback) { var that = this var animate = this.$element.hasClass('fade') ? 'fade' : '' if (this.isShown && this.options.backdrop) { var doAnimate = $.support.transition && animate this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />') .appendTo(this.$body) this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { if (e.target !== e.currentTarget) return this.options.backdrop == 'static' ? this.$element[0].focus.call(this.$element[0]) : this.hide.call(this) }, this)) if (doAnimate) this.$backdrop[0].offsetWidth // force reflow this.$backdrop.addClass('in') if (!callback) return doAnimate ? this.$backdrop .one('bsTransitionEnd', callback) .emulateTransitionEnd(150) : callback() } else if (!this.isShown && this.$backdrop) { this.$backdrop.removeClass('in') var callbackRemove = function () { that.removeBackdrop() callback && callback() } $.support.transition && this.$element.hasClass('fade') ? this.$backdrop .one('bsTransitionEnd', callbackRemove) .emulateTransitionEnd(150) : callbackRemove() } else if (callback) { callback() } } Modal.prototype.checkScrollbar = function () { if (document.body.clientWidth >= window.innerWidth) return this.scrollbarWidth = this.scrollbarWidth || this.measureScrollbar() } Modal.prototype.setScrollbar = function () { var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) } Modal.prototype.resetScrollbar = function () { this.$body.css('padding-right', '') } Modal.prototype.measureScrollbar = function () { // thx walsh var scrollDiv = document.createElement('div') scrollDiv.className = 'modal-scrollbar-measure' this.$body.append(scrollDiv) var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth this.$body[0].removeChild(scrollDiv) return scrollbarWidth } // MODAL PLUGIN DEFINITION // ======================= function Plugin(option, _relatedTarget) { return this.each(function () { var $this = $(this) var data = $this.data('bs.modal') var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) if (!data) $this.data('bs.modal', (data = new Modal(this, options))) if (typeof option == 'string') data[option](_relatedTarget) else if (options.show) data.show(_relatedTarget) }) } var old = $.fn.modal $.fn.modal = Plugin $.fn.modal.Constructor = Modal // MODAL NO CONFLICT // ================= $.fn.modal.noConflict = function () { $.fn.modal = old return this } // MODAL DATA-API // ============== $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { var $this = $(this) var href = $this.attr('href') var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) if ($this.is('a')) e.preventDefault() $target.one('show.bs.modal', function (showEvent) { if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown $target.one('hidden.bs.modal', function () { $this.is(':visible') && $this.trigger('focus') }) }) Plugin.call($target, option, this) }) }(jQuery); /* ======================================================================== * Bootstrap: tooltip.js v3.2.0 * http://getbootstrap.com/javascript/#tooltip * Inspired by the original jQuery.tipsy by Jason Frame * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // TOOLTIP PUBLIC CLASS DEFINITION // =============================== var Tooltip = function (element, options) { this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null this.init('tooltip', element, options) } Tooltip.VERSION = '3.2.0' Tooltip.DEFAULTS = { animation: true, placement: 'top', selector: false, template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', trigger: 'hover focus', title: '', delay: 0, html: false, container: false, viewport: { selector: 'body', padding: 0 } } Tooltip.prototype.init = function (type, element, options) { this.enabled = true this.type = type this.$element = $(element) this.options = this.getOptions(options) this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport) var triggers = this.options.trigger.split(' ') for (var i = triggers.length; i--;) { var trigger = triggers[i] if (trigger == 'click') { this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) } else if (trigger != 'manual') { var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) } } this.options.selector ? (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : this.fixTitle() } Tooltip.prototype.getDefaults = function () { return Tooltip.DEFAULTS } Tooltip.prototype.getOptions = function (options) { options = $.extend({}, this.getDefaults(), this.$element.data(), options) if (options.delay && typeof options.delay == 'number') { options.delay = { show: options.delay, hide: options.delay } } return options } Tooltip.prototype.getDelegateOptions = function () { var options = {} var defaults = this.getDefaults() this._options && $.each(this._options, function (key, value) { if (defaults[key] != value) options[key] = value }) return options } Tooltip.prototype.enter = function (obj) { var self = obj instanceof this.constructor ? obj : $(obj.currentTarget).data('bs.' + this.type) if (!self) { self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) $(obj.currentTarget).data('bs.' + this.type, self) } clearTimeout(self.timeout) self.hoverState = 'in' if (!self.options.delay || !self.options.delay.show) return self.show() self.timeout = setTimeout(function () { if (self.hoverState == 'in') self.show() }, self.options.delay.show) } Tooltip.prototype.leave = function (obj) { var self = obj instanceof this.constructor ? obj : $(obj.currentTarget).data('bs.' + this.type) if (!self) { self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) $(obj.currentTarget).data('bs.' + this.type, self) } clearTimeout(self.timeout) self.hoverState = 'out' if (!self.options.delay || !self.options.delay.hide) return self.hide() self.timeout = setTimeout(function () { if (self.hoverState == 'out') self.hide() }, self.options.delay.hide) } Tooltip.prototype.show = function () { var e = $.Event('show.bs.' + this.type) if (this.hasContent() && this.enabled) { this.$element.trigger(e) var inDom = $.contains(document.documentElement, this.$element[0]) if (e.isDefaultPrevented() || !inDom) return var that = this var $tip = this.tip() var tipId = this.getUID(this.type) this.setContent() $tip.attr('id', tipId) this.$element.attr('aria-describedby', tipId) if (this.options.animation) $tip.addClass('fade') var placement = typeof this.options.placement == 'function' ? this.options.placement.call(this, $tip[0], this.$element[0]) : this.options.placement var autoToken = /\s?auto?\s?/i var autoPlace = autoToken.test(placement) if (autoPlace) placement = placement.replace(autoToken, '') || 'top' $tip .detach() .css({ top: 0, left: 0, display: 'block' }) .addClass(placement) .data('bs.' + this.type, this) this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) var pos = this.getPosition() var actualWidth = $tip[0].offsetWidth var actualHeight = $tip[0].offsetHeight if (autoPlace) { var orgPlacement = placement var $parent = this.$element.parent() var parentDim = this.getPosition($parent) placement = placement == 'bottom' && pos.top + pos.height + actualHeight - parentDim.scroll > parentDim.height ? 'top' : placement == 'top' && pos.top - parentDim.scroll - actualHeight < 0 ? 'bottom' : placement == 'right' && pos.right + actualWidth > parentDim.width ? 'left' : placement == 'left' && pos.left - actualWidth < parentDim.left ? 'right' : placement $tip .removeClass(orgPlacement) .addClass(placement) } var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) this.applyPlacement(calculatedOffset, placement) var complete = function () { that.$element.trigger('shown.bs.' + that.type) that.hoverState = null } $.support.transition && this.$tip.hasClass('fade') ? $tip .one('bsTransitionEnd', complete) .emulateTransitionEnd(150) : complete() } } Tooltip.prototype.applyPlacement = function (offset, placement) { var $tip = this.tip() var width = $tip[0].offsetWidth var height = $tip[0].offsetHeight // manually read margins because getBoundingClientRect includes difference var marginTop = parseInt($tip.css('margin-top'), 10) var marginLeft = parseInt($tip.css('margin-left'), 10) // we must check for NaN for ie 8/9 if (isNaN(marginTop)) marginTop = 0 if (isNaN(marginLeft)) marginLeft = 0 offset.top = offset.top + marginTop offset.left = offset.left + marginLeft // $.fn.offset doesn't round pixel values // so we use setOffset directly with our own function B-0 $.offset.setOffset($tip[0], $.extend({ using: function (props) { $tip.css({ top: Math.round(props.top), left: Math.round(props.left) }) } }, offset), 0) $tip.addClass('in') // check to see if placing tip in new offset caused the tip to resize itself var actualWidth = $tip[0].offsetWidth var actualHeight = $tip[0].offsetHeight if (placement == 'top' && actualHeight != height) { offset.top = offset.top + height - actualHeight } var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) if (delta.left) offset.left += delta.left else offset.top += delta.top var arrowDelta = delta.left ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight var arrowPosition = delta.left ? 'left' : 'top' var arrowOffsetPosition = delta.left ? 'offsetWidth' : 'offsetHeight' $tip.offset(offset) this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], arrowPosition) } Tooltip.prototype.replaceArrow = function (delta, dimension, position) { this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '') } Tooltip.prototype.setContent = function () { var $tip = this.tip() var title = this.getTitle() $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) $tip.removeClass('fade in top bottom left right') } Tooltip.prototype.hide = function () { var that = this var $tip = this.tip() var e = $.Event('hide.bs.' + this.type) this.$element.removeAttr('aria-describedby') function complete() { if (that.hoverState != 'in') $tip.detach() that.$element.trigger('hidden.bs.' + that.type) } this.$element.trigger(e) if (e.isDefaultPrevented()) return $tip.removeClass('in') $.support.transition && this.$tip.hasClass('fade') ? $tip .one('bsTransitionEnd', complete) .emulateTransitionEnd(150) : complete() this.hoverState = null return this } Tooltip.prototype.fixTitle = function () { var $e = this.$element if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') { $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') } } Tooltip.prototype.hasContent = function () { return this.getTitle() } Tooltip.prototype.getPosition = function ($element) { $element = $element || this.$element var el = $element[0] var isBody = el.tagName == 'BODY' return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : null, { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop(), width: isBody ? $(window).width() : $element.outerWidth(), height: isBody ? $(window).height() : $element.outerHeight() }, isBody ? { top: 0, left: 0 } : $element.offset()) } Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } } Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { var delta = { top: 0, left: 0 } if (!this.$viewport) return delta var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 var viewportDimensions = this.getPosition(this.$viewport) if (/right|left/.test(placement)) { var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight if (topEdgeOffset < viewportDimensions.top) { // top overflow delta.top = viewportDimensions.top - topEdgeOffset } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset } } else { var leftEdgeOffset = pos.left - viewportPadding var rightEdgeOffset = pos.left + viewportPadding + actualWidth if (leftEdgeOffset < viewportDimensions.left) { // left overflow delta.left = viewportDimensions.left - leftEdgeOffset } else if (rightEdgeOffset > viewportDimensions.width) { // right overflow delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset } } return delta } Tooltip.prototype.getTitle = function () { var title var $e = this.$element var o = this.options title = $e.attr('data-original-title') || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) return title } Tooltip.prototype.getUID = function (prefix) { do prefix += ~~(Math.random() * 1000000) while (document.getElementById(prefix)) return prefix } Tooltip.prototype.tip = function () { return (this.$tip = this.$tip || $(this.options.template)) } Tooltip.prototype.arrow = function () { return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) } Tooltip.prototype.validate = function () { if (!this.$element[0].parentNode) { this.hide() this.$element = null this.options = null } } Tooltip.prototype.enable = function () { this.enabled = true } Tooltip.prototype.disable = function () { this.enabled = false } Tooltip.prototype.toggleEnabled = function () { this.enabled = !this.enabled } Tooltip.prototype.toggle = function (e) { var self = this if (e) { self = $(e.currentTarget).data('bs.' + this.type) if (!self) { self = new this.constructor(e.currentTarget, this.getDelegateOptions()) $(e.currentTarget).data('bs.' + this.type, self) } } self.tip().hasClass('in') ? self.leave(self) : self.enter(self) } Tooltip.prototype.destroy = function () { clearTimeout(this.timeout) this.hide().$element.off('.' + this.type).removeData('bs.' + this.type) } // TOOLTIP PLUGIN DEFINITION // ========================= function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.tooltip') var options = typeof option == 'object' && option if (!data && option == 'destroy') return if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) if (typeof option == 'string') data[option]() }) } var old = $.fn.tooltip $.fn.tooltip = Plugin $.fn.tooltip.Constructor = Tooltip // TOOLTIP NO CONFLICT // =================== $.fn.tooltip.noConflict = function () { $.fn.tooltip = old return this } }(jQuery); /* ======================================================================== * Bootstrap: popover.js v3.2.0 * http://getbootstrap.com/javascript/#popovers * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // POPOVER PUBLIC CLASS DEFINITION // =============================== var Popover = function (element, options) { this.init('popover', element, options) } if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') Popover.VERSION = '3.2.0' Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { placement: 'right', trigger: 'click', content: '', template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' }) // NOTE: POPOVER EXTENDS tooltip.js // ================================ Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) Popover.prototype.constructor = Popover Popover.prototype.getDefaults = function () { return Popover.DEFAULTS } Popover.prototype.setContent = function () { var $tip = this.tip() var title = this.getTitle() var content = this.getContent() $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) $tip.find('.popover-content').empty()[ // we use append for html objects to maintain js events this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' ](content) $tip.removeClass('fade top bottom left right in') // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do // this manually by checking the contents. if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() } Popover.prototype.hasContent = function () { return this.getTitle() || this.getContent() } Popover.prototype.getContent = function () { var $e = this.$element var o = this.options return $e.attr('data-content') || (typeof o.content == 'function' ? o.content.call($e[0]) : o.content) } Popover.prototype.arrow = function () { return (this.$arrow = this.$arrow || this.tip().find('.arrow')) } Popover.prototype.tip = function () { if (!this.$tip) this.$tip = $(this.options.template) return this.$tip } // POPOVER PLUGIN DEFINITION // ========================= function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.popover') var options = typeof option == 'object' && option if (!data && option == 'destroy') return if (!data) $this.data('bs.popover', (data = new Popover(this, options))) if (typeof option == 'string') data[option]() }) } var old = $.fn.popover $.fn.popover = Plugin $.fn.popover.Constructor = Popover // POPOVER NO CONFLICT // =================== $.fn.popover.noConflict = function () { $.fn.popover = old return this } }(jQuery); (function($) { window.NestedFormEvents = function() { this.addFields = $.proxy(this.addFields, this); this.removeFields = $.proxy(this.removeFields, this); }; NestedFormEvents.prototype = { addFields: function(e) { // Setup var link = e.currentTarget; var assoc = $(link).data('association'); // Name of child var blueprint = $('#' + $(link).data('blueprint-id')); var content = blueprint.data('blueprint'); // Fields template // Make the context correct by replacing <parents> with the generated ID // of each of the parent objects var context = ($(link).closest('.fields').closestChild('input, textarea, select').eq(0).attr('name') || '').replace(new RegExp('\[[a-z_]+\]$'), ''); // context will be something like this for a brand new form: // project[tasks_attributes][1255929127459][assignments_attributes][1255929128105] // or for an edit form: // project[tasks_attributes][0][assignments_attributes][1] if (context) { var parentNames = context.match(/[a-z_]+_attributes(?=\]\[(new_)?\d+\])/g) || []; var parentIds = context.match(/[0-9]+/g) || []; for(var i = 0; i < parentNames.length; i++) { if(parentIds[i]) { content = content.replace( new RegExp('(_' + parentNames[i] + ')_.+?_', 'g'), '$1_' + parentIds[i] + '_'); content = content.replace( new RegExp('(\\[' + parentNames[i] + '\\])\\[.+?\\]', 'g'), '$1[' + parentIds[i] + ']'); } } } // Make a unique ID for the new child var regexp = new RegExp('new_' + assoc, 'g'); var new_id = this.newId(); content = $.trim(content.replace(regexp, new_id)); var field = this.insertFields(content, assoc, link); // bubble up event upto document (through form) field .trigger({ type: 'nested:fieldAdded', field: field }) .trigger({ type: 'nested:fieldAdded:' + assoc, field: field }); return false; }, newId: function() { return new Date().getTime(); }, insertFields: function(content, assoc, link) { var target = $(link).data('target'); if (target) { return $(content).appendTo($(target)); } else { return $(content).insertBefore(link); } }, removeFields: function(e) { var $link = $(e.currentTarget), assoc = $link.data('association'); // Name of child to be removed var hiddenField = $link.prev('input[type=hidden]'); hiddenField.val('1'); var field = $link.closest('.fields'); field.hide(); field .trigger({ type: 'nested:fieldRemoved', field: field }) .trigger({ type: 'nested:fieldRemoved:' + assoc, field: field }); return false; } }; window.nestedFormEvents = new NestedFormEvents(); $(document) .delegate('form a.add_nested_fields', 'click', nestedFormEvents.addFields) .delegate('form a.remove_nested_fields', 'click', nestedFormEvents.removeFields); })(jQuery); // http://plugins.jquery.com/project/closestChild /* * Copyright 2011, Tobias Lindig * * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. * */ (function($) { $.fn.closestChild = function(selector) { // breadth first search for the first matched node if (selector && selector != '') { var queue = []; queue.push(this); while(queue.length > 0) { var node = queue.shift(); var children = node.children(); for(var i = 0; i < children.length; ++i) { var child = $(children[i]); if (child.is(selector)) { return child; //well, we found one } queue.push(child); } } } return $();//nothing found }; })(jQuery); /*! DataTables 1.10.7 * ©2008-2015 SpryMedia Ltd - datatables.net/license */ (function(Ea,Q,k){var P=function(h){function W(a){var b,c,e={};h.each(a,function(d){if((b=d.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" "))c=d.replace(b[0],b[2].toLowerCase()),e[c]=d,"o"===b[1]&&W(a[d])});a._hungarianMap=e}function H(a,b,c){a._hungarianMap||W(a);var e;h.each(b,function(d){e=a._hungarianMap[d];if(e!==k&&(c||b[e]===k))"o"===e.charAt(0)?(b[e]||(b[e]={}),h.extend(!0,b[e],b[d]),H(a[e],b[e],c)):b[e]=b[d]})}function P(a){var b=m.defaults.oLanguage,c=a.sZeroRecords; !a.sEmptyTable&&(c&&"No data available in table"===b.sEmptyTable)&&E(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&(c&&"Loading..."===b.sLoadingRecords)&&E(a,a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&db(a)}function eb(a){A(a,"ordering","bSort");A(a,"orderMulti","bSortMulti");A(a,"orderClasses","bSortClasses");A(a,"orderCellsTop","bSortCellsTop");A(a,"order","aaSorting");A(a,"orderFixed","aaSortingFixed");A(a,"paging","bPaginate"); A(a,"pagingType","sPaginationType");A(a,"pageLength","iDisplayLength");A(a,"searching","bFilter");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&H(m.models.oSearch,a[b])}function fb(a){A(a,"orderable","bSortable");A(a,"orderData","aDataSort");A(a,"orderSequence","asSorting");A(a,"orderDataType","sortDataType");var b=a.aDataSort;b&&!h.isArray(b)&&(a.aDataSort=[b])}function gb(a){var a=a.oBrowser,b=h("<div/>").css({position:"absolute",top:0,left:0,height:1,width:1,overflow:"hidden"}).append(h("<div/>").css({position:"absolute", top:1,left:1,width:100,overflow:"scroll"}).append(h('<div class="test"/>').css({width:"100%",height:10}))).appendTo("body"),c=b.find(".test");a.bScrollOversize=100===c[0].offsetWidth;a.bScrollbarLeft=1!==Math.round(c.offset().left);b.remove()}function hb(a,b,c,e,d,f){var g,j=!1;c!==k&&(g=c,j=!0);for(;e!==d;)a.hasOwnProperty(e)&&(g=j?b(g,a[e],e,a):a[e],j=!0,e+=f);return g}function Fa(a,b){var c=m.defaults.column,e=a.aoColumns.length,c=h.extend({},m.models.oColumn,c,{nTh:b?b:Q.createElement("th"),sTitle:c.sTitle? c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[e],mData:c.mData?c.mData:e,idx:e});a.aoColumns.push(c);c=a.aoPreSearchCols;c[e]=h.extend({},m.models.oSearch,c[e]);ka(a,e,h(b).data())}function ka(a,b,c){var b=a.aoColumns[b],e=a.oClasses,d=h(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=d.attr("width")||null;var f=(d.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);f&&(b.sWidthOrig=f[1])}c!==k&&null!==c&&(fb(c),H(m.defaults.column,c),c.mDataProp!==k&&!c.mData&&(c.mData=c.mDataProp),c.sType&& (b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),h.extend(b,c),E(b,c,"sWidth","sWidthOrig"),c.iDataSort!==k&&(b.aDataSort=[c.iDataSort]),E(b,c,"aDataSort"));var g=b.mData,j=R(g),i=b.mRender?R(b.mRender):null,c=function(a){return"string"===typeof a&&-1!==a.indexOf("@")};b._bAttrSrc=h.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b.fnGetData=function(a,b,c){var e=j(a,b,k,c);return i&&b?i(e,b,a,c):e};b.fnSetData=function(a,b,c){return S(g)(a,b,c)};"number"!==typeof g&& (a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,d.addClass(e.sSortableNone));a=-1!==h.inArray("asc",b.asSorting);c=-1!==h.inArray("desc",b.asSorting);!b.bSortable||!a&&!c?(b.sSortingClass=e.sSortableNone,b.sSortingClassJUI=""):a&&!c?(b.sSortingClass=e.sSortableAsc,b.sSortingClassJUI=e.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=e.sSortableDesc,b.sSortingClassJUI=e.sSortJUIDescAllowed):(b.sSortingClass=e.sSortable,b.sSortingClassJUI=e.sSortJUI)}function X(a){if(!1!==a.oFeatures.bAutoWidth){var b= a.aoColumns;Ga(a);for(var c=0,e=b.length;c<e;c++)b[c].nTh.style.width=b[c].sWidth}b=a.oScroll;(""!==b.sY||""!==b.sX)&&Y(a);w(a,null,"column-sizing",[a])}function la(a,b){var c=Z(a,"bVisible");return"number"===typeof c[b]?c[b]:null}function $(a,b){var c=Z(a,"bVisible"),c=h.inArray(b,c);return-1!==c?c:null}function aa(a){return Z(a,"bVisible").length}function Z(a,b){var c=[];h.map(a.aoColumns,function(a,d){a[b]&&c.push(d)});return c}function Ha(a){var b=a.aoColumns,c=a.aoData,e=m.ext.type.detect,d, f,g,j,i,h,l,q,n;d=0;for(f=b.length;d<f;d++)if(l=b[d],n=[],!l.sType&&l._sManualType)l.sType=l._sManualType;else if(!l.sType){g=0;for(j=e.length;g<j;g++){i=0;for(h=c.length;i<h;i++){n[i]===k&&(n[i]=x(a,i,d,"type"));q=e[g](n[i],a);if(!q&&g!==e.length-1)break;if("html"===q)break}if(q){l.sType=q;break}}l.sType||(l.sType="string")}}function ib(a,b,c,e){var d,f,g,j,i,o,l=a.aoColumns;if(b)for(d=b.length-1;0<=d;d--){o=b[d];var q=o.targets!==k?o.targets:o.aTargets;h.isArray(q)||(q=[q]);f=0;for(g=q.length;f< g;f++)if("number"===typeof q[f]&&0<=q[f]){for(;l.length<=q[f];)Fa(a);e(q[f],o)}else if("number"===typeof q[f]&&0>q[f])e(l.length+q[f],o);else if("string"===typeof q[f]){j=0;for(i=l.length;j<i;j++)("_all"==q[f]||h(l[j].nTh).hasClass(q[f]))&&e(j,o)}}if(c){d=0;for(a=c.length;d<a;d++)e(d,c[d])}}function K(a,b,c,e){var d=a.aoData.length,f=h.extend(!0,{},m.models.oRow,{src:c?"dom":"data"});f._aData=b;a.aoData.push(f);for(var b=a.aoColumns,f=0,g=b.length;f<g;f++)c&&Ia(a,d,f,x(a,d,f)),b[f].sType=null;a.aiDisplayMaster.push(d); (c||!a.oFeatures.bDeferRender)&&Ja(a,d,c,e);return d}function ma(a,b){var c;b instanceof h||(b=h(b));return b.map(function(b,d){c=na(a,d);return K(a,c.data,d,c.cells)})}function x(a,b,c,e){var d=a.iDraw,f=a.aoColumns[c],g=a.aoData[b]._aData,j=f.sDefaultContent,c=f.fnGetData(g,e,{settings:a,row:b,col:c});if(c===k)return a.iDrawError!=d&&null===j&&(I(a,0,"Requested unknown parameter "+("function"==typeof f.mData?"{function}":"'"+f.mData+"'")+" for row "+b,4),a.iDrawError=d),j;if((c===g||null===c)&& null!==j)c=j;else if("function"===typeof c)return c.call(g);return null===c&&"display"==e?"":c}function Ia(a,b,c,e){a.aoColumns[c].fnSetData(a.aoData[b]._aData,e,{settings:a,row:b,col:c})}function Ka(a){return h.map(a.match(/(\\.|[^\.])+/g),function(a){return a.replace(/\\./g,".")})}function R(a){if(h.isPlainObject(a)){var b={};h.each(a,function(a,c){c&&(b[a]=R(c))});return function(a,c,f,g){var j=b[c]||b._;return j!==k?j(a,c,f,g):a}}if(null===a)return function(a){return a};if("function"===typeof a)return function(b, c,f,g){return a(b,c,f,g)};if("string"===typeof a&&(-1!==a.indexOf(".")||-1!==a.indexOf("[")||-1!==a.indexOf("("))){var c=function(a,b,f){var g,j;if(""!==f){j=Ka(f);for(var i=0,h=j.length;i<h;i++){f=j[i].match(ba);g=j[i].match(T);if(f){j[i]=j[i].replace(ba,"");""!==j[i]&&(a=a[j[i]]);g=[];j.splice(0,i+1);j=j.join(".");i=0;for(h=a.length;i<h;i++)g.push(c(a[i],b,j));a=f[0].substring(1,f[0].length-1);a=""===a?g:g.join(a);break}else if(g){j[i]=j[i].replace(T,"");a=a[j[i]]();continue}if(null===a||a[j[i]]=== k)return k;a=a[j[i]]}}return a};return function(b,d){return c(b,d,a)}}return function(b){return b[a]}}function S(a){if(h.isPlainObject(a))return S(a._);if(null===a)return function(){};if("function"===typeof a)return function(b,e,d){a(b,"set",e,d)};if("string"===typeof a&&(-1!==a.indexOf(".")||-1!==a.indexOf("[")||-1!==a.indexOf("("))){var b=function(a,e,d){var d=Ka(d),f;f=d[d.length-1];for(var g,j,i=0,h=d.length-1;i<h;i++){g=d[i].match(ba);j=d[i].match(T);if(g){d[i]=d[i].replace(ba,"");a[d[i]]=[]; f=d.slice();f.splice(0,i+1);g=f.join(".");j=0;for(h=e.length;j<h;j++)f={},b(f,e[j],g),a[d[i]].push(f);return}j&&(d[i]=d[i].replace(T,""),a=a[d[i]](e));if(null===a[d[i]]||a[d[i]]===k)a[d[i]]={};a=a[d[i]]}if(f.match(T))a[f.replace(T,"")](e);else a[f.replace(ba,"")]=e};return function(c,e){return b(c,e,a)}}return function(b,e){b[a]=e}}function La(a){return D(a.aoData,"_aData")}function oa(a){a.aoData.length=0;a.aiDisplayMaster.length=0;a.aiDisplay.length=0}function pa(a,b,c){for(var e=-1,d=0,f=a.length;d< f;d++)a[d]==b?e=d:a[d]>b&&a[d]--; -1!=e&&c===k&&a.splice(e,1)}function ca(a,b,c,e){var d=a.aoData[b],f,g=function(c,f){for(;c.childNodes.length;)c.removeChild(c.firstChild);c.innerHTML=x(a,b,f,"display")};if("dom"===c||(!c||"auto"===c)&&"dom"===d.src)d._aData=na(a,d,e,e===k?k:d._aData).data;else{var j=d.anCells;if(j)if(e!==k)g(j[e],e);else{c=0;for(f=j.length;c<f;c++)g(j[c],c)}}d._aSortData=null;d._aFilterData=null;g=a.aoColumns;if(e!==k)g[e].sType=null;else{c=0;for(f=g.length;c<f;c++)g[c].sType=null; Ma(d)}}function na(a,b,c,e){var d=[],f=b.firstChild,g,j=0,i,o=a.aoColumns,l=a._rowReadObject,e=e||l?{}:[],q=function(a,b){if("string"===typeof a){var c=a.indexOf("@");-1!==c&&(c=a.substring(c+1),S(a)(e,b.getAttribute(c)))}},a=function(a){if(c===k||c===j)g=o[j],i=h.trim(a.innerHTML),g&&g._bAttrSrc?(S(g.mData._)(e,i),q(g.mData.sort,a),q(g.mData.type,a),q(g.mData.filter,a)):l?(g._setter||(g._setter=S(g.mData)),g._setter(e,i)):e[j]=i;j++};if(f)for(;f;){b=f.nodeName.toUpperCase();if("TD"==b||"TH"==b)a(f), d.push(f);f=f.nextSibling}else{d=b.anCells;f=0;for(b=d.length;f<b;f++)a(d[f])}return{data:e,cells:d}}function Ja(a,b,c,e){var d=a.aoData[b],f=d._aData,g=[],j,i,h,l,q;if(null===d.nTr){j=c||Q.createElement("tr");d.nTr=j;d.anCells=g;j._DT_RowIndex=b;Ma(d);l=0;for(q=a.aoColumns.length;l<q;l++){h=a.aoColumns[l];i=c?e[l]:Q.createElement(h.sCellType);g.push(i);if(!c||h.mRender||h.mData!==l)i.innerHTML=x(a,b,l,"display");h.sClass&&(i.className+=" "+h.sClass);h.bVisible&&!c?j.appendChild(i):!h.bVisible&&c&& i.parentNode.removeChild(i);h.fnCreatedCell&&h.fnCreatedCell.call(a.oInstance,i,x(a,b,l),f,b,l)}w(a,"aoRowCreatedCallback",null,[j,f,b])}d.nTr.setAttribute("role","row")}function Ma(a){var b=a.nTr,c=a._aData;if(b){c.DT_RowId&&(b.id=c.DT_RowId);if(c.DT_RowClass){var e=c.DT_RowClass.split(" ");a.__rowc=a.__rowc?Na(a.__rowc.concat(e)):e;h(b).removeClass(a.__rowc.join(" ")).addClass(c.DT_RowClass)}c.DT_RowAttr&&h(b).attr(c.DT_RowAttr);c.DT_RowData&&h(b).data(c.DT_RowData)}}function jb(a){var b,c,e,d, f,g=a.nTHead,j=a.nTFoot,i=0===h("th, td",g).length,o=a.oClasses,l=a.aoColumns;i&&(d=h("<tr/>").appendTo(g));b=0;for(c=l.length;b<c;b++)f=l[b],e=h(f.nTh).addClass(f.sClass),i&&e.appendTo(d),a.oFeatures.bSort&&(e.addClass(f.sSortingClass),!1!==f.bSortable&&(e.attr("tabindex",a.iTabIndex).attr("aria-controls",a.sTableId),Oa(a,f.nTh,b))),f.sTitle!=e.html()&&e.html(f.sTitle),Pa(a,"header")(a,e,f,o);i&&da(a.aoHeader,g);h(g).find(">tr").attr("role","row");h(g).find(">tr>th, >tr>td").addClass(o.sHeaderTH); h(j).find(">tr>th, >tr>td").addClass(o.sFooterTH);if(null!==j){a=a.aoFooter[0];b=0;for(c=a.length;b<c;b++)f=l[b],f.nTf=a[b].cell,f.sClass&&h(f.nTf).addClass(f.sClass)}}function ea(a,b,c){var e,d,f,g=[],j=[],i=a.aoColumns.length,o;if(b){c===k&&(c=!1);e=0;for(d=b.length;e<d;e++){g[e]=b[e].slice();g[e].nTr=b[e].nTr;for(f=i-1;0<=f;f--)!a.aoColumns[f].bVisible&&!c&&g[e].splice(f,1);j.push([])}e=0;for(d=g.length;e<d;e++){if(a=g[e].nTr)for(;f=a.firstChild;)a.removeChild(f);f=0;for(b=g[e].length;f<b;f++)if(o= i=1,j[e][f]===k){a.appendChild(g[e][f].cell);for(j[e][f]=1;g[e+i]!==k&&g[e][f].cell==g[e+i][f].cell;)j[e+i][f]=1,i++;for(;g[e][f+o]!==k&&g[e][f].cell==g[e][f+o].cell;){for(c=0;c<i;c++)j[e+c][f+o]=1;o++}h(g[e][f].cell).attr("rowspan",i).attr("colspan",o)}}}}function M(a){var b=w(a,"aoPreDrawCallback","preDraw",[a]);if(-1!==h.inArray(!1,b))C(a,!1);else{var b=[],c=0,e=a.asStripeClasses,d=e.length,f=a.oLanguage,g=a.iInitDisplayStart,j="ssp"==B(a),i=a.aiDisplay;a.bDrawing=!0;g!==k&&-1!==g&&(a._iDisplayStart= j?g:g>=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);var g=a._iDisplayStart,o=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,C(a,!1);else if(j){if(!a.bDestroying&&!kb(a))return}else a.iDraw++;if(0!==i.length){f=j?a.aoData.length:o;for(j=j?0:g;j<f;j++){var l=i[j],q=a.aoData[l];null===q.nTr&&Ja(a,l);l=q.nTr;if(0!==d){var n=e[c%d];q._sRowStripe!=n&&(h(l).removeClass(q._sRowStripe).addClass(n),q._sRowStripe=n)}w(a,"aoRowCallback",null,[l,q._aData,c,j]);b.push(l);c++}}else c=f.sZeroRecords, 1==a.iDraw&&"ajax"==B(a)?c=f.sLoadingRecords:f.sEmptyTable&&0===a.fnRecordsTotal()&&(c=f.sEmptyTable),b[0]=h("<tr/>",{"class":d?e[0]:""}).append(h("<td />",{valign:"top",colSpan:aa(a),"class":a.oClasses.sRowEmpty}).html(c))[0];w(a,"aoHeaderCallback","header",[h(a.nTHead).children("tr")[0],La(a),g,o,i]);w(a,"aoFooterCallback","footer",[h(a.nTFoot).children("tr")[0],La(a),g,o,i]);e=h(a.nTBody);e.children().detach();e.append(h(b));w(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing= !1}}function N(a,b){var c=a.oFeatures,e=c.bFilter;c.bSort&&lb(a);e?fa(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;M(a);a._drawHold=!1}function mb(a){var b=a.oClasses,c=h(a.nTable),c=h("<div/>").insertBefore(c),e=a.oFeatures,d=h("<div/>",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=d[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var f=a.sDom.split(""),g,j,i,o,l,q,n=0;n<f.length;n++){g= null;j=f[n];if("<"==j){i=h("<div/>")[0];o=f[n+1];if("'"==o||'"'==o){l="";for(q=2;f[n+q]!=o;)l+=f[n+q],q++;"H"==l?l=b.sJUIHeader:"F"==l&&(l=b.sJUIFooter);-1!=l.indexOf(".")?(o=l.split("."),i.id=o[0].substr(1,o[0].length-1),i.className=o[1]):"#"==l.charAt(0)?i.id=l.substr(1,l.length-1):i.className=l;n+=q}d.append(i);d=h(i)}else if(">"==j)d=d.parent();else if("l"==j&&e.bPaginate&&e.bLengthChange)g=nb(a);else if("f"==j&&e.bFilter)g=ob(a);else if("r"==j&&e.bProcessing)g=pb(a);else if("t"==j)g=qb(a);else if("i"== j&&e.bInfo)g=rb(a);else if("p"==j&&e.bPaginate)g=sb(a);else if(0!==m.ext.feature.length){i=m.ext.feature;q=0;for(o=i.length;q<o;q++)if(j==i[q].cFeature){g=i[q].fnInit(a);break}}g&&(i=a.aanFeatures,i[j]||(i[j]=[]),i[j].push(g),d.append(g))}c.replaceWith(d)}function da(a,b){var c=h(b).children("tr"),e,d,f,g,j,i,o,l,q,n;a.splice(0,a.length);f=0;for(i=c.length;f<i;f++)a.push([]);f=0;for(i=c.length;f<i;f++){e=c[f];for(d=e.firstChild;d;){if("TD"==d.nodeName.toUpperCase()||"TH"==d.nodeName.toUpperCase()){l= 1*d.getAttribute("colspan");q=1*d.getAttribute("rowspan");l=!l||0===l||1===l?1:l;q=!q||0===q||1===q?1:q;g=0;for(j=a[f];j[g];)g++;o=g;n=1===l?!0:!1;for(j=0;j<l;j++)for(g=0;g<q;g++)a[f+g][o+j]={cell:d,unique:n},a[f+g].nTr=e}d=d.nextSibling}}}function qa(a,b,c){var e=[];c||(c=a.aoHeader,b&&(c=[],da(c,b)));for(var b=0,d=c.length;b<d;b++)for(var f=0,g=c[b].length;f<g;f++)if(c[b][f].unique&&(!e[f]||!a.bSortCellsTop))e[f]=c[b][f].cell;return e}function ra(a,b,c){w(a,"aoServerParams","serverParams",[b]); if(b&&h.isArray(b)){var e={},d=/(.*?)\[\]$/;h.each(b,function(a,b){var c=b.name.match(d);c?(c=c[0],e[c]||(e[c]=[]),e[c].push(b.value)):e[b.name]=b.value});b=e}var f,g=a.ajax,j=a.oInstance,i=function(b){w(a,null,"xhr",[a,b,a.jqXHR]);c(b)};if(h.isPlainObject(g)&&g.data){f=g.data;var o=h.isFunction(f)?f(b,a):f,b=h.isFunction(f)&&o?o:h.extend(!0,b,o);delete g.data}o={data:b,success:function(b){var c=b.error||b.sError;c&&I(a,0,c);a.json=b;i(b)},dataType:"json",cache:!1,type:a.sServerMethod,error:function(b, c){var f=w(a,null,"xhr",[a,null,a.jqXHR]);-1===h.inArray(!0,f)&&("parsererror"==c?I(a,0,"Invalid JSON response",1):4===b.readyState&&I(a,0,"Ajax error",7));C(a,!1)}};a.oAjaxData=b;w(a,null,"preXhr",[a,b]);a.fnServerData?a.fnServerData.call(j,a.sAjaxSource,h.map(b,function(a,b){return{name:b,value:a}}),i,a):a.sAjaxSource||"string"===typeof g?a.jqXHR=h.ajax(h.extend(o,{url:g||a.sAjaxSource})):h.isFunction(g)?a.jqXHR=g.call(j,b,i,a):(a.jqXHR=h.ajax(h.extend(o,g)),g.data=f)}function kb(a){return a.bAjaxDataGet? (a.iDraw++,C(a,!0),ra(a,tb(a),function(b){ub(a,b)}),!1):!0}function tb(a){var b=a.aoColumns,c=b.length,e=a.oFeatures,d=a.oPreviousSearch,f=a.aoPreSearchCols,g,j=[],i,o,l,q=U(a);g=a._iDisplayStart;i=!1!==e.bPaginate?a._iDisplayLength:-1;var n=function(a,b){j.push({name:a,value:b})};n("sEcho",a.iDraw);n("iColumns",c);n("sColumns",D(b,"sName").join(","));n("iDisplayStart",g);n("iDisplayLength",i);var k={draw:a.iDraw,columns:[],order:[],start:g,length:i,search:{value:d.sSearch,regex:d.bRegex}};for(g= 0;g<c;g++)o=b[g],l=f[g],i="function"==typeof o.mData?"function":o.mData,k.columns.push({data:i,name:o.sName,searchable:o.bSearchable,orderable:o.bSortable,search:{value:l.sSearch,regex:l.bRegex}}),n("mDataProp_"+g,i),e.bFilter&&(n("sSearch_"+g,l.sSearch),n("bRegex_"+g,l.bRegex),n("bSearchable_"+g,o.bSearchable)),e.bSort&&n("bSortable_"+g,o.bSortable);e.bFilter&&(n("sSearch",d.sSearch),n("bRegex",d.bRegex));e.bSort&&(h.each(q,function(a,b){k.order.push({column:b.col,dir:b.dir});n("iSortCol_"+a,b.col); n("sSortDir_"+a,b.dir)}),n("iSortingCols",q.length));b=m.ext.legacy.ajax;return null===b?a.sAjaxSource?j:k:b?j:k}function ub(a,b){var c=sa(a,b),e=b.sEcho!==k?b.sEcho:b.draw,d=b.iTotalRecords!==k?b.iTotalRecords:b.recordsTotal,f=b.iTotalDisplayRecords!==k?b.iTotalDisplayRecords:b.recordsFiltered;if(e){if(1*e<a.iDraw)return;a.iDraw=1*e}oa(a);a._iRecordsTotal=parseInt(d,10);a._iRecordsDisplay=parseInt(f,10);e=0;for(d=c.length;e<d;e++)K(a,c[e]);a.aiDisplay=a.aiDisplayMaster.slice();a.bAjaxDataGet=!1; M(a);a._bInitComplete||ta(a,b);a.bAjaxDataGet=!0;C(a,!1)}function sa(a,b){var c=h.isPlainObject(a.ajax)&&a.ajax.dataSrc!==k?a.ajax.dataSrc:a.sAjaxDataProp;return"data"===c?b.aaData||b[c]:""!==c?R(c)(b):b}function ob(a){var b=a.oClasses,c=a.sTableId,e=a.oLanguage,d=a.oPreviousSearch,f=a.aanFeatures,g='<input type="search" class="'+b.sFilterInput+'"/>',j=e.sSearch,j=j.match(/_INPUT_/)?j.replace("_INPUT_",g):j+g,b=h("<div/>",{id:!f.f?c+"_filter":null,"class":b.sFilter}).append(h("<label/>").append(j)), f=function(){var b=!this.value?"":this.value;b!=d.sSearch&&(fa(a,{sSearch:b,bRegex:d.bRegex,bSmart:d.bSmart,bCaseInsensitive:d.bCaseInsensitive}),a._iDisplayStart=0,M(a))},g=null!==a.searchDelay?a.searchDelay:"ssp"===B(a)?400:0,i=h("input",b).val(d.sSearch).attr("placeholder",e.sSearchPlaceholder).bind("keyup.DT search.DT input.DT paste.DT cut.DT",g?ua(f,g):f).bind("keypress.DT",function(a){if(13==a.keyCode)return!1}).attr("aria-controls",c);h(a.nTable).on("search.dt.DT",function(b,c){if(a===c)try{i[0]!== Q.activeElement&&i.val(d.sSearch)}catch(f){}});return b[0]}function fa(a,b,c){var e=a.oPreviousSearch,d=a.aoPreSearchCols,f=function(a){e.sSearch=a.sSearch;e.bRegex=a.bRegex;e.bSmart=a.bSmart;e.bCaseInsensitive=a.bCaseInsensitive};Ha(a);if("ssp"!=B(a)){vb(a,b.sSearch,c,b.bEscapeRegex!==k?!b.bEscapeRegex:b.bRegex,b.bSmart,b.bCaseInsensitive);f(b);for(b=0;b<d.length;b++)wb(a,d[b].sSearch,b,d[b].bEscapeRegex!==k?!d[b].bEscapeRegex:d[b].bRegex,d[b].bSmart,d[b].bCaseInsensitive);xb(a)}else f(b);a.bFiltered= !0;w(a,null,"search",[a])}function xb(a){for(var b=m.ext.search,c=a.aiDisplay,e,d,f=0,g=b.length;f<g;f++){for(var j=[],i=0,h=c.length;i<h;i++)d=c[i],e=a.aoData[d],b[f](a,e._aFilterData,d,e._aData,i)&&j.push(d);c.length=0;c.push.apply(c,j)}}function wb(a,b,c,e,d,f){if(""!==b)for(var g=a.aiDisplay,e=Qa(b,e,d,f),d=g.length-1;0<=d;d--)b=a.aoData[g[d]]._aFilterData[c],e.test(b)||g.splice(d,1)}function vb(a,b,c,e,d,f){var e=Qa(b,e,d,f),d=a.oPreviousSearch.sSearch,f=a.aiDisplayMaster,g;0!==m.ext.search.length&& (c=!0);g=yb(a);if(0>=b.length)a.aiDisplay=f.slice();else{if(g||c||d.length>b.length||0!==b.indexOf(d)||a.bSorted)a.aiDisplay=f.slice();b=a.aiDisplay;for(c=b.length-1;0<=c;c--)e.test(a.aoData[b[c]]._sFilterRow)||b.splice(c,1)}}function Qa(a,b,c,e){a=b?a:va(a);c&&(a="^(?=.*?"+h.map(a.match(/"[^"]+"|[^ ]+/g)||[""],function(a){if('"'===a.charAt(0))var b=a.match(/^"(.*)"$/),a=b?b[1]:a;return a.replace('"',"")}).join(")(?=.*?")+").*$");return RegExp(a,e?"i":"")}function va(a){return a.replace(Yb,"\\$1")} function yb(a){var b=a.aoColumns,c,e,d,f,g,j,i,h,l=m.ext.type.search;c=!1;e=0;for(f=a.aoData.length;e<f;e++)if(h=a.aoData[e],!h._aFilterData){j=[];d=0;for(g=b.length;d<g;d++)c=b[d],c.bSearchable?(i=x(a,e,d,"filter"),l[c.sType]&&(i=l[c.sType](i)),null===i&&(i=""),"string"!==typeof i&&i.toString&&(i=i.toString())):i="",i.indexOf&&-1!==i.indexOf("&")&&(wa.innerHTML=i,i=Zb?wa.textContent:wa.innerText),i.replace&&(i=i.replace(/[\r\n]/g,"")),j.push(i);h._aFilterData=j;h._sFilterRow=j.join(" ");c=!0}return c} function zb(a){return{search:a.sSearch,smart:a.bSmart,regex:a.bRegex,caseInsensitive:a.bCaseInsensitive}}function Ab(a){return{sSearch:a.search,bSmart:a.smart,bRegex:a.regex,bCaseInsensitive:a.caseInsensitive}}function rb(a){var b=a.sTableId,c=a.aanFeatures.i,e=h("<div/>",{"class":a.oClasses.sInfo,id:!c?b+"_info":null});c||(a.aoDrawCallback.push({fn:Bb,sName:"information"}),e.attr("role","status").attr("aria-live","polite"),h(a.nTable).attr("aria-describedby",b+"_info"));return e[0]}function Bb(a){var b= a.aanFeatures.i;if(0!==b.length){var c=a.oLanguage,e=a._iDisplayStart+1,d=a.fnDisplayEnd(),f=a.fnRecordsTotal(),g=a.fnRecordsDisplay(),j=g?c.sInfo:c.sInfoEmpty;g!==f&&(j+=" "+c.sInfoFiltered);j+=c.sInfoPostFix;j=Cb(a,j);c=c.fnInfoCallback;null!==c&&(j=c.call(a.oInstance,a,e,d,f,g,j));h(b).html(j)}}function Cb(a,b){var c=a.fnFormatNumber,e=a._iDisplayStart+1,d=a._iDisplayLength,f=a.fnRecordsDisplay(),g=-1===d;return b.replace(/_START_/g,c.call(a,e)).replace(/_END_/g,c.call(a,a.fnDisplayEnd())).replace(/_MAX_/g, c.call(a,a.fnRecordsTotal())).replace(/_TOTAL_/g,c.call(a,f)).replace(/_PAGE_/g,c.call(a,g?1:Math.ceil(e/d))).replace(/_PAGES_/g,c.call(a,g?1:Math.ceil(f/d)))}function ga(a){var b,c,e=a.iInitDisplayStart,d=a.aoColumns,f;c=a.oFeatures;if(a.bInitialised){mb(a);jb(a);ea(a,a.aoHeader);ea(a,a.aoFooter);C(a,!0);c.bAutoWidth&&Ga(a);b=0;for(c=d.length;b<c;b++)f=d[b],f.sWidth&&(f.nTh.style.width=s(f.sWidth));N(a);d=B(a);"ssp"!=d&&("ajax"==d?ra(a,[],function(c){var f=sa(a,c);for(b=0;b<f.length;b++)K(a,f[b]); a.iInitDisplayStart=e;N(a);C(a,!1);ta(a,c)},a):(C(a,!1),ta(a)))}else setTimeout(function(){ga(a)},200)}function ta(a,b){a._bInitComplete=!0;b&&X(a);w(a,"aoInitComplete","init",[a,b])}function Ra(a,b){var c=parseInt(b,10);a._iDisplayLength=c;Sa(a);w(a,null,"length",[a,c])}function nb(a){for(var b=a.oClasses,c=a.sTableId,e=a.aLengthMenu,d=h.isArray(e[0]),f=d?e[0]:e,e=d?e[1]:e,d=h("<select/>",{name:c+"_length","aria-controls":c,"class":b.sLengthSelect}),g=0,j=f.length;g<j;g++)d[0][g]=new Option(e[g], f[g]);var i=h("<div><label/></div>").addClass(b.sLength);a.aanFeatures.l||(i[0].id=c+"_length");i.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",d[0].outerHTML));h("select",i).val(a._iDisplayLength).bind("change.DT",function(){Ra(a,h(this).val());M(a)});h(a.nTable).bind("length.dt.DT",function(b,c,f){a===c&&h("select",i).val(f)});return i[0]}function sb(a){var b=a.sPaginationType,c=m.ext.pager[b],e="function"===typeof c,d=function(a){M(a)},b=h("<div/>").addClass(a.oClasses.sPaging+b)[0], f=a.aanFeatures;e||c.fnInit(a,b,d);f.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(a){if(e){var b=a._iDisplayStart,i=a._iDisplayLength,h=a.fnRecordsDisplay(),l=-1===i,b=l?0:Math.ceil(b/i),i=l?1:Math.ceil(h/i),h=c(b,i),q,l=0;for(q=f.p.length;l<q;l++)Pa(a,"pageButton")(a,f.p[l],l,h,b,i)}else c.fnUpdate(a,d)},sName:"pagination"}));return b}function Ta(a,b,c){var e=a._iDisplayStart,d=a._iDisplayLength,f=a.fnRecordsDisplay();0===f||-1===d?e=0:"number"===typeof b?(e=b*d,e>f&&(e=0)): "first"==b?e=0:"previous"==b?(e=0<=d?e-d:0,0>e&&(e=0)):"next"==b?e+d<f&&(e+=d):"last"==b?e=Math.floor((f-1)/d)*d:I(a,0,"Unknown paging action: "+b,5);b=a._iDisplayStart!==e;a._iDisplayStart=e;b&&(w(a,null,"page",[a]),c&&M(a));return b}function pb(a){return h("<div/>",{id:!a.aanFeatures.r?a.sTableId+"_processing":null,"class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function C(a,b){a.oFeatures.bProcessing&&h(a.aanFeatures.r).css("display",b?"block":"none");w(a, null,"processing",[a,b])}function qb(a){var b=h(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var e=c.sX,d=c.sY,f=a.oClasses,g=b.children("caption"),j=g.length?g[0]._captionSide:null,i=h(b[0].cloneNode(!1)),o=h(b[0].cloneNode(!1)),l=b.children("tfoot");c.sX&&"100%"===b.attr("width")&&b.removeAttr("width");l.length||(l=null);c=h("<div/>",{"class":f.sScrollWrapper}).append(h("<div/>",{"class":f.sScrollHead}).css({overflow:"hidden",position:"relative",border:0, width:e?!e?null:s(e):"100%"}).append(h("<div/>",{"class":f.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(i.removeAttr("id").css("margin-left",0).append("top"===j?g:null).append(b.children("thead"))))).append(h("<div/>",{"class":f.sScrollBody}).css({overflow:"auto",height:!d?null:s(d),width:!e?null:s(e)}).append(b));l&&c.append(h("<div/>",{"class":f.sScrollFoot}).css({overflow:"hidden",border:0,width:e?!e?null:s(e):"100%"}).append(h("<div/>",{"class":f.sScrollFootInner}).append(o.removeAttr("id").css("margin-left", 0).append("bottom"===j?g:null).append(b.children("tfoot")))));var b=c.children(),q=b[0],f=b[1],n=l?b[2]:null;if(e)h(f).on("scroll.DT",function(){var a=this.scrollLeft;q.scrollLeft=a;l&&(n.scrollLeft=a)});a.nScrollHead=q;a.nScrollBody=f;a.nScrollFoot=n;a.aoDrawCallback.push({fn:Y,sName:"scrolling"});return c[0]}function Y(a){var b=a.oScroll,c=b.sX,e=b.sXInner,d=b.sY,f=b.iBarWidth,g=h(a.nScrollHead),j=g[0].style,i=g.children("div"),o=i[0].style,l=i.children("table"),i=a.nScrollBody,q=h(i),n=i.style, k=h(a.nScrollFoot).children("div"),p=k.children("table"),m=h(a.nTHead),r=h(a.nTable),t=r[0],O=t.style,L=a.nTFoot?h(a.nTFoot):null,ha=a.oBrowser,w=ha.bScrollOversize,v,u,y,x,z,A=[],B=[],C=[],D,E=function(a){a=a.style;a.paddingTop="0";a.paddingBottom="0";a.borderTopWidth="0";a.borderBottomWidth="0";a.height=0};r.children("thead, tfoot").remove();z=m.clone().prependTo(r);v=m.find("tr");y=z.find("tr");z.find("th, td").removeAttr("tabindex");L&&(x=L.clone().prependTo(r),u=L.find("tr"),x=x.find("tr")); c||(n.width="100%",g[0].style.width="100%");h.each(qa(a,z),function(b,c){D=la(a,b);c.style.width=a.aoColumns[D].sWidth});L&&G(function(a){a.style.width=""},x);b.bCollapse&&""!==d&&(n.height=q[0].offsetHeight+m[0].offsetHeight+"px");g=r.outerWidth();if(""===c){if(O.width="100%",w&&(r.find("tbody").height()>i.offsetHeight||"scroll"==q.css("overflow-y")))O.width=s(r.outerWidth()-f)}else""!==e?O.width=s(e):g==q.width()&&q.height()<r.height()?(O.width=s(g-f),r.outerWidth()>g-f&&(O.width=s(g))):O.width= s(g);g=r.outerWidth();G(E,y);G(function(a){C.push(a.innerHTML);A.push(s(h(a).css("width")))},y);G(function(a,b){a.style.width=A[b]},v);h(y).height(0);L&&(G(E,x),G(function(a){B.push(s(h(a).css("width")))},x),G(function(a,b){a.style.width=B[b]},u),h(x).height(0));G(function(a,b){a.innerHTML='<div class="dataTables_sizing" style="height:0;overflow:hidden;">'+C[b]+"</div>";a.style.width=A[b]},y);L&&G(function(a,b){a.innerHTML="";a.style.width=B[b]},x);if(r.outerWidth()<g){u=i.scrollHeight>i.offsetHeight|| "scroll"==q.css("overflow-y")?g+f:g;if(w&&(i.scrollHeight>i.offsetHeight||"scroll"==q.css("overflow-y")))O.width=s(u-f);(""===c||""!==e)&&I(a,1,"Possible column misalignment",6)}else u="100%";n.width=s(u);j.width=s(u);L&&(a.nScrollFoot.style.width=s(u));!d&&w&&(n.height=s(t.offsetHeight+f));d&&b.bCollapse&&(n.height=s(d),b=c&&t.offsetWidth>i.offsetWidth?f:0,t.offsetHeight<i.offsetHeight&&(n.height=s(t.offsetHeight+b)));b=r.outerWidth();l[0].style.width=s(b);o.width=s(b);l=r.height()>i.clientHeight|| "scroll"==q.css("overflow-y");ha="padding"+(ha.bScrollbarLeft?"Left":"Right");o[ha]=l?f+"px":"0px";L&&(p[0].style.width=s(b),k[0].style.width=s(b),k[0].style[ha]=l?f+"px":"0px");q.scroll();if((a.bSorted||a.bFiltered)&&!a._drawHold)i.scrollTop=0}function G(a,b,c){for(var e=0,d=0,f=b.length,g,j;d<f;){g=b[d].firstChild;for(j=c?c[d].firstChild:null;g;)1===g.nodeType&&(c?a(g,j,e):a(g,e),e++),g=g.nextSibling,j=c?j.nextSibling:null;d++}}function Ga(a){var b=a.nTable,c=a.aoColumns,e=a.oScroll,d=e.sY,f=e.sX, g=e.sXInner,j=c.length,e=Z(a,"bVisible"),i=h("th",a.nTHead),o=b.getAttribute("width"),l=b.parentNode,k=!1,n,m;(n=b.style.width)&&-1!==n.indexOf("%")&&(o=n);for(n=0;n<e.length;n++)m=c[e[n]],null!==m.sWidth&&(m.sWidth=Db(m.sWidthOrig,l),k=!0);if(!k&&!f&&!d&&j==aa(a)&&j==i.length)for(n=0;n<j;n++)c[n].sWidth=s(i.eq(n).width());else{j=h(b).clone().css("visibility","hidden").removeAttr("id");j.find("tbody tr").remove();var p=h("<tr/>").appendTo(j.find("tbody"));j.find("tfoot th, tfoot td").css("width", "");i=qa(a,j.find("thead")[0]);for(n=0;n<e.length;n++)m=c[e[n]],i[n].style.width=null!==m.sWidthOrig&&""!==m.sWidthOrig?s(m.sWidthOrig):"";if(a.aoData.length)for(n=0;n<e.length;n++)k=e[n],m=c[k],h(Eb(a,k)).clone(!1).append(m.sContentPadding).appendTo(p);j.appendTo(l);f&&g?j.width(g):f?(j.css("width","auto"),j.width()<l.offsetWidth&&j.width(l.offsetWidth)):d?j.width(l.offsetWidth):o&&j.width(o);Fb(a,j[0]);if(f){for(n=g=0;n<e.length;n++)m=c[e[n]],d=h(i[n]).outerWidth(),g+=null===m.sWidthOrig?d:parseInt(m.sWidth, 10)+d-h(i[n]).width();j.width(s(g));b.style.width=s(g)}for(n=0;n<e.length;n++)if(m=c[e[n]],d=h(i[n]).width())m.sWidth=s(d);b.style.width=s(j.css("width"));j.remove()}o&&(b.style.width=s(o));if((o||f)&&!a._reszEvt)b=function(){h(Ea).bind("resize.DT-"+a.sInstance,ua(function(){X(a)}))},a.oBrowser.bScrollOversize?setTimeout(b,1E3):b(),a._reszEvt=!0}function ua(a,b){var c=b!==k?b:200,e,d;return function(){var b=this,g=+new Date,j=arguments;e&&g<e+c?(clearTimeout(d),d=setTimeout(function(){e=k;a.apply(b, j)},c)):(e=g,a.apply(b,j))}}function Db(a,b){if(!a)return 0;var c=h("<div/>").css("width",s(a)).appendTo(b||Q.body),e=c[0].offsetWidth;c.remove();return e}function Fb(a,b){var c=a.oScroll;if(c.sX||c.sY)c=!c.sX?c.iBarWidth:0,b.style.width=s(h(b).outerWidth()-c)}function Eb(a,b){var c=Gb(a,b);if(0>c)return null;var e=a.aoData[c];return!e.nTr?h("<td/>").html(x(a,c,b,"display"))[0]:e.anCells[b]}function Gb(a,b){for(var c,e=-1,d=-1,f=0,g=a.aoData.length;f<g;f++)c=x(a,f,b,"display")+"",c=c.replace($b,""), c.length>e&&(e=c.length,d=f);return d}function s(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function Hb(){var a=m.__scrollbarWidth;if(a===k){var b=h("<p/>").css({position:"absolute",top:0,left:0,width:"100%",height:150,padding:0,overflow:"scroll",visibility:"hidden"}).appendTo("body"),a=b[0].offsetWidth-b[0].clientWidth;m.__scrollbarWidth=a;b.remove()}return a}function U(a){var b,c,e=[],d=a.aoColumns,f,g,j,i;b=a.aaSortingFixed;c=h.isPlainObject(b);var o=[]; f=function(a){a.length&&!h.isArray(a[0])?o.push(a):o.push.apply(o,a)};h.isArray(b)&&f(b);c&&b.pre&&f(b.pre);f(a.aaSorting);c&&b.post&&f(b.post);for(a=0;a<o.length;a++){i=o[a][0];f=d[i].aDataSort;b=0;for(c=f.length;b<c;b++)g=f[b],j=d[g].sType||"string",o[a]._idx===k&&(o[a]._idx=h.inArray(o[a][1],d[g].asSorting)),e.push({src:i,col:g,dir:o[a][1],index:o[a]._idx,type:j,formatter:m.ext.type.order[j+"-pre"]})}return e}function lb(a){var b,c,e=[],d=m.ext.type.order,f=a.aoData,g=0,j,i=a.aiDisplayMaster,h; Ha(a);h=U(a);b=0;for(c=h.length;b<c;b++)j=h[b],j.formatter&&g++,Ib(a,j.col);if("ssp"!=B(a)&&0!==h.length){b=0;for(c=i.length;b<c;b++)e[i[b]]=b;g===h.length?i.sort(function(a,b){var c,d,g,j,i=h.length,k=f[a]._aSortData,m=f[b]._aSortData;for(g=0;g<i;g++)if(j=h[g],c=k[j.col],d=m[j.col],c=c<d?-1:c>d?1:0,0!==c)return"asc"===j.dir?c:-c;c=e[a];d=e[b];return c<d?-1:c>d?1:0}):i.sort(function(a,b){var c,g,j,i,k=h.length,m=f[a]._aSortData,r=f[b]._aSortData;for(j=0;j<k;j++)if(i=h[j],c=m[i.col],g=r[i.col],i=d[i.type+ "-"+i.dir]||d["string-"+i.dir],c=i(c,g),0!==c)return c;c=e[a];g=e[b];return c<g?-1:c>g?1:0})}a.bSorted=!0}function Jb(a){for(var b,c,e=a.aoColumns,d=U(a),a=a.oLanguage.oAria,f=0,g=e.length;f<g;f++){c=e[f];var j=c.asSorting;b=c.sTitle.replace(/<.*?>/g,"");var i=c.nTh;i.removeAttribute("aria-sort");c.bSortable&&(0<d.length&&d[0].col==f?(i.setAttribute("aria-sort","asc"==d[0].dir?"ascending":"descending"),c=j[d[0].index+1]||j[0]):c=j[0],b+="asc"===c?a.sSortAscending:a.sSortDescending);i.setAttribute("aria-label", b)}}function Ua(a,b,c,e){var d=a.aaSorting,f=a.aoColumns[b].asSorting,g=function(a,b){var c=a._idx;c===k&&(c=h.inArray(a[1],f));return c+1<f.length?c+1:b?null:0};"number"===typeof d[0]&&(d=a.aaSorting=[d]);c&&a.oFeatures.bSortMulti?(c=h.inArray(b,D(d,"0")),-1!==c?(b=g(d[c],!0),null===b&&1===d.length&&(b=0),null===b?d.splice(c,1):(d[c][1]=f[b],d[c]._idx=b)):(d.push([b,f[0],0]),d[d.length-1]._idx=0)):d.length&&d[0][0]==b?(b=g(d[0]),d.length=1,d[0][1]=f[b],d[0]._idx=b):(d.length=0,d.push([b,f[0]]),d[0]._idx= 0);N(a);"function"==typeof e&&e(a)}function Oa(a,b,c,e){var d=a.aoColumns[c];Va(b,{},function(b){!1!==d.bSortable&&(a.oFeatures.bProcessing?(C(a,!0),setTimeout(function(){Ua(a,c,b.shiftKey,e);"ssp"!==B(a)&&C(a,!1)},0)):Ua(a,c,b.shiftKey,e))})}function xa(a){var b=a.aLastSort,c=a.oClasses.sSortColumn,e=U(a),d=a.oFeatures,f,g;if(d.bSort&&d.bSortClasses){d=0;for(f=b.length;d<f;d++)g=b[d].src,h(D(a.aoData,"anCells",g)).removeClass(c+(2>d?d+1:3));d=0;for(f=e.length;d<f;d++)g=e[d].src,h(D(a.aoData,"anCells", g)).addClass(c+(2>d?d+1:3))}a.aLastSort=e}function Ib(a,b){var c=a.aoColumns[b],e=m.ext.order[c.sSortDataType],d;e&&(d=e.call(a.oInstance,a,b,$(a,b)));for(var f,g=m.ext.type.order[c.sType+"-pre"],j=0,i=a.aoData.length;j<i;j++)if(c=a.aoData[j],c._aSortData||(c._aSortData=[]),!c._aSortData[b]||e)f=e?d[j]:x(a,j,b,"sort"),c._aSortData[b]=g?g(f):f}function ya(a){if(a.oFeatures.bStateSave&&!a.bDestroying){var b={time:+new Date,start:a._iDisplayStart,length:a._iDisplayLength,order:h.extend(!0,[],a.aaSorting), search:zb(a.oPreviousSearch),columns:h.map(a.aoColumns,function(b,e){return{visible:b.bVisible,search:zb(a.aoPreSearchCols[e])}})};w(a,"aoStateSaveParams","stateSaveParams",[a,b]);a.oSavedState=b;a.fnStateSaveCallback.call(a.oInstance,a,b)}}function Kb(a){var b,c,e=a.aoColumns;if(a.oFeatures.bStateSave){var d=a.fnStateLoadCallback.call(a.oInstance,a);if(d&&d.time&&(b=w(a,"aoStateLoadParams","stateLoadParams",[a,d]),-1===h.inArray(!1,b)&&(b=a.iStateDuration,!(0<b&&d.time<+new Date-1E3*b)&&e.length=== d.columns.length))){a.oLoadedState=h.extend(!0,{},d);d.start!==k&&(a._iDisplayStart=d.start,a.iInitDisplayStart=d.start);d.length!==k&&(a._iDisplayLength=d.length);d.order!==k&&(a.aaSorting=[],h.each(d.order,function(b,c){a.aaSorting.push(c[0]>=e.length?[0,c[1]]:c)}));d.search!==k&&h.extend(a.oPreviousSearch,Ab(d.search));b=0;for(c=d.columns.length;b<c;b++){var f=d.columns[b];f.visible!==k&&(e[b].bVisible=f.visible);f.search!==k&&h.extend(a.aoPreSearchCols[b],Ab(f.search))}w(a,"aoStateLoaded","stateLoaded", [a,d])}}}function za(a){var b=m.settings,a=h.inArray(a,D(b,"nTable"));return-1!==a?b[a]:null}function I(a,b,c,e){c="DataTables warning: "+(null!==a?"table id="+a.sTableId+" - ":"")+c;e&&(c+=". For more information about this error, please see http://datatables.net/tn/"+e);if(b)Ea.console&&console.log&&console.log(c);else if(b=m.ext,b=b.sErrMode||b.errMode,w(a,null,"error",[a,e,c]),"alert"==b)alert(c);else{if("throw"==b)throw Error(c);"function"==typeof b&&b(a,e,c)}}function E(a,b,c,e){h.isArray(c)? h.each(c,function(c,f){h.isArray(f)?E(a,b,f[0],f[1]):E(a,b,f)}):(e===k&&(e=c),b[c]!==k&&(a[e]=b[c]))}function Lb(a,b,c){var e,d;for(d in b)b.hasOwnProperty(d)&&(e=b[d],h.isPlainObject(e)?(h.isPlainObject(a[d])||(a[d]={}),h.extend(!0,a[d],e)):a[d]=c&&"data"!==d&&"aaData"!==d&&h.isArray(e)?e.slice():e);return a}function Va(a,b,c){h(a).bind("click.DT",b,function(b){a.blur();c(b)}).bind("keypress.DT",b,function(a){13===a.which&&(a.preventDefault(),c(a))}).bind("selectstart.DT",function(){return!1})}function z(a, b,c,e){c&&a[b].push({fn:c,sName:e})}function w(a,b,c,e){var d=[];b&&(d=h.map(a[b].slice().reverse(),function(b){return b.fn.apply(a.oInstance,e)}));null!==c&&(b=h.Event(c+".dt"),h(a.nTable).trigger(b,e),d.push(b.result));return d}function Sa(a){var b=a._iDisplayStart,c=a.fnDisplayEnd(),e=a._iDisplayLength;b>=c&&(b=c-e);b-=b%e;if(-1===e||0>b)b=0;a._iDisplayStart=b}function Pa(a,b){var c=a.renderer,e=m.ext.renderer[b];return h.isPlainObject(c)&&c[b]?e[c[b]]||e._:"string"===typeof c?e[c]||e._:e._}function B(a){return a.oFeatures.bServerSide? "ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function Wa(a,b){var c=[],c=Mb.numbers_length,e=Math.floor(c/2);b<=c?c=V(0,b):a<=e?(c=V(0,c-2),c.push("ellipsis"),c.push(b-1)):(a>=b-1-e?c=V(b-(c-2),b):(c=V(a-e+2,a+e-1),c.push("ellipsis"),c.push(b-1)),c.splice(0,0,"ellipsis"),c.splice(0,0,0));c.DT_el="span";return c}function db(a){h.each({num:function(b){return Aa(b,a)},"num-fmt":function(b){return Aa(b,a,Xa)},"html-num":function(b){return Aa(b,a,Ba)},"html-num-fmt":function(b){return Aa(b,a,Ba,Xa)}},function(b, c){u.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(u.type.search[b+a]=u.type.search.html)})}function Nb(a){return function(){var b=[za(this[m.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return m.ext.internal[a].apply(this,b)}}var m,u,t,r,v,Ya={},Ob=/[\r\n]/g,Ba=/<.*?>/g,ac=/^[\w\+\-]/,bc=/[\w\+\-]$/,Yb=RegExp("(\\/|\\.|\\*|\\+|\\?|\\||\\(|\\)|\\[|\\]|\\{|\\}|\\\\|\\$|\\^|\\-)","g"),Xa=/[',$\u00a3\u20ac\u00a5%\u2009\u202F\u20BD\u20a9\u20BArfk]/gi,J=function(a){return!a||!0===a|| "-"===a?!0:!1},Pb=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},Qb=function(a,b){Ya[b]||(Ya[b]=RegExp(va(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(Ya[b],"."):a},Za=function(a,b,c){var e="string"===typeof a;if(J(a))return!0;b&&e&&(a=Qb(a,b));c&&e&&(a=a.replace(Xa,""));return!isNaN(parseFloat(a))&&isFinite(a)},Rb=function(a,b,c){return J(a)?!0:!(J(a)||"string"===typeof a)?null:Za(a.replace(Ba,""),b,c)?!0:null},D=function(a,b,c){var e=[],d=0,f=a.length; if(c!==k)for(;d<f;d++)a[d]&&a[d][b]&&e.push(a[d][b][c]);else for(;d<f;d++)a[d]&&e.push(a[d][b]);return e},ia=function(a,b,c,e){var d=[],f=0,g=b.length;if(e!==k)for(;f<g;f++)a[b[f]][c]&&d.push(a[b[f]][c][e]);else for(;f<g;f++)d.push(a[b[f]][c]);return d},V=function(a,b){var c=[],e;b===k?(b=0,e=a):(e=b,b=a);for(var d=b;d<e;d++)c.push(d);return c},Sb=function(a){for(var b=[],c=0,e=a.length;c<e;c++)a[c]&&b.push(a[c]);return b},Na=function(a){var b=[],c,e,d=a.length,f,g=0;e=0;a:for(;e<d;e++){c=a[e];for(f= 0;f<g;f++)if(b[f]===c)continue a;b.push(c);g++}return b},A=function(a,b,c){a[b]!==k&&(a[c]=a[b])},ba=/\[.*?\]$/,T=/\(\)$/,wa=h("<div>")[0],Zb=wa.textContent!==k,$b=/<.*?>/g;m=function(a){this.$=function(a,b){return this.api(!0).$(a,b)};this._=function(a,b){return this.api(!0).rows(a,b).data()};this.api=function(a){return a?new t(za(this[u.iApiIndex])):new t(this)};this.fnAddData=function(a,b){var c=this.api(!0),e=h.isArray(a)&&(h.isArray(a[0])||h.isPlainObject(a[0]))?c.rows.add(a):c.row.add(a);(b=== k||b)&&c.draw();return e.flatten().toArray()};this.fnAdjustColumnSizing=function(a){var b=this.api(!0).columns.adjust(),c=b.settings()[0],e=c.oScroll;a===k||a?b.draw(!1):(""!==e.sX||""!==e.sY)&&Y(c)};this.fnClearTable=function(a){var b=this.api(!0).clear();(a===k||a)&&b.draw()};this.fnClose=function(a){this.api(!0).row(a).child.hide()};this.fnDeleteRow=function(a,b,c){var e=this.api(!0),a=e.rows(a),d=a.settings()[0],h=d.aoData[a[0][0]];a.remove();b&&b.call(this,d,h);(c===k||c)&&e.draw();return h}; this.fnDestroy=function(a){this.api(!0).destroy(a)};this.fnDraw=function(a){this.api(!0).draw(a)};this.fnFilter=function(a,b,c,e,d,h){d=this.api(!0);null===b||b===k?d.search(a,c,e,h):d.column(b).search(a,c,e,h);d.draw()};this.fnGetData=function(a,b){var c=this.api(!0);if(a!==k){var e=a.nodeName?a.nodeName.toLowerCase():"";return b!==k||"td"==e||"th"==e?c.cell(a,b).data():c.row(a).data()||null}return c.data().toArray()};this.fnGetNodes=function(a){var b=this.api(!0);return a!==k?b.row(a).node():b.rows().nodes().flatten().toArray()}; this.fnGetPosition=function(a){var b=this.api(!0),c=a.nodeName.toUpperCase();return"TR"==c?b.row(a).index():"TD"==c||"TH"==c?(a=b.cell(a).index(),[a.row,a.columnVisible,a.column]):null};this.fnIsOpen=function(a){return this.api(!0).row(a).child.isShown()};this.fnOpen=function(a,b,c){return this.api(!0).row(a).child(b,c).show().child()[0]};this.fnPageChange=function(a,b){var c=this.api(!0).page(a);(b===k||b)&&c.draw(!1)};this.fnSetColumnVis=function(a,b,c){a=this.api(!0).column(a).visible(b);(c=== k||c)&&a.columns.adjust().draw()};this.fnSettings=function(){return za(this[u.iApiIndex])};this.fnSort=function(a){this.api(!0).order(a).draw()};this.fnSortListener=function(a,b,c){this.api(!0).order.listener(a,b,c)};this.fnUpdate=function(a,b,c,e,d){var h=this.api(!0);c===k||null===c?h.row(b).data(a):h.cell(b,c).data(a);(d===k||d)&&h.columns.adjust();(e===k||e)&&h.draw();return 0};this.fnVersionCheck=u.fnVersionCheck;var b=this,c=a===k,e=this.length;c&&(a={});this.oApi=this.internal=u.internal;for(var d in m.ext.internal)d&& (this[d]=Nb(d));this.each(function(){var d={},d=1<e?Lb(d,a,!0):a,g=0,j,i=this.getAttribute("id"),o=!1,l=m.defaults,q=h(this);if("table"!=this.nodeName.toLowerCase())I(null,0,"Non-table node initialisation ("+this.nodeName+")",2);else{eb(l);fb(l.column);H(l,l,!0);H(l.column,l.column,!0);H(l,h.extend(d,q.data()));var n=m.settings,g=0;for(j=n.length;g<j;g++){var r=n[g];if(r.nTable==this||r.nTHead.parentNode==this||r.nTFoot&&r.nTFoot.parentNode==this){g=d.bRetrieve!==k?d.bRetrieve:l.bRetrieve;if(c||g)return r.oInstance; if(d.bDestroy!==k?d.bDestroy:l.bDestroy){r.oInstance.fnDestroy();break}else{I(r,0,"Cannot reinitialise DataTable",3);return}}if(r.sTableId==this.id){n.splice(g,1);break}}if(null===i||""===i)this.id=i="DataTables_Table_"+m.ext._unique++;var p=h.extend(!0,{},m.models.oSettings,{sDestroyWidth:q[0].style.width,sInstance:i,sTableId:i});p.nTable=this;p.oApi=b.internal;p.oInit=d;n.push(p);p.oInstance=1===b.length?b:q.dataTable();eb(d);d.oLanguage&&P(d.oLanguage);d.aLengthMenu&&!d.iDisplayLength&&(d.iDisplayLength= h.isArray(d.aLengthMenu[0])?d.aLengthMenu[0][0]:d.aLengthMenu[0]);d=Lb(h.extend(!0,{},l),d);E(p.oFeatures,d,"bPaginate bLengthChange bFilter bSort bSortMulti bInfo bProcessing bAutoWidth bSortClasses bServerSide bDeferRender".split(" "));E(p,d,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod","aaSorting","aaSortingFixed","aLengthMenu","sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback", "renderer","searchDelay",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"],["bJQueryUI","bJUI"]]);E(p.oScroll,d,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]);E(p.oLanguage,d,"fnInfoCallback");z(p,"aoDrawCallback",d.fnDrawCallback,"user");z(p,"aoServerParams",d.fnServerParams,"user");z(p,"aoStateSaveParams",d.fnStateSaveParams,"user");z(p,"aoStateLoadParams", d.fnStateLoadParams,"user");z(p,"aoStateLoaded",d.fnStateLoaded,"user");z(p,"aoRowCallback",d.fnRowCallback,"user");z(p,"aoRowCreatedCallback",d.fnCreatedRow,"user");z(p,"aoHeaderCallback",d.fnHeaderCallback,"user");z(p,"aoFooterCallback",d.fnFooterCallback,"user");z(p,"aoInitComplete",d.fnInitComplete,"user");z(p,"aoPreDrawCallback",d.fnPreDrawCallback,"user");i=p.oClasses;d.bJQueryUI?(h.extend(i,m.ext.oJUIClasses,d.oClasses),d.sDom===l.sDom&&"lfrtip"===l.sDom&&(p.sDom='<"H"lfr>t<"F"ip>'),p.renderer)? h.isPlainObject(p.renderer)&&!p.renderer.header&&(p.renderer.header="jqueryui"):p.renderer="jqueryui":h.extend(i,m.ext.classes,d.oClasses);q.addClass(i.sTable);if(""!==p.oScroll.sX||""!==p.oScroll.sY)p.oScroll.iBarWidth=Hb();!0===p.oScroll.sX&&(p.oScroll.sX="100%");p.iInitDisplayStart===k&&(p.iInitDisplayStart=d.iDisplayStart,p._iDisplayStart=d.iDisplayStart);null!==d.iDeferLoading&&(p.bDeferLoading=!0,g=h.isArray(d.iDeferLoading),p._iRecordsDisplay=g?d.iDeferLoading[0]:d.iDeferLoading,p._iRecordsTotal= g?d.iDeferLoading[1]:d.iDeferLoading);var t=p.oLanguage;h.extend(!0,t,d.oLanguage);""!==t.sUrl&&(h.ajax({dataType:"json",url:t.sUrl,success:function(a){P(a);H(l.oLanguage,a);h.extend(true,t,a);ga(p)},error:function(){ga(p)}}),o=!0);null===d.asStripeClasses&&(p.asStripeClasses=[i.sStripeOdd,i.sStripeEven]);var g=p.asStripeClasses,s=q.children("tbody").find("tr").eq(0);-1!==h.inArray(!0,h.map(g,function(a){return s.hasClass(a)}))&&(h("tbody tr",this).removeClass(g.join(" ")),p.asDestroyStripes=g.slice()); n=[];g=this.getElementsByTagName("thead");0!==g.length&&(da(p.aoHeader,g[0]),n=qa(p));if(null===d.aoColumns){r=[];g=0;for(j=n.length;g<j;g++)r.push(null)}else r=d.aoColumns;g=0;for(j=r.length;g<j;g++)Fa(p,n?n[g]:null);ib(p,d.aoColumnDefs,r,function(a,b){ka(p,a,b)});if(s.length){var u=function(a,b){return a.getAttribute("data-"+b)!==null?b:null};h.each(na(p,s[0]).cells,function(a,b){var c=p.aoColumns[a];if(c.mData===a){var d=u(b,"sort")||u(b,"order"),e=u(b,"filter")||u(b,"search");if(d!==null||e!== null){c.mData={_:a+".display",sort:d!==null?a+".@data-"+d:k,type:d!==null?a+".@data-"+d:k,filter:e!==null?a+".@data-"+e:k};ka(p,a)}}})}var v=p.oFeatures;d.bStateSave&&(v.bStateSave=!0,Kb(p,d),z(p,"aoDrawCallback",ya,"state_save"));if(d.aaSorting===k){n=p.aaSorting;g=0;for(j=n.length;g<j;g++)n[g][1]=p.aoColumns[g].asSorting[0]}xa(p);v.bSort&&z(p,"aoDrawCallback",function(){if(p.bSorted){var a=U(p),b={};h.each(a,function(a,c){b[c.src]=c.dir});w(p,null,"order",[p,a,b]);Jb(p)}});z(p,"aoDrawCallback", function(){(p.bSorted||B(p)==="ssp"||v.bDeferRender)&&xa(p)},"sc");gb(p);g=q.children("caption").each(function(){this._captionSide=q.css("caption-side")});j=q.children("thead");0===j.length&&(j=h("<thead/>").appendTo(this));p.nTHead=j[0];j=q.children("tbody");0===j.length&&(j=h("<tbody/>").appendTo(this));p.nTBody=j[0];j=q.children("tfoot");if(0===j.length&&0<g.length&&(""!==p.oScroll.sX||""!==p.oScroll.sY))j=h("<tfoot/>").appendTo(this);0===j.length||0===j.children().length?q.addClass(i.sNoFooter): 0<j.length&&(p.nTFoot=j[0],da(p.aoFooter,p.nTFoot));if(d.aaData)for(g=0;g<d.aaData.length;g++)K(p,d.aaData[g]);else(p.bDeferLoading||"dom"==B(p))&&ma(p,h(p.nTBody).children("tr"));p.aiDisplay=p.aiDisplayMaster.slice();p.bInitialised=!0;!1===o&&ga(p)}});b=null;return this};var Tb=[],y=Array.prototype,cc=function(a){var b,c,e=m.settings,d=h.map(e,function(a){return a.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase())return b=h.inArray(a,d),-1!==b?[e[b]]: null;if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?c=h(a):a instanceof h&&(c=a)}else return[];if(c)return c.map(function(){b=h.inArray(this,d);return-1!==b?e[b]:null}).toArray()};t=function(a,b){if(!(this instanceof t))return new t(a,b);var c=[],e=function(a){(a=cc(a))&&c.push.apply(c,a)};if(h.isArray(a))for(var d=0,f=a.length;d<f;d++)e(a[d]);else e(a);this.context=Na(c);b&&this.push.apply(this,b.toArray?b.toArray():b);this.selector={rows:null,cols:null,opts:null}; t.extend(this,this,Tb)};m.Api=t;t.prototype={any:function(){return 0!==this.flatten().length},concat:y.concat,context:[],each:function(a){for(var b=0,c=this.length;b<c;b++)a.call(this,this[b],b,this);return this},eq:function(a){var b=this.context;return b.length>a?new t(b[a],this[a]):null},filter:function(a){var b=[];if(y.filter)b=y.filter.call(this,a,this);else for(var c=0,e=this.length;c<e;c++)a.call(this,this[c],c,this)&&b.push(this[c]);return new t(this.context,b)},flatten:function(){var a=[]; return new t(this.context,a.concat.apply(a,this.toArray()))},join:y.join,indexOf:y.indexOf||function(a,b){for(var c=b||0,e=this.length;c<e;c++)if(this[c]===a)return c;return-1},iterator:function(a,b,c,e){var d=[],f,g,h,i,o,l=this.context,q,n,m=this.selector;"string"===typeof a&&(e=c,c=b,b=a,a=!1);g=0;for(h=l.length;g<h;g++){var p=new t(l[g]);if("table"===b)f=c.call(p,l[g],g),f!==k&&d.push(f);else if("columns"===b||"rows"===b)f=c.call(p,l[g],this[g],g),f!==k&&d.push(f);else if("column"===b||"column-rows"=== b||"row"===b||"cell"===b){n=this[g];"column-rows"===b&&(q=Ca(l[g],m.opts));i=0;for(o=n.length;i<o;i++)f=n[i],f="cell"===b?c.call(p,l[g],f.row,f.column,g,i):c.call(p,l[g],f,g,i,q),f!==k&&d.push(f)}}return d.length||e?(a=new t(l,a?d.concat.apply([],d):d),b=a.selector,b.rows=m.rows,b.cols=m.cols,b.opts=m.opts,a):this},lastIndexOf:y.lastIndexOf||function(a,b){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(a){var b=[];if(y.map)b=y.map.call(this,a,this);else for(var c= 0,e=this.length;c<e;c++)b.push(a.call(this,this[c],c));return new t(this.context,b)},pluck:function(a){return this.map(function(b){return b[a]})},pop:y.pop,push:y.push,reduce:y.reduce||function(a,b){return hb(this,a,b,0,this.length,1)},reduceRight:y.reduceRight||function(a,b){return hb(this,a,b,this.length-1,-1,-1)},reverse:y.reverse,selector:null,shift:y.shift,sort:y.sort,splice:y.splice,toArray:function(){return y.slice.call(this)},to$:function(){return h(this)},toJQuery:function(){return h(this)}, unique:function(){return new t(this.context,Na(this))},unshift:y.unshift};t.extend=function(a,b,c){if(c.length&&b&&(b instanceof t||b.__dt_wrapper)){var e,d,f,g=function(a,b,c){return function(){var d=b.apply(a,arguments);t.extend(d,d,c.methodExt);return d}};e=0;for(d=c.length;e<d;e++)f=c[e],b[f.name]="function"===typeof f.val?g(a,f.val,f):h.isPlainObject(f.val)?{}:f.val,b[f.name].__dt_wrapper=!0,t.extend(a,b[f.name],f.propExt)}};t.register=r=function(a,b){if(h.isArray(a))for(var c=0,e=a.length;c< e;c++)t.register(a[c],b);else for(var d=a.split("."),f=Tb,g,j,c=0,e=d.length;c<e;c++){g=(j=-1!==d[c].indexOf("()"))?d[c].replace("()",""):d[c];var i;a:{i=0;for(var o=f.length;i<o;i++)if(f[i].name===g){i=f[i];break a}i=null}i||(i={name:g,val:{},methodExt:[],propExt:[]},f.push(i));c===e-1?i.val=b:f=j?i.methodExt:i.propExt}};t.registerPlural=v=function(a,b,c){t.register(a,c);t.register(b,function(){var a=c.apply(this,arguments);return a===this?this:a instanceof t?a.length?h.isArray(a[0])?new t(a.context, a[0]):a[0]:k:a})};r("tables()",function(a){var b;if(a){b=t;var c=this.context;if("number"===typeof a)a=[c[a]];else var e=h.map(c,function(a){return a.nTable}),a=h(e).filter(a).map(function(){var a=h.inArray(this,e);return c[a]}).toArray();b=new b(a)}else b=this;return b});r("table()",function(a){var a=this.tables(a),b=a.context;return b.length?new t(b[0]):a});v("tables().nodes()","table().node()",function(){return this.iterator("table",function(a){return a.nTable},1)});v("tables().body()","table().body()", function(){return this.iterator("table",function(a){return a.nTBody},1)});v("tables().header()","table().header()",function(){return this.iterator("table",function(a){return a.nTHead},1)});v("tables().footer()","table().footer()",function(){return this.iterator("table",function(a){return a.nTFoot},1)});v("tables().containers()","table().container()",function(){return this.iterator("table",function(a){return a.nTableWrapper},1)});r("draw()",function(a){return this.iterator("table",function(b){N(b, !1===a)})});r("page()",function(a){return a===k?this.page.info().page:this.iterator("table",function(b){Ta(b,a)})});r("page.info()",function(){if(0===this.context.length)return k;var a=this.context[0],b=a._iDisplayStart,c=a._iDisplayLength,e=a.fnRecordsDisplay(),d=-1===c;return{page:d?0:Math.floor(b/c),pages:d?1:Math.ceil(e/c),start:b,end:a.fnDisplayEnd(),length:c,recordsTotal:a.fnRecordsTotal(),recordsDisplay:e}});r("page.len()",function(a){return a===k?0!==this.context.length?this.context[0]._iDisplayLength: k:this.iterator("table",function(b){Ra(b,a)})});var Ub=function(a,b,c){if(c){var e=new t(a);e.one("draw",function(){c(e.ajax.json())})}"ssp"==B(a)?N(a,b):(C(a,!0),ra(a,[],function(c){oa(a);for(var c=sa(a,c),e=0,g=c.length;e<g;e++)K(a,c[e]);N(a,b);C(a,!1)}))};r("ajax.json()",function(){var a=this.context;if(0<a.length)return a[0].json});r("ajax.params()",function(){var a=this.context;if(0<a.length)return a[0].oAjaxData});r("ajax.reload()",function(a,b){return this.iterator("table",function(c){Ub(c, !1===b,a)})});r("ajax.url()",function(a){var b=this.context;if(a===k){if(0===b.length)return k;b=b[0];return b.ajax?h.isPlainObject(b.ajax)?b.ajax.url:b.ajax:b.sAjaxSource}return this.iterator("table",function(b){h.isPlainObject(b.ajax)?b.ajax.url=a:b.ajax=a})});r("ajax.url().load()",function(a,b){return this.iterator("table",function(c){Ub(c,!1===b,a)})});var $a=function(a,b,c,e,d){var f=[],g,j,i,o,l,q;i=typeof b;if(!b||"string"===i||"function"===i||b.length===k)b=[b];i=0;for(o=b.length;i<o;i++){j= b[i]&&b[i].split?b[i].split(","):[b[i]];l=0;for(q=j.length;l<q;l++)(g=c("string"===typeof j[l]?h.trim(j[l]):j[l]))&&g.length&&f.push.apply(f,g)}a=u.selector[a];if(a.length){i=0;for(o=a.length;i<o;i++)f=a[i](e,d,f)}return f},ab=function(a){a||(a={});a.filter&&a.search===k&&(a.search=a.filter);return h.extend({search:"none",order:"current",page:"all"},a)},bb=function(a){for(var b=0,c=a.length;b<c;b++)if(0<a[b].length)return a[0]=a[b],a[0].length=1,a.length=1,a.context=[a.context[b]],a;a.length=0;return a}, Ca=function(a,b){var c,e,d,f=[],g=a.aiDisplay;c=a.aiDisplayMaster;var j=b.search;e=b.order;d=b.page;if("ssp"==B(a))return"removed"===j?[]:V(0,c.length);if("current"==d){c=a._iDisplayStart;for(e=a.fnDisplayEnd();c<e;c++)f.push(g[c])}else if("current"==e||"applied"==e)f="none"==j?c.slice():"applied"==j?g.slice():h.map(c,function(a){return-1===h.inArray(a,g)?a:null});else if("index"==e||"original"==e){c=0;for(e=a.aoData.length;c<e;c++)"none"==j?f.push(c):(d=h.inArray(c,g),(-1===d&&"removed"==j||0<=d&& "applied"==j)&&f.push(c))}return f};r("rows()",function(a,b){a===k?a="":h.isPlainObject(a)&&(b=a,a="");var b=ab(b),c=this.iterator("table",function(c){var d=b;return $a("row",a,function(a){var b=Pb(a);if(b!==null&&!d)return[b];var j=Ca(c,d);if(b!==null&&h.inArray(b,j)!==-1)return[b];if(!a)return j;if(typeof a==="function")return h.map(j,function(b){var d=c.aoData[b];return a(b,d._aData,d.nTr)?b:null});b=Sb(ia(c.aoData,j,"nTr"));return a.nodeName&&h.inArray(a,b)!==-1?[a._DT_RowIndex]:h(b).filter(a).map(function(){return this._DT_RowIndex}).toArray()}, c,d)},1);c.selector.rows=a;c.selector.opts=b;return c});r("rows().nodes()",function(){return this.iterator("row",function(a,b){return a.aoData[b].nTr||k},1)});r("rows().data()",function(){return this.iterator(!0,"rows",function(a,b){return ia(a.aoData,b,"_aData")},1)});v("rows().cache()","row().cache()",function(a){return this.iterator("row",function(b,c){var e=b.aoData[c];return"search"===a?e._aFilterData:e._aSortData},1)});v("rows().invalidate()","row().invalidate()",function(a){return this.iterator("row", function(b,c){ca(b,c,a)})});v("rows().indexes()","row().index()",function(){return this.iterator("row",function(a,b){return b},1)});v("rows().remove()","row().remove()",function(){var a=this;return this.iterator("row",function(b,c,e){var d=b.aoData;d.splice(c,1);for(var f=0,g=d.length;f<g;f++)null!==d[f].nTr&&(d[f].nTr._DT_RowIndex=f);h.inArray(c,b.aiDisplay);pa(b.aiDisplayMaster,c);pa(b.aiDisplay,c);pa(a[e],c,!1);Sa(b)})});r("rows.add()",function(a){var b=this.iterator("table",function(b){var c, f,g,h=[];f=0;for(g=a.length;f<g;f++)c=a[f],c.nodeName&&"TR"===c.nodeName.toUpperCase()?h.push(ma(b,c)[0]):h.push(K(b,c));return h},1),c=this.rows(-1);c.pop();c.push.apply(c,b.toArray());return c});r("row()",function(a,b){return bb(this.rows(a,b))});r("row().data()",function(a){var b=this.context;if(a===k)return b.length&&this.length?b[0].aoData[this[0]]._aData:k;b[0].aoData[this[0]]._aData=a;ca(b[0],this[0],"data");return this});r("row().node()",function(){var a=this.context;return a.length&&this.length? a[0].aoData[this[0]].nTr||null:null});r("row.add()",function(a){a instanceof h&&a.length&&(a=a[0]);var b=this.iterator("table",function(b){return a.nodeName&&"TR"===a.nodeName.toUpperCase()?ma(b,a)[0]:K(b,a)});return this.row(b[0])});var cb=function(a,b){var c=a.context;c.length&&(c=c[0].aoData[b!==k?b:a[0]],c._details&&(c._details.remove(),c._detailsShow=k,c._details=k))},Vb=function(a,b){var c=a.context;if(c.length&&a.length){var e=c[0].aoData[a[0]];if(e._details){(e._detailsShow=b)?e._details.insertAfter(e.nTr): e._details.detach();var d=c[0],f=new t(d),g=d.aoData;f.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0<D(g,"_details").length&&(f.on("draw.dt.DT_details",function(a,b){d===b&&f.rows({page:"current"}).eq(0).each(function(a){a=g[a];a._detailsShow&&a._details.insertAfter(a.nTr)})}),f.on("column-visibility.dt.DT_details",function(a,b){if(d===b)for(var c,e=aa(b),f=0,h=g.length;f<h;f++)c=g[f],c._details&&c._details.children("td[colspan]").attr("colspan",e)}),f.on("destroy.dt.DT_details", function(a,b){if(d===b)for(var c=0,e=g.length;c<e;c++)g[c]._details&&cb(f,c)}))}}};r("row().child()",function(a,b){var c=this.context;if(a===k)return c.length&&this.length?c[0].aoData[this[0]]._details:k;if(!0===a)this.child.show();else if(!1===a)cb(this);else if(c.length&&this.length){var e=c[0],c=c[0].aoData[this[0]],d=[],f=function(a,b){if(h.isArray(a)||a instanceof h)for(var c=0,k=a.length;c<k;c++)f(a[c],b);else a.nodeName&&"tr"===a.nodeName.toLowerCase()?d.push(a):(c=h("<tr><td/></tr>").addClass(b), h("td",c).addClass(b).html(a)[0].colSpan=aa(e),d.push(c[0]))};f(a,b);c._details&&c._details.remove();c._details=h(d);c._detailsShow&&c._details.insertAfter(c.nTr)}return this});r(["row().child.show()","row().child().show()"],function(){Vb(this,!0);return this});r(["row().child.hide()","row().child().hide()"],function(){Vb(this,!1);return this});r(["row().child.remove()","row().child().remove()"],function(){cb(this);return this});r("row().child.isShown()",function(){var a=this.context;return a.length&& this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var dc=/^(.+):(name|visIdx|visible)$/,Wb=function(a,b,c,e,d){for(var c=[],e=0,f=d.length;e<f;e++)c.push(x(a,d[e],b));return c};r("columns()",function(a,b){a===k?a="":h.isPlainObject(a)&&(b=a,a="");var b=ab(b),c=this.iterator("table",function(c){var d=a,f=b,g=c.aoColumns,j=D(g,"sName"),i=D(g,"nTh");return $a("column",d,function(a){var b=Pb(a);if(a==="")return V(g.length);if(b!==null)return[b>=0?b:g.length+b];if(typeof a==="function"){var d=Ca(c, f);return h.map(g,function(b,f){return a(f,Wb(c,f,0,0,d),i[f])?f:null})}var k=typeof a==="string"?a.match(dc):"";if(k)switch(k[2]){case "visIdx":case "visible":b=parseInt(k[1],10);if(b<0){var m=h.map(g,function(a,b){return a.bVisible?b:null});return[m[m.length+b]]}return[la(c,b)];case "name":return h.map(j,function(a,b){return a===k[1]?b:null})}else return h(i).filter(a).map(function(){return h.inArray(this,i)}).toArray()},c,f)},1);c.selector.cols=a;c.selector.opts=b;return c});v("columns().header()", "column().header()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTh},1)});v("columns().footer()","column().footer()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTf},1)});v("columns().data()","column().data()",function(){return this.iterator("column-rows",Wb,1)});v("columns().dataSrc()","column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});v("columns().cache()","column().cache()", function(a){return this.iterator("column-rows",function(b,c,e,d,f){return ia(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});v("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,e,d){return ia(a.aoData,d,"anCells",b)},1)});v("columns().visible()","column().visible()",function(a,b){return this.iterator("column",function(c,e){if(a===k)return c.aoColumns[e].bVisible;var d=c.aoColumns,f=d[e],g=c.aoData,j,i,m;if(a!==k&&f.bVisible!==a){if(a){var l= h.inArray(!0,D(d,"bVisible"),e+1);j=0;for(i=g.length;j<i;j++)m=g[j].nTr,d=g[j].anCells,m&&m.insertBefore(d[e],d[l]||null)}else h(D(c.aoData,"anCells",e)).detach();f.bVisible=a;ea(c,c.aoHeader);ea(c,c.aoFooter);if(b===k||b)X(c),(c.oScroll.sX||c.oScroll.sY)&&Y(c);w(c,null,"column-visibility",[c,e,a]);ya(c)}})});v("columns().indexes()","column().index()",function(a){return this.iterator("column",function(b,c){return"visible"===a?$(b,c):c},1)});r("columns.adjust()",function(){return this.iterator("table", function(a){X(a)},1)});r("column.index()",function(a,b){if(0!==this.context.length){var c=this.context[0];if("fromVisible"===a||"toData"===a)return la(c,b);if("fromData"===a||"toVisible"===a)return $(c,b)}});r("column()",function(a,b){return bb(this.columns(a,b))});r("cells()",function(a,b,c){h.isPlainObject(a)&&(a.row===k?(c=a,a=null):(c=b,b=null));h.isPlainObject(b)&&(c=b,b=null);if(null===b||b===k)return this.iterator("table",function(b){var d=a,e=ab(c),f=b.aoData,g=Ca(b,e),i=Sb(ia(f,g,"anCells")), j=h([].concat.apply([],i)),l,m=b.aoColumns.length,o,r,t,s,u,v;return $a("cell",d,function(a){var c=typeof a==="function";if(a===null||a===k||c){o=[];r=0;for(t=g.length;r<t;r++){l=g[r];for(s=0;s<m;s++){u={row:l,column:s};if(c){v=b.aoData[l];a(u,x(b,l,s),v.anCells?v.anCells[s]:null)&&o.push(u)}else o.push(u)}}return o}return h.isPlainObject(a)?[a]:j.filter(a).map(function(a,b){l=b.parentNode._DT_RowIndex;return{row:l,column:h.inArray(b,f[l].anCells)}}).toArray()},b,e)});var e=this.columns(b,c),d=this.rows(a, c),f,g,j,i,m,l=this.iterator("table",function(a,b){f=[];g=0;for(j=d[b].length;g<j;g++){i=0;for(m=e[b].length;i<m;i++)f.push({row:d[b][g],column:e[b][i]})}return f},1);h.extend(l.selector,{cols:b,rows:a,opts:c});return l});v("cells().nodes()","cell().node()",function(){return this.iterator("cell",function(a,b,c){return(a=a.aoData[b].anCells)?a[c]:k},1)});r("cells().data()",function(){return this.iterator("cell",function(a,b,c){return x(a,b,c)},1)});v("cells().cache()","cell().cache()",function(a){a= "search"===a?"_aFilterData":"_aSortData";return this.iterator("cell",function(b,c,e){return b.aoData[c][a][e]},1)});v("cells().render()","cell().render()",function(a){return this.iterator("cell",function(b,c,e){return x(b,c,e,a)},1)});v("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(a,b,c){return{row:b,column:c,columnVisible:$(a,c)}},1)});v("cells().invalidate()","cell().invalidate()",function(a){return this.iterator("cell",function(b,c,e){ca(b,c,a,e)})});r("cell()", function(a,b,c){return bb(this.cells(a,b,c))});r("cell().data()",function(a){var b=this.context,c=this[0];if(a===k)return b.length&&c.length?x(b[0],c[0].row,c[0].column):k;Ia(b[0],c[0].row,c[0].column,a);ca(b[0],c[0].row,"data",c[0].column);return this});r("order()",function(a,b){var c=this.context;if(a===k)return 0!==c.length?c[0].aaSorting:k;"number"===typeof a?a=[[a,b]]:h.isArray(a[0])||(a=Array.prototype.slice.call(arguments));return this.iterator("table",function(b){b.aaSorting=a.slice()})}); r("order.listener()",function(a,b,c){return this.iterator("table",function(e){Oa(e,a,b,c)})});r(["columns().order()","column().order()"],function(a){var b=this;return this.iterator("table",function(c,e){var d=[];h.each(b[e],function(b,c){d.push([c,a])});c.aaSorting=d})});r("search()",function(a,b,c,e){var d=this.context;return a===k?0!==d.length?d[0].oPreviousSearch.sSearch:k:this.iterator("table",function(d){d.oFeatures.bFilter&&fa(d,h.extend({},d.oPreviousSearch,{sSearch:a+"",bRegex:null===b?!1: b,bSmart:null===c?!0:c,bCaseInsensitive:null===e?!0:e}),1)})});v("columns().search()","column().search()",function(a,b,c,e){return this.iterator("column",function(d,f){var g=d.aoPreSearchCols;if(a===k)return g[f].sSearch;d.oFeatures.bFilter&&(h.extend(g[f],{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===e?!0:e}),fa(d,d.oPreviousSearch,1))})});r("state()",function(){return this.context.length?this.context[0].oSavedState:null});r("state.clear()",function(){return this.iterator("table", function(a){a.fnStateSaveCallback.call(a.oInstance,a,{})})});r("state.loaded()",function(){return this.context.length?this.context[0].oLoadedState:null});r("state.save()",function(){return this.iterator("table",function(a){ya(a)})});m.versionCheck=m.fnVersionCheck=function(a){for(var b=m.version.split("."),a=a.split("."),c,e,d=0,f=a.length;d<f;d++)if(c=parseInt(b[d],10)||0,e=parseInt(a[d],10)||0,c!==e)return c>e;return!0};m.isDataTable=m.fnIsDataTable=function(a){var b=h(a).get(0),c=!1;h.each(m.settings, function(a,d){var f=d.nScrollHead?h("table",d.nScrollHead)[0]:null,g=d.nScrollFoot?h("table",d.nScrollFoot)[0]:null;if(d.nTable===b||f===b||g===b)c=!0});return c};m.tables=m.fnTables=function(a){return h.map(m.settings,function(b){if(!a||a&&h(b.nTable).is(":visible"))return b.nTable})};m.util={throttle:ua,escapeRegex:va};m.camelToHungarian=H;r("$()",function(a,b){var c=this.rows(b).nodes(),c=h(c);return h([].concat(c.filter(a).toArray(),c.find(a).toArray()))});h.each(["on","one","off"],function(a, b){r(b+"()",function(){var a=Array.prototype.slice.call(arguments);a[0].match(/\.dt\b/)||(a[0]+=".dt");var e=h(this.tables().nodes());e[b].apply(e,a);return this})});r("clear()",function(){return this.iterator("table",function(a){oa(a)})});r("settings()",function(){return new t(this.context,this.context)});r("init()",function(){var a=this.context;return a.length?a[0].oInit:null});r("data()",function(){return this.iterator("table",function(a){return D(a.aoData,"_aData")}).flatten()});r("destroy()", function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,e=b.oClasses,d=b.nTable,f=b.nTBody,g=b.nTHead,j=b.nTFoot,i=h(d),f=h(f),k=h(b.nTableWrapper),l=h.map(b.aoData,function(a){return a.nTr}),q;b.bDestroying=!0;w(b,"aoDestroyCallback","destroy",[b]);a||(new t(b)).columns().visible(!0);k.unbind(".DT").find(":not(tbody *)").unbind(".DT");h(Ea).unbind(".DT-"+b.sInstance);d!=g.parentNode&&(i.children("thead").detach(),i.append(g));j&&d!=j.parentNode&&(i.children("tfoot").detach(), i.append(j));i.detach();k.detach();b.aaSorting=[];b.aaSortingFixed=[];xa(b);h(l).removeClass(b.asStripeClasses.join(" "));h("th, td",g).removeClass(e.sSortable+" "+e.sSortableAsc+" "+e.sSortableDesc+" "+e.sSortableNone);b.bJUI&&(h("th span."+e.sSortIcon+", td span."+e.sSortIcon,g).detach(),h("th, td",g).each(function(){var a=h("div."+e.sSortJUIWrapper,this);h(this).append(a.contents());a.detach()}));!a&&c&&c.insertBefore(d,b.nTableReinsertBefore);f.children().detach();f.append(l);i.css("width",b.sDestroyWidth).removeClass(e.sTable); (q=b.asDestroyStripes.length)&&f.children().each(function(a){h(this).addClass(b.asDestroyStripes[a%q])});c=h.inArray(b,m.settings);-1!==c&&m.settings.splice(c,1)})});h.each(["column","row","cell"],function(a,b){r(b+"s().every()",function(a){return this.iterator(b,function(e,d,f){a.call((new t(e))[b](d,f))})})});r("i18n()",function(a,b,c){var e=this.context[0],a=R(a)(e.oLanguage);a===k&&(a=b);c!==k&&h.isPlainObject(a)&&(a=a[c]!==k?a[c]:a._);return a.replace("%d",c)});m.version="1.10.7";m.settings= [];m.models={};m.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};m.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null};m.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std", sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};m.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bJQueryUI:!1,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1, fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){}},fnStateLoadParams:null, fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"}, sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:h.extend({},m.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null, sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null};W(m.defaults);m.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};W(m.defaults.column);m.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null, bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[], sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null, bAjaxDataGet:!0,jqXHR:null,json:k,oAjaxData:k,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,bJUI:null,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==B(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==B(this)?1*this._iRecordsDisplay: this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,e=this.aiDisplay.length,d=this.oFeatures,f=d.bPaginate;return d.bServerSide?!1===f||-1===a?b+e:Math.min(b+a,this._iRecordsDisplay):!f||c>e||-1===a?e:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{}};m.ext=u={buttons:{},classes:{},errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{}, header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:m.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:m.version};h.extend(u,{afnFiltering:u.search,aTypes:u.type.detect,ofnSearch:u.type.search,oSort:u.type.order,afnSortData:u.order,aoFeatures:u.feature,oApi:u.internal,oStdClasses:u.classes,oPagination:u.pager});h.extend(m.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd", sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead", sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""});var Da="",Da="",F=Da+"ui-state-default",ja=Da+"css_right ui-icon ui-icon-",Xb=Da+"fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix";h.extend(m.ext.oJUIClasses, m.ext.classes,{sPageButton:"fg-button ui-button "+F,sPageButtonActive:"ui-state-disabled",sPageButtonDisabled:"ui-state-disabled",sPaging:"dataTables_paginate fg-buttonset ui-buttonset fg-buttonset-multi ui-buttonset-multi paging_",sSortAsc:F+" sorting_asc",sSortDesc:F+" sorting_desc",sSortable:F+" sorting",sSortableAsc:F+" sorting_asc_disabled",sSortableDesc:F+" sorting_desc_disabled",sSortableNone:F+" sorting_disabled",sSortJUIAsc:ja+"triangle-1-n",sSortJUIDesc:ja+"triangle-1-s",sSortJUI:ja+"carat-2-n-s", sSortJUIAscAllowed:ja+"carat-1-n",sSortJUIDescAllowed:ja+"carat-1-s",sSortJUIWrapper:"DataTables_sort_wrapper",sSortIcon:"DataTables_sort_icon",sScrollHead:"dataTables_scrollHead "+F,sScrollFoot:"dataTables_scrollFoot "+F,sHeaderTH:F,sFooterTH:F,sJUIHeader:Xb+" ui-corner-tl ui-corner-tr",sJUIFooter:Xb+" ui-corner-bl ui-corner-br"});var Mb=m.ext.pager;h.extend(Mb,{simple:function(){return["previous","next"]},full:function(){return["first","previous","next","last"]},simple_numbers:function(a,b){return["previous", Wa(a,b),"next"]},full_numbers:function(a,b){return["first","previous",Wa(a,b),"next","last"]},_numbers:Wa,numbers_length:7});h.extend(!0,m.ext.renderer,{pageButton:{_:function(a,b,c,e,d,f){var g=a.oClasses,j=a.oLanguage.oPaginate,i,k,l=0,m=function(b,e){var n,r,t,s,u=function(b){Ta(a,b.data.action,true)};n=0;for(r=e.length;n<r;n++){s=e[n];if(h.isArray(s)){t=h("<"+(s.DT_el||"div")+"/>").appendTo(b);m(t,s)}else{k=i="";switch(s){case "ellipsis":b.append('<span class="ellipsis">&#x2026;</span>');break; case "first":i=j.sFirst;k=s+(d>0?"":" "+g.sPageButtonDisabled);break;case "previous":i=j.sPrevious;k=s+(d>0?"":" "+g.sPageButtonDisabled);break;case "next":i=j.sNext;k=s+(d<f-1?"":" "+g.sPageButtonDisabled);break;case "last":i=j.sLast;k=s+(d<f-1?"":" "+g.sPageButtonDisabled);break;default:i=s+1;k=d===s?g.sPageButtonActive:""}if(i){t=h("<a>",{"class":g.sPageButton+" "+k,"aria-controls":a.sTableId,"data-dt-idx":l,tabindex:a.iTabIndex,id:c===0&&typeof s==="string"?a.sTableId+"_"+s:null}).html(i).appendTo(b); Va(t,{action:s},u);l++}}}},n;try{n=h(Q.activeElement).data("dt-idx")}catch(r){}m(h(b).empty(),e);n&&h(b).find("[data-dt-idx="+n+"]").focus()}}});h.extend(m.ext.type.detect,[function(a,b){var c=b.oLanguage.sDecimal;return Za(a,c)?"num"+c:null},function(a){if(a&&!(a instanceof Date)&&(!ac.test(a)||!bc.test(a)))return null;var b=Date.parse(a);return null!==b&&!isNaN(b)||J(a)?"date":null},function(a,b){var c=b.oLanguage.sDecimal;return Za(a,c,!0)?"num-fmt"+c:null},function(a,b){var c=b.oLanguage.sDecimal; return Rb(a,c)?"html-num"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Rb(a,c,!0)?"html-num-fmt"+c:null},function(a){return J(a)||"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);h.extend(m.ext.type.search,{html:function(a){return J(a)?a:"string"===typeof a?a.replace(Ob," ").replace(Ba,""):""},string:function(a){return J(a)?a:"string"===typeof a?a.replace(Ob," "):a}});var Aa=function(a,b,c,e){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=Qb(a,b));a.replace&&(c&&(a=a.replace(c,"")), e&&(a=a.replace(e,"")));return 1*a};h.extend(u.type.order,{"date-pre":function(a){return Date.parse(a)||0},"html-pre":function(a){return J(a)?"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return J(a)?"":"string"===typeof a?a.toLowerCase():!a.toString?"":a.toString()},"string-asc":function(a,b){return a<b?-1:a>b?1:0},"string-desc":function(a,b){return a<b?1:a>b?-1:0}});db("");h.extend(!0,m.ext.renderer,{header:{_:function(a,b,c,e){h(a.nTable).on("order.dt.DT",function(d, f,g,h){if(a===f){d=c.idx;b.removeClass(c.sSortingClass+" "+e.sSortAsc+" "+e.sSortDesc).addClass(h[d]=="asc"?e.sSortAsc:h[d]=="desc"?e.sSortDesc:c.sSortingClass)}})},jqueryui:function(a,b,c,e){h("<div/>").addClass(e.sSortJUIWrapper).append(b.contents()).append(h("<span/>").addClass(e.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);h(a.nTable).on("order.dt.DT",function(d,f,g,h){if(a===f){d=c.idx;b.removeClass(e.sSortAsc+" "+e.sSortDesc).addClass(h[d]=="asc"?e.sSortAsc:h[d]=="desc"?e.sSortDesc:c.sSortingClass); b.find("span."+e.sSortIcon).removeClass(e.sSortJUIAsc+" "+e.sSortJUIDesc+" "+e.sSortJUI+" "+e.sSortJUIAscAllowed+" "+e.sSortJUIDescAllowed).addClass(h[d]=="asc"?e.sSortJUIAsc:h[d]=="desc"?e.sSortJUIDesc:c.sSortingClassJUI)}})}}});m.render={number:function(a,b,c,e){return{display:function(d){if("number"!==typeof d&&"string"!==typeof d)return d;var f=0>d?"-":"",d=Math.abs(parseFloat(d)),g=parseInt(d,10),d=c?b+(d-g).toFixed(c).substring(2):"";return f+(e||"")+g.toString().replace(/\B(?=(\d{3})+(?!\d))/g, a)+d}}}};h.extend(m.ext.internal,{_fnExternApiFunc:Nb,_fnBuildAjax:ra,_fnAjaxUpdate:kb,_fnAjaxParameters:tb,_fnAjaxUpdateDraw:ub,_fnAjaxDataSrc:sa,_fnAddColumn:Fa,_fnColumnOptions:ka,_fnAdjustColumnSizing:X,_fnVisibleToColumnIndex:la,_fnColumnIndexToVisible:$,_fnVisbleColumns:aa,_fnGetColumns:Z,_fnColumnTypes:Ha,_fnApplyColumnDefs:ib,_fnHungarianMap:W,_fnCamelToHungarian:H,_fnLanguageCompat:P,_fnBrowserDetect:gb,_fnAddData:K,_fnAddTr:ma,_fnNodeToDataIndex:function(a,b){return b._DT_RowIndex!==k?b._DT_RowIndex: null},_fnNodeToColumnIndex:function(a,b,c){return h.inArray(c,a.aoData[b].anCells)},_fnGetCellData:x,_fnSetCellData:Ia,_fnSplitObjNotation:Ka,_fnGetObjectDataFn:R,_fnSetObjectDataFn:S,_fnGetDataMaster:La,_fnClearTable:oa,_fnDeleteIndex:pa,_fnInvalidate:ca,_fnGetRowElements:na,_fnCreateTr:Ja,_fnBuildHead:jb,_fnDrawHead:ea,_fnDraw:M,_fnReDraw:N,_fnAddOptionsHtml:mb,_fnDetectHeader:da,_fnGetUniqueThs:qa,_fnFeatureHtmlFilter:ob,_fnFilterComplete:fa,_fnFilterCustom:xb,_fnFilterColumn:wb,_fnFilter:vb,_fnFilterCreateSearch:Qa, _fnEscapeRegex:va,_fnFilterData:yb,_fnFeatureHtmlInfo:rb,_fnUpdateInfo:Bb,_fnInfoMacros:Cb,_fnInitialise:ga,_fnInitComplete:ta,_fnLengthChange:Ra,_fnFeatureHtmlLength:nb,_fnFeatureHtmlPaginate:sb,_fnPageChange:Ta,_fnFeatureHtmlProcessing:pb,_fnProcessingDisplay:C,_fnFeatureHtmlTable:qb,_fnScrollDraw:Y,_fnApplyToChildren:G,_fnCalculateColumnWidths:Ga,_fnThrottle:ua,_fnConvertToWidth:Db,_fnScrollingWidthAdjust:Fb,_fnGetWidestNode:Eb,_fnGetMaxLenString:Gb,_fnStringToCss:s,_fnScrollBarWidth:Hb,_fnSortFlatten:U, _fnSort:lb,_fnSortAria:Jb,_fnSortListener:Ua,_fnSortAttachListener:Oa,_fnSortingClasses:xa,_fnSortData:Ib,_fnSaveState:ya,_fnLoadState:Kb,_fnSettingsFromNode:za,_fnLog:I,_fnMap:E,_fnBindAction:Va,_fnCallbackReg:z,_fnCallbackFire:w,_fnLengthOverflow:Sa,_fnRenderer:Pa,_fnDataSource:B,_fnRowAttributes:Ma,_fnCalculateEnd:function(){}});h.fn.dataTable=m;h.fn.dataTableSettings=m.settings;h.fn.dataTableExt=m.ext;h.fn.DataTable=function(a){return h(this).dataTable(a).api()};h.each(m,function(a,b){h.fn.DataTable[a]= b});return h.fn.dataTable};"function"===typeof define&&define.amd?define("datatables",["jquery"],P):"object"===typeof exports?module.exports=P(require("jquery")):jQuery&&!jQuery.fn.dataTable&&P(jQuery)})(window,document); /*! DataTables Bootstrap 3 integration ©2011-2014 SpryMedia Ltd - datatables.net/license */ (function(){var f=function(c,b){c.extend(!0,b.defaults,{dom:"<'row'<'col-sm-6'l><'col-sm-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-6'i><'col-sm-6'p>>",renderer:"bootstrap"});c.extend(b.ext.classes,{sWrapper:"dataTables_wrapper form-inline dt-bootstrap",sFilterInput:"form-control input-sm",sLengthSelect:"form-control input-sm"});b.ext.renderer.pageButton.bootstrap=function(g,f,p,k,h,l){var q=new b.Api(g),r=g.oClasses,i=g.oLanguage.oPaginate,d,e,o=function(b,f){var j,m,n,a,k=function(a){a.preventDefault(); c(a.currentTarget).hasClass("disabled")||q.page(a.data.action).draw(!1)};j=0;for(m=f.length;j<m;j++)if(a=f[j],c.isArray(a))o(b,a);else{e=d="";switch(a){case "ellipsis":d="&hellip;";e="disabled";break;case "first":d=i.sFirst;e=a+(0<h?"":" disabled");break;case "previous":d=i.sPrevious;e=a+(0<h?"":" disabled");break;case "next":d=i.sNext;e=a+(h<l-1?"":" disabled");break;case "last":d=i.sLast;e=a+(h<l-1?"":" disabled");break;default:d=a+1,e=h===a?"active":""}d&&(n=c("<li>",{"class":r.sPageButton+" "+ e,"aria-controls":g.sTableId,tabindex:g.iTabIndex,id:0===p&&"string"===typeof a?g.sTableId+"_"+a:null}).append(c("<a>",{href:"#"}).html(d)).appendTo(b),g.oApi._fnBindAction(n,{action:a},k))}};o(c(f).empty().html('<ul class="pagination"/>').children("ul"),k)};b.TableTools&&(c.extend(!0,b.TableTools.classes,{container:"DTTT btn-group",buttons:{normal:"btn btn-default",disabled:"disabled"},collection:{container:"DTTT_dropdown dropdown-menu",buttons:{normal:"",disabled:"disabled"}},print:{info:"DTTT_print_info"}, select:{row:"active"}}),c.extend(!0,b.TableTools.DEFAULTS.oTags,{collection:{container:"ul",button:"li",liner:"a"}}))};"function"===typeof define&&define.amd?define(["jquery","datatables"],f):"object"===typeof exports?f(require("jquery"),require("datatables")):jQuery&&f(jQuery,jQuery.fn.dataTable)})(window,document); /* * metismenu - v1.1.3 * Easy menu jQuery plugin for Twitter Bootstrap 3 * https://github.com/onokumus/metisMenu * * Made by Osman Nuri Okumus * Under MIT License */ !function(a,b,c){function d(b,c){this.element=a(b),this.settings=a.extend({},f,c),this._defaults=f,this._name=e,this.init()}var e="metisMenu",f={toggle:!0,doubleTapToGo:!1};d.prototype={init:function(){var b=this.element,d=this.settings.toggle,f=this;this.isIE()<=9?(b.find("li.active").has("ul").children("ul").collapse("show"),b.find("li").not(".active").has("ul").children("ul").collapse("hide")):(b.find("li.active").has("ul").children("ul").addClass("collapse in"),b.find("li").not(".active").has("ul").children("ul").addClass("collapse")),f.settings.doubleTapToGo&&b.find("li.active").has("ul").children("a").addClass("doubleTapToGo"),b.find("li").has("ul").children("a").on("click."+e,function(b){return b.preventDefault(),f.settings.doubleTapToGo&&f.doubleTapToGo(a(this))&&"#"!==a(this).attr("href")&&""!==a(this).attr("href")?(b.stopPropagation(),void(c.location=a(this).attr("href"))):(a(this).parent("li").toggleClass("active").children("ul").collapse("toggle"),void(d&&a(this).parent("li").siblings().removeClass("active").children("ul.in").collapse("hide")))})},isIE:function(){for(var a,b=3,d=c.createElement("div"),e=d.getElementsByTagName("i");d.innerHTML="<!--[if gt IE "+ ++b+"]><i></i><![endif]-->",e[0];)return b>4?b:a},doubleTapToGo:function(a){var b=this.element;return a.hasClass("doubleTapToGo")?(a.removeClass("doubleTapToGo"),!0):a.parent().children("ul").length?(b.find(".doubleTapToGo").removeClass("doubleTapToGo"),a.addClass("doubleTapToGo"),!1):void 0},remove:function(){this.element.off("."+e),this.element.removeData(e)}},a.fn[e]=function(b){return this.each(function(){var c=a(this);c.data(e)&&c.data(e).remove(),c.data(e,new d(this,b))}),this}}(jQuery,window,document); /* @license morris.js v0.5.0 Copyright 2014 Olly Smith All rights reserved. Licensed under the BSD-2-Clause License. */ (function(){var a,b,c,d,e=[].slice,f=function(a,b){return function(){return a.apply(b,arguments)}},g={}.hasOwnProperty,h=function(a,b){function c(){this.constructor=a}for(var d in b)g.call(b,d)&&(a[d]=b[d]);return c.prototype=b.prototype,a.prototype=new c,a.__super__=b.prototype,a},i=[].indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(b in this&&this[b]===a)return b;return-1};b=window.Morris={},a=jQuery,b.EventEmitter=function(){function a(){}return a.prototype.on=function(a,b){return null==this.handlers&&(this.handlers={}),null==this.handlers[a]&&(this.handlers[a]=[]),this.handlers[a].push(b),this},a.prototype.fire=function(){var a,b,c,d,f,g,h;if(c=arguments[0],a=2<=arguments.length?e.call(arguments,1):[],null!=this.handlers&&null!=this.handlers[c]){for(g=this.handlers[c],h=[],d=0,f=g.length;f>d;d++)b=g[d],h.push(b.apply(null,a));return h}},a}(),b.commas=function(a){var b,c,d,e;return null!=a?(d=0>a?"-":"",b=Math.abs(a),c=Math.floor(b).toFixed(0),d+=c.replace(/(?=(?:\d{3})+$)(?!^)/g,","),e=b.toString(),e.length>c.length&&(d+=e.slice(c.length)),d):"-"},b.pad2=function(a){return(10>a?"0":"")+a},b.Grid=function(c){function d(b){this.resizeHandler=f(this.resizeHandler,this);var c=this;if(this.el="string"==typeof b.element?a(document.getElementById(b.element)):a(b.element),null==this.el||0===this.el.length)throw new Error("Graph container element not found");"static"===this.el.css("position")&&this.el.css("position","relative"),this.options=a.extend({},this.gridDefaults,this.defaults||{},b),"string"==typeof this.options.units&&(this.options.postUnits=b.units),this.raphael=new Raphael(this.el[0]),this.elementWidth=null,this.elementHeight=null,this.dirty=!1,this.selectFrom=null,this.init&&this.init(),this.setData(this.options.data),this.el.bind("mousemove",function(a){var b,d,e,f,g;return d=c.el.offset(),g=a.pageX-d.left,c.selectFrom?(b=c.data[c.hitTest(Math.min(g,c.selectFrom))]._x,e=c.data[c.hitTest(Math.max(g,c.selectFrom))]._x,f=e-b,c.selectionRect.attr({x:b,width:f})):c.fire("hovermove",g,a.pageY-d.top)}),this.el.bind("mouseleave",function(){return c.selectFrom&&(c.selectionRect.hide(),c.selectFrom=null),c.fire("hoverout")}),this.el.bind("touchstart touchmove touchend",function(a){var b,d;return d=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0],b=c.el.offset(),c.fire("hovermove",d.pageX-b.left,d.pageY-b.top)}),this.el.bind("click",function(a){var b;return b=c.el.offset(),c.fire("gridclick",a.pageX-b.left,a.pageY-b.top)}),this.options.rangeSelect&&(this.selectionRect=this.raphael.rect(0,0,0,this.el.innerHeight()).attr({fill:this.options.rangeSelectColor,stroke:!1}).toBack().hide(),this.el.bind("mousedown",function(a){var b;return b=c.el.offset(),c.startRange(a.pageX-b.left)}),this.el.bind("mouseup",function(a){var b;return b=c.el.offset(),c.endRange(a.pageX-b.left),c.fire("hovermove",a.pageX-b.left,a.pageY-b.top)})),this.options.resize&&a(window).bind("resize",function(){return null!=c.timeoutId&&window.clearTimeout(c.timeoutId),c.timeoutId=window.setTimeout(c.resizeHandler,100)}),this.el.css("-webkit-tap-highlight-color","rgba(0,0,0,0)"),this.postInit&&this.postInit()}return h(d,c),d.prototype.gridDefaults={dateFormat:null,axes:!0,grid:!0,gridLineColor:"#aaa",gridStrokeWidth:.5,gridTextColor:"#888",gridTextSize:12,gridTextFamily:"sans-serif",gridTextWeight:"normal",hideHover:!1,yLabelFormat:null,xLabelAngle:0,numLines:5,padding:25,parseTime:!0,postUnits:"",preUnits:"",ymax:"auto",ymin:"auto 0",goals:[],goalStrokeWidth:1,goalLineColors:["#666633","#999966","#cc6666","#663333"],events:[],eventStrokeWidth:1,eventLineColors:["#005a04","#ccffbb","#3a5f0b","#005502"],rangeSelect:null,rangeSelectColor:"#eef",resize:!1},d.prototype.setData=function(a,c){var d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;return null==c&&(c=!0),this.options.data=a,null==a||0===a.length?(this.data=[],this.raphael.clear(),null!=this.hover&&this.hover.hide(),void 0):(o=this.cumulative?0:null,p=this.cumulative?0:null,this.options.goals.length>0&&(h=Math.min.apply(Math,this.options.goals),g=Math.max.apply(Math,this.options.goals),p=null!=p?Math.min(p,h):h,o=null!=o?Math.max(o,g):g),this.data=function(){var c,d,g;for(g=[],f=c=0,d=a.length;d>c;f=++c)j=a[f],i={src:j},i.label=j[this.options.xkey],this.options.parseTime?(i.x=b.parseDate(i.label),this.options.dateFormat?i.label=this.options.dateFormat(i.x):"number"==typeof i.label&&(i.label=new Date(i.label).toString())):(i.x=f,this.options.xLabelFormat&&(i.label=this.options.xLabelFormat(i))),l=0,i.y=function(){var a,b,c,d;for(c=this.options.ykeys,d=[],e=a=0,b=c.length;b>a;e=++a)n=c[e],q=j[n],"string"==typeof q&&(q=parseFloat(q)),null!=q&&"number"!=typeof q&&(q=null),null!=q&&(this.cumulative?l+=q:null!=o?(o=Math.max(q,o),p=Math.min(q,p)):o=p=q),this.cumulative&&null!=l&&(o=Math.max(l,o),p=Math.min(l,p)),d.push(q);return d}.call(this),g.push(i);return g}.call(this),this.options.parseTime&&(this.data=this.data.sort(function(a,b){return(a.x>b.x)-(b.x>a.x)})),this.xmin=this.data[0].x,this.xmax=this.data[this.data.length-1].x,this.events=[],this.options.events.length>0&&(this.events=this.options.parseTime?function(){var a,c,e,f;for(e=this.options.events,f=[],a=0,c=e.length;c>a;a++)d=e[a],f.push(b.parseDate(d));return f}.call(this):this.options.events,this.xmax=Math.max(this.xmax,Math.max.apply(Math,this.events)),this.xmin=Math.min(this.xmin,Math.min.apply(Math,this.events))),this.xmin===this.xmax&&(this.xmin-=1,this.xmax+=1),this.ymin=this.yboundary("min",p),this.ymax=this.yboundary("max",o),this.ymin===this.ymax&&(p&&(this.ymin-=1),this.ymax+=1),((r=this.options.axes)===!0||"both"===r||"y"===r||this.options.grid===!0)&&(this.options.ymax===this.gridDefaults.ymax&&this.options.ymin===this.gridDefaults.ymin?(this.grid=this.autoGridLines(this.ymin,this.ymax,this.options.numLines),this.ymin=Math.min(this.ymin,this.grid[0]),this.ymax=Math.max(this.ymax,this.grid[this.grid.length-1])):(k=(this.ymax-this.ymin)/(this.options.numLines-1),this.grid=function(){var a,b,c,d;for(d=[],m=a=b=this.ymin,c=this.ymax;k>0?c>=a:a>=c;m=a+=k)d.push(m);return d}.call(this))),this.dirty=!0,c?this.redraw():void 0)},d.prototype.yboundary=function(a,b){var c,d;return c=this.options["y"+a],"string"==typeof c?"auto"===c.slice(0,4)?c.length>5?(d=parseInt(c.slice(5),10),null==b?d:Math[a](b,d)):null!=b?b:0:parseInt(c,10):c},d.prototype.autoGridLines=function(a,b,c){var d,e,f,g,h,i,j,k,l;return h=b-a,l=Math.floor(Math.log(h)/Math.log(10)),j=Math.pow(10,l),e=Math.floor(a/j)*j,d=Math.ceil(b/j)*j,i=(d-e)/(c-1),1===j&&i>1&&Math.ceil(i)!==i&&(i=Math.ceil(i),d=e+i*(c-1)),0>e&&d>0&&(e=Math.floor(a/i)*i,d=Math.ceil(b/i)*i),1>i?(g=Math.floor(Math.log(i)/Math.log(10)),f=function(){var a,b;for(b=[],k=a=e;i>0?d>=a:a>=d;k=a+=i)b.push(parseFloat(k.toFixed(1-g)));return b}()):f=function(){var a,b;for(b=[],k=a=e;i>0?d>=a:a>=d;k=a+=i)b.push(k);return b}(),f},d.prototype._calc=function(){var a,b,c,d,e,f,g,h;return e=this.el.width(),c=this.el.height(),(this.elementWidth!==e||this.elementHeight!==c||this.dirty)&&(this.elementWidth=e,this.elementHeight=c,this.dirty=!1,this.left=this.options.padding,this.right=this.elementWidth-this.options.padding,this.top=this.options.padding,this.bottom=this.elementHeight-this.options.padding,((g=this.options.axes)===!0||"both"===g||"y"===g)&&(f=function(){var a,c,d,e;for(d=this.grid,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(this.measureText(this.yAxisFormat(b)).width);return e}.call(this),this.left+=Math.max.apply(Math,f)),((h=this.options.axes)===!0||"both"===h||"x"===h)&&(a=function(){var a,b,c;for(c=[],d=a=0,b=this.data.length;b>=0?b>a:a>b;d=b>=0?++a:--a)c.push(this.measureText(this.data[d].text,-this.options.xLabelAngle).height);return c}.call(this),this.bottom-=Math.max.apply(Math,a)),this.width=Math.max(1,this.right-this.left),this.height=Math.max(1,this.bottom-this.top),this.dx=this.width/(this.xmax-this.xmin),this.dy=this.height/(this.ymax-this.ymin),this.calc)?this.calc():void 0},d.prototype.transY=function(a){return this.bottom-(a-this.ymin)*this.dy},d.prototype.transX=function(a){return 1===this.data.length?(this.left+this.right)/2:this.left+(a-this.xmin)*this.dx},d.prototype.redraw=function(){return this.raphael.clear(),this._calc(),this.drawGrid(),this.drawGoals(),this.drawEvents(),this.draw?this.draw():void 0},d.prototype.measureText=function(a,b){var c,d;return null==b&&(b=0),d=this.raphael.text(100,100,a).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).rotate(b),c=d.getBBox(),d.remove(),c},d.prototype.yAxisFormat=function(a){return this.yLabelFormat(a)},d.prototype.yLabelFormat=function(a){return"function"==typeof this.options.yLabelFormat?this.options.yLabelFormat(a):""+this.options.preUnits+b.commas(a)+this.options.postUnits},d.prototype.drawGrid=function(){var a,b,c,d,e,f,g,h;if(this.options.grid!==!1||(e=this.options.axes)===!0||"both"===e||"y"===e){for(f=this.grid,h=[],c=0,d=f.length;d>c;c++)a=f[c],b=this.transY(a),((g=this.options.axes)===!0||"both"===g||"y"===g)&&this.drawYAxisLabel(this.left-this.options.padding/2,b,this.yAxisFormat(a)),this.options.grid?h.push(this.drawGridLine("M"+this.left+","+b+"H"+(this.left+this.width))):h.push(void 0);return h}},d.prototype.drawGoals=function(){var a,b,c,d,e,f,g;for(f=this.options.goals,g=[],c=d=0,e=f.length;e>d;c=++d)b=f[c],a=this.options.goalLineColors[c%this.options.goalLineColors.length],g.push(this.drawGoal(b,a));return g},d.prototype.drawEvents=function(){var a,b,c,d,e,f,g;for(f=this.events,g=[],c=d=0,e=f.length;e>d;c=++d)b=f[c],a=this.options.eventLineColors[c%this.options.eventLineColors.length],g.push(this.drawEvent(b,a));return g},d.prototype.drawGoal=function(a,b){return this.raphael.path("M"+this.left+","+this.transY(a)+"H"+this.right).attr("stroke",b).attr("stroke-width",this.options.goalStrokeWidth)},d.prototype.drawEvent=function(a,b){return this.raphael.path("M"+this.transX(a)+","+this.bottom+"V"+this.top).attr("stroke",b).attr("stroke-width",this.options.eventStrokeWidth)},d.prototype.drawYAxisLabel=function(a,b,c){return this.raphael.text(a,b,c).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).attr("fill",this.options.gridTextColor).attr("text-anchor","end")},d.prototype.drawGridLine=function(a){return this.raphael.path(a).attr("stroke",this.options.gridLineColor).attr("stroke-width",this.options.gridStrokeWidth)},d.prototype.startRange=function(a){return this.hover.hide(),this.selectFrom=a,this.selectionRect.attr({x:a,width:0}).show()},d.prototype.endRange=function(a){var b,c;return this.selectFrom?(c=Math.min(this.selectFrom,a),b=Math.max(this.selectFrom,a),this.options.rangeSelect.call(this.el,{start:this.data[this.hitTest(c)].x,end:this.data[this.hitTest(b)].x}),this.selectFrom=null):void 0},d.prototype.resizeHandler=function(){return this.timeoutId=null,this.raphael.setSize(this.el.width(),this.el.height()),this.redraw()},d}(b.EventEmitter),b.parseDate=function(a){var b,c,d,e,f,g,h,i,j,k,l;return"number"==typeof a?a:(c=a.match(/^(\d+) Q(\d)$/),e=a.match(/^(\d+)-(\d+)$/),f=a.match(/^(\d+)-(\d+)-(\d+)$/),h=a.match(/^(\d+) W(\d+)$/),i=a.match(/^(\d+)-(\d+)-(\d+)[ T](\d+):(\d+)(Z|([+-])(\d\d):?(\d\d))?$/),j=a.match(/^(\d+)-(\d+)-(\d+)[ T](\d+):(\d+):(\d+(\.\d+)?)(Z|([+-])(\d\d):?(\d\d))?$/),c?new Date(parseInt(c[1],10),3*parseInt(c[2],10)-1,1).getTime():e?new Date(parseInt(e[1],10),parseInt(e[2],10)-1,1).getTime():f?new Date(parseInt(f[1],10),parseInt(f[2],10)-1,parseInt(f[3],10)).getTime():h?(k=new Date(parseInt(h[1],10),0,1),4!==k.getDay()&&k.setMonth(0,1+(4-k.getDay()+7)%7),k.getTime()+6048e5*parseInt(h[2],10)):i?i[6]?(g=0,"Z"!==i[6]&&(g=60*parseInt(i[8],10)+parseInt(i[9],10),"+"===i[7]&&(g=0-g)),Date.UTC(parseInt(i[1],10),parseInt(i[2],10)-1,parseInt(i[3],10),parseInt(i[4],10),parseInt(i[5],10)+g)):new Date(parseInt(i[1],10),parseInt(i[2],10)-1,parseInt(i[3],10),parseInt(i[4],10),parseInt(i[5],10)).getTime():j?(l=parseFloat(j[6]),b=Math.floor(l),d=Math.round(1e3*(l-b)),j[8]?(g=0,"Z"!==j[8]&&(g=60*parseInt(j[10],10)+parseInt(j[11],10),"+"===j[9]&&(g=0-g)),Date.UTC(parseInt(j[1],10),parseInt(j[2],10)-1,parseInt(j[3],10),parseInt(j[4],10),parseInt(j[5],10)+g,b,d)):new Date(parseInt(j[1],10),parseInt(j[2],10)-1,parseInt(j[3],10),parseInt(j[4],10),parseInt(j[5],10),b,d).getTime()):new Date(parseInt(a,10),0,1).getTime())},b.Hover=function(){function c(c){null==c&&(c={}),this.options=a.extend({},b.Hover.defaults,c),this.el=a("<div class='"+this.options["class"]+"'></div>"),this.el.hide(),this.options.parent.append(this.el)}return c.defaults={"class":"morris-hover morris-default-style"},c.prototype.update=function(a,b,c){return a?(this.html(a),this.show(),this.moveTo(b,c)):this.hide()},c.prototype.html=function(a){return this.el.html(a)},c.prototype.moveTo=function(a,b){var c,d,e,f,g,h;return g=this.options.parent.innerWidth(),f=this.options.parent.innerHeight(),d=this.el.outerWidth(),c=this.el.outerHeight(),e=Math.min(Math.max(0,a-d/2),g-d),null!=b?(h=b-c-10,0>h&&(h=b+10,h+c>f&&(h=f/2-c/2))):h=f/2-c/2,this.el.css({left:e+"px",top:parseInt(h)+"px"})},c.prototype.show=function(){return this.el.show()},c.prototype.hide=function(){return this.el.hide()},c}(),b.Line=function(a){function c(a){return this.hilight=f(this.hilight,this),this.onHoverOut=f(this.onHoverOut,this),this.onHoverMove=f(this.onHoverMove,this),this.onGridClick=f(this.onGridClick,this),this instanceof b.Line?(c.__super__.constructor.call(this,a),void 0):new b.Line(a)}return h(c,a),c.prototype.init=function(){return"always"!==this.options.hideHover?(this.hover=new b.Hover({parent:this.el}),this.on("hovermove",this.onHoverMove),this.on("hoverout",this.onHoverOut),this.on("gridclick",this.onGridClick)):void 0},c.prototype.defaults={lineWidth:3,pointSize:4,lineColors:["#0b62a4","#7A92A3","#4da74d","#afd8f8","#edc240","#cb4b4b","#9440ed"],pointStrokeWidths:[1],pointStrokeColors:["#ffffff"],pointFillColors:[],smooth:!0,xLabels:"auto",xLabelFormat:null,xLabelMargin:24,hideHover:!1},c.prototype.calc=function(){return this.calcPoints(),this.generatePaths()},c.prototype.calcPoints=function(){var a,b,c,d,e,f;for(e=this.data,f=[],c=0,d=e.length;d>c;c++)a=e[c],a._x=this.transX(a.x),a._y=function(){var c,d,e,f;for(e=a.y,f=[],c=0,d=e.length;d>c;c++)b=e[c],null!=b?f.push(this.transY(b)):f.push(b);return f}.call(this),f.push(a._ymax=Math.min.apply(Math,[this.bottom].concat(function(){var c,d,e,f;for(e=a._y,f=[],c=0,d=e.length;d>c;c++)b=e[c],null!=b&&f.push(b);return f}())));return f},c.prototype.hitTest=function(a){var b,c,d,e,f;if(0===this.data.length)return null;for(f=this.data.slice(1),b=d=0,e=f.length;e>d&&(c=f[b],!(a<(c._x+this.data[b]._x)/2));b=++d);return b},c.prototype.onGridClick=function(a,b){var c;return c=this.hitTest(a),this.fire("click",c,this.data[c].src,a,b)},c.prototype.onHoverMove=function(a){var b;return b=this.hitTest(a),this.displayHoverForRow(b)},c.prototype.onHoverOut=function(){return this.options.hideHover!==!1?this.displayHoverForRow(null):void 0},c.prototype.displayHoverForRow=function(a){var b;return null!=a?((b=this.hover).update.apply(b,this.hoverContentForRow(a)),this.hilight(a)):(this.hover.hide(),this.hilight())},c.prototype.hoverContentForRow=function(a){var b,c,d,e,f,g,h;for(d=this.data[a],b="<div class='morris-hover-row-label'>"+d.label+"</div>",h=d.y,c=f=0,g=h.length;g>f;c=++f)e=h[c],b+="<div class='morris-hover-point' style='color: "+this.colorFor(d,c,"label")+"'>\n "+this.options.labels[c]+":\n "+this.yLabelFormat(e)+"\n</div>";return"function"==typeof this.options.hoverCallback&&(b=this.options.hoverCallback(a,this.options,b,d.src)),[b,d._x,d._ymax]},c.prototype.generatePaths=function(){var a,c,d,e;return this.paths=function(){var f,g,h,j;for(j=[],c=f=0,g=this.options.ykeys.length;g>=0?g>f:f>g;c=g>=0?++f:--f)e="boolean"==typeof this.options.smooth?this.options.smooth:(h=this.options.ykeys[c],i.call(this.options.smooth,h)>=0),a=function(){var a,b,e,f;for(e=this.data,f=[],a=0,b=e.length;b>a;a++)d=e[a],void 0!==d._y[c]&&f.push({x:d._x,y:d._y[c]});return f}.call(this),a.length>1?j.push(b.Line.createPath(a,e,this.bottom)):j.push(null);return j}.call(this)},c.prototype.draw=function(){var a;return((a=this.options.axes)===!0||"both"===a||"x"===a)&&this.drawXAxis(),this.drawSeries(),this.options.hideHover===!1?this.displayHoverForRow(this.data.length-1):void 0},c.prototype.drawXAxis=function(){var a,c,d,e,f,g,h,i,j,k,l=this;for(h=this.bottom+this.options.padding/2,f=null,e=null,a=function(a,b){var c,d,g,i,j;return c=l.drawXAxisLabel(l.transX(b),h,a),j=c.getBBox(),c.transform("r"+-l.options.xLabelAngle),d=c.getBBox(),c.transform("t0,"+d.height/2+"..."),0!==l.options.xLabelAngle&&(i=-.5*j.width*Math.cos(l.options.xLabelAngle*Math.PI/180),c.transform("t"+i+",0...")),d=c.getBBox(),(null==f||f>=d.x+d.width||null!=e&&e>=d.x)&&d.x>=0&&d.x+d.width<l.el.width()?(0!==l.options.xLabelAngle&&(g=1.25*l.options.gridTextSize/Math.sin(l.options.xLabelAngle*Math.PI/180),e=d.x-g),f=d.x-l.options.xLabelMargin):c.remove()},d=this.options.parseTime?1===this.data.length&&"auto"===this.options.xLabels?[[this.data[0].label,this.data[0].x]]:b.labelSeries(this.xmin,this.xmax,this.width,this.options.xLabels,this.options.xLabelFormat):function(){var a,b,c,d;for(c=this.data,d=[],a=0,b=c.length;b>a;a++)g=c[a],d.push([g.label,g.x]);return d}.call(this),d.reverse(),k=[],i=0,j=d.length;j>i;i++)c=d[i],k.push(a(c[0],c[1]));return k},c.prototype.drawSeries=function(){var a,b,c,d,e,f;for(this.seriesPoints=[],a=b=d=this.options.ykeys.length-1;0>=d?0>=b:b>=0;a=0>=d?++b:--b)this._drawLineFor(a);for(f=[],a=c=e=this.options.ykeys.length-1;0>=e?0>=c:c>=0;a=0>=e?++c:--c)f.push(this._drawPointFor(a));return f},c.prototype._drawPointFor=function(a){var b,c,d,e,f,g;for(this.seriesPoints[a]=[],f=this.data,g=[],d=0,e=f.length;e>d;d++)c=f[d],b=null,null!=c._y[a]&&(b=this.drawLinePoint(c._x,c._y[a],this.colorFor(c,a,"point"),a)),g.push(this.seriesPoints[a].push(b));return g},c.prototype._drawLineFor=function(a){var b;return b=this.paths[a],null!==b?this.drawLinePath(b,this.colorFor(null,a,"line"),a):void 0},c.createPath=function(a,c,d){var e,f,g,h,i,j,k,l,m,n,o,p,q,r;for(k="",c&&(g=b.Line.gradients(a)),l={y:null},h=q=0,r=a.length;r>q;h=++q)e=a[h],null!=e.y&&(null!=l.y?c?(f=g[h],j=g[h-1],i=(e.x-l.x)/4,m=l.x+i,o=Math.min(d,l.y+i*j),n=e.x-i,p=Math.min(d,e.y-i*f),k+="C"+m+","+o+","+n+","+p+","+e.x+","+e.y):k+="L"+e.x+","+e.y:c&&null==g[h]||(k+="M"+e.x+","+e.y)),l=e;return k},c.gradients=function(a){var b,c,d,e,f,g,h,i;for(c=function(a,b){return(a.y-b.y)/(a.x-b.x)},i=[],d=g=0,h=a.length;h>g;d=++g)b=a[d],null!=b.y?(e=a[d+1]||{y:null},f=a[d-1]||{y:null},null!=f.y&&null!=e.y?i.push(c(f,e)):null!=f.y?i.push(c(f,b)):null!=e.y?i.push(c(b,e)):i.push(null)):i.push(null);return i},c.prototype.hilight=function(a){var b,c,d,e,f;if(null!==this.prevHilight&&this.prevHilight!==a)for(b=c=0,e=this.seriesPoints.length-1;e>=0?e>=c:c>=e;b=e>=0?++c:--c)this.seriesPoints[b][this.prevHilight]&&this.seriesPoints[b][this.prevHilight].animate(this.pointShrinkSeries(b));if(null!==a&&this.prevHilight!==a)for(b=d=0,f=this.seriesPoints.length-1;f>=0?f>=d:d>=f;b=f>=0?++d:--d)this.seriesPoints[b][a]&&this.seriesPoints[b][a].animate(this.pointGrowSeries(b));return this.prevHilight=a},c.prototype.colorFor=function(a,b,c){return"function"==typeof this.options.lineColors?this.options.lineColors.call(this,a,b,c):"point"===c?this.options.pointFillColors[b%this.options.pointFillColors.length]||this.options.lineColors[b%this.options.lineColors.length]:this.options.lineColors[b%this.options.lineColors.length]},c.prototype.drawXAxisLabel=function(a,b,c){return this.raphael.text(a,b,c).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).attr("fill",this.options.gridTextColor)},c.prototype.drawLinePath=function(a,b,c){return this.raphael.path(a).attr("stroke",b).attr("stroke-width",this.lineWidthForSeries(c))},c.prototype.drawLinePoint=function(a,b,c,d){return this.raphael.circle(a,b,this.pointSizeForSeries(d)).attr("fill",c).attr("stroke-width",this.pointStrokeWidthForSeries(d)).attr("stroke",this.pointStrokeColorForSeries(d))},c.prototype.pointStrokeWidthForSeries=function(a){return this.options.pointStrokeWidths[a%this.options.pointStrokeWidths.length]},c.prototype.pointStrokeColorForSeries=function(a){return this.options.pointStrokeColors[a%this.options.pointStrokeColors.length]},c.prototype.lineWidthForSeries=function(a){return this.options.lineWidth instanceof Array?this.options.lineWidth[a%this.options.lineWidth.length]:this.options.lineWidth},c.prototype.pointSizeForSeries=function(a){return this.options.pointSize instanceof Array?this.options.pointSize[a%this.options.pointSize.length]:this.options.pointSize},c.prototype.pointGrowSeries=function(a){return Raphael.animation({r:this.pointSizeForSeries(a)+3},25,"linear")},c.prototype.pointShrinkSeries=function(a){return Raphael.animation({r:this.pointSizeForSeries(a)},25,"linear")},c}(b.Grid),b.labelSeries=function(c,d,e,f,g){var h,i,j,k,l,m,n,o,p,q,r;if(j=200*(d-c)/e,i=new Date(c),n=b.LABEL_SPECS[f],void 0===n)for(r=b.AUTO_LABEL_ORDER,p=0,q=r.length;q>p;p++)if(k=r[p],m=b.LABEL_SPECS[k],j>=m.span){n=m;break}for(void 0===n&&(n=b.LABEL_SPECS.second),g&&(n=a.extend({},n,{fmt:g})),h=n.start(i),l=[];(o=h.getTime())<=d;)o>=c&&l.push([n.fmt(h),o]),n.incr(h);return l},c=function(a){return{span:60*a*1e3,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate(),a.getHours())},fmt:function(a){return""+b.pad2(a.getHours())+":"+b.pad2(a.getMinutes())},incr:function(b){return b.setUTCMinutes(b.getUTCMinutes()+a)}}},d=function(a){return{span:1e3*a,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate(),a.getHours(),a.getMinutes())},fmt:function(a){return""+b.pad2(a.getHours())+":"+b.pad2(a.getMinutes())+":"+b.pad2(a.getSeconds())},incr:function(b){return b.setUTCSeconds(b.getUTCSeconds()+a)}}},b.LABEL_SPECS={decade:{span:1728e8,start:function(a){return new Date(a.getFullYear()-a.getFullYear()%10,0,1)},fmt:function(a){return""+a.getFullYear()},incr:function(a){return a.setFullYear(a.getFullYear()+10)}},year:{span:1728e7,start:function(a){return new Date(a.getFullYear(),0,1)},fmt:function(a){return""+a.getFullYear()},incr:function(a){return a.setFullYear(a.getFullYear()+1)}},month:{span:24192e5,start:function(a){return new Date(a.getFullYear(),a.getMonth(),1)},fmt:function(a){return""+a.getFullYear()+"-"+b.pad2(a.getMonth()+1)},incr:function(a){return a.setMonth(a.getMonth()+1)}},week:{span:6048e5,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate())},fmt:function(a){return""+a.getFullYear()+"-"+b.pad2(a.getMonth()+1)+"-"+b.pad2(a.getDate())},incr:function(a){return a.setDate(a.getDate()+7)}},day:{span:864e5,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate())},fmt:function(a){return""+a.getFullYear()+"-"+b.pad2(a.getMonth()+1)+"-"+b.pad2(a.getDate())},incr:function(a){return a.setDate(a.getDate()+1)}},hour:c(60),"30min":c(30),"15min":c(15),"10min":c(10),"5min":c(5),minute:c(1),"30sec":d(30),"15sec":d(15),"10sec":d(10),"5sec":d(5),second:d(1)},b.AUTO_LABEL_ORDER=["decade","year","month","week","day","hour","30min","15min","10min","5min","minute","30sec","15sec","10sec","5sec","second"],b.Area=function(c){function d(c){var f;return this instanceof b.Area?(f=a.extend({},e,c),this.cumulative=!f.behaveLikeLine,"auto"===f.fillOpacity&&(f.fillOpacity=f.behaveLikeLine?.8:1),d.__super__.constructor.call(this,f),void 0):new b.Area(c)}var e;return h(d,c),e={fillOpacity:"auto",behaveLikeLine:!1},d.prototype.calcPoints=function(){var a,b,c,d,e,f,g;for(f=this.data,g=[],d=0,e=f.length;e>d;d++)a=f[d],a._x=this.transX(a.x),b=0,a._y=function(){var d,e,f,g;for(f=a.y,g=[],d=0,e=f.length;e>d;d++)c=f[d],this.options.behaveLikeLine?g.push(this.transY(c)):(b+=c||0,g.push(this.transY(b)));return g}.call(this),g.push(a._ymax=Math.max.apply(Math,a._y));return g},d.prototype.drawSeries=function(){var a,b,c,d,e,f,g,h;for(this.seriesPoints=[],b=this.options.behaveLikeLine?function(){f=[];for(var a=0,b=this.options.ykeys.length-1;b>=0?b>=a:a>=b;b>=0?a++:a--)f.push(a);return f}.apply(this):function(){g=[];for(var a=e=this.options.ykeys.length-1;0>=e?0>=a:a>=0;0>=e?a++:a--)g.push(a);return g}.apply(this),h=[],c=0,d=b.length;d>c;c++)a=b[c],this._drawFillFor(a),this._drawLineFor(a),h.push(this._drawPointFor(a));return h},d.prototype._drawFillFor=function(a){var b;return b=this.paths[a],null!==b?(b+="L"+this.transX(this.xmax)+","+this.bottom+"L"+this.transX(this.xmin)+","+this.bottom+"Z",this.drawFilledPath(b,this.fillForSeries(a))):void 0},d.prototype.fillForSeries=function(a){var b;return b=Raphael.rgb2hsl(this.colorFor(this.data[a],a,"line")),Raphael.hsl(b.h,this.options.behaveLikeLine?.9*b.s:.75*b.s,Math.min(.98,this.options.behaveLikeLine?1.2*b.l:1.25*b.l))},d.prototype.drawFilledPath=function(a,b){return this.raphael.path(a).attr("fill",b).attr("fill-opacity",this.options.fillOpacity).attr("stroke","none")},d}(b.Line),b.Bar=function(c){function d(c){return this.onHoverOut=f(this.onHoverOut,this),this.onHoverMove=f(this.onHoverMove,this),this.onGridClick=f(this.onGridClick,this),this instanceof b.Bar?(d.__super__.constructor.call(this,a.extend({},c,{parseTime:!1})),void 0):new b.Bar(c)}return h(d,c),d.prototype.init=function(){return this.cumulative=this.options.stacked,"always"!==this.options.hideHover?(this.hover=new b.Hover({parent:this.el}),this.on("hovermove",this.onHoverMove),this.on("hoverout",this.onHoverOut),this.on("gridclick",this.onGridClick)):void 0},d.prototype.defaults={barSizeRatio:.75,barGap:3,barColors:["#0b62a4","#7a92a3","#4da74d","#afd8f8","#edc240","#cb4b4b","#9440ed"],barOpacity:1,barRadius:[0,0,0,0],xLabelMargin:50},d.prototype.calc=function(){var a;return this.calcBars(),this.options.hideHover===!1?(a=this.hover).update.apply(a,this.hoverContentForRow(this.data.length-1)):void 0},d.prototype.calcBars=function(){var a,b,c,d,e,f,g;for(f=this.data,g=[],a=d=0,e=f.length;e>d;a=++d)b=f[a],b._x=this.left+this.width*(a+.5)/this.data.length,g.push(b._y=function(){var a,d,e,f;for(e=b.y,f=[],a=0,d=e.length;d>a;a++)c=e[a],null!=c?f.push(this.transY(c)):f.push(null);return f}.call(this));return g},d.prototype.draw=function(){var a;return((a=this.options.axes)===!0||"both"===a||"x"===a)&&this.drawXAxis(),this.drawSeries()},d.prototype.drawXAxis=function(){var a,b,c,d,e,f,g,h,i,j,k,l,m;for(j=this.bottom+(this.options.xAxisLabelTopPadding||this.options.padding/2),g=null,f=null,m=[],a=k=0,l=this.data.length;l>=0?l>k:k>l;a=l>=0?++k:--k)h=this.data[this.data.length-1-a],b=this.drawXAxisLabel(h._x,j,h.label),i=b.getBBox(),b.transform("r"+-this.options.xLabelAngle),c=b.getBBox(),b.transform("t0,"+c.height/2+"..."),0!==this.options.xLabelAngle&&(e=-.5*i.width*Math.cos(this.options.xLabelAngle*Math.PI/180),b.transform("t"+e+",0...")),(null==g||g>=c.x+c.width||null!=f&&f>=c.x)&&c.x>=0&&c.x+c.width<this.el.width()?(0!==this.options.xLabelAngle&&(d=1.25*this.options.gridTextSize/Math.sin(this.options.xLabelAngle*Math.PI/180),f=c.x-d),m.push(g=c.x-this.options.xLabelMargin)):m.push(b.remove());return m},d.prototype.drawSeries=function(){var a,b,c,d,e,f,g,h,i,j,k,l,m,n,o;return c=this.width/this.options.data.length,h=this.options.stacked?1:this.options.ykeys.length,a=(c*this.options.barSizeRatio-this.options.barGap*(h-1))/h,this.options.barSize&&(a=Math.min(a,this.options.barSize)),l=c-a*h-this.options.barGap*(h-1),g=l/2,o=this.ymin<=0&&this.ymax>=0?this.transY(0):null,this.bars=function(){var h,l,p,q;for(p=this.data,q=[],d=h=0,l=p.length;l>h;d=++h)i=p[d],e=0,q.push(function(){var h,l,p,q;for(p=i._y,q=[],j=h=0,l=p.length;l>h;j=++h)n=p[j],null!==n?(o?(m=Math.min(n,o),b=Math.max(n,o)):(m=n,b=this.bottom),f=this.left+d*c+g,this.options.stacked||(f+=j*(a+this.options.barGap)),k=b-m,this.options.verticalGridCondition&&this.options.verticalGridCondition(i.x)&&this.drawBar(this.left+d*c,this.top,c,Math.abs(this.top-this.bottom),this.options.verticalGridColor,this.options.verticalGridOpacity,this.options.barRadius),this.options.stacked&&(m-=e),this.drawBar(f,m,a,k,this.colorFor(i,j,"bar"),this.options.barOpacity,this.options.barRadius),q.push(e+=k)):q.push(null);return q}.call(this));return q}.call(this)},d.prototype.colorFor=function(a,b,c){var d,e;return"function"==typeof this.options.barColors?(d={x:a.x,y:a.y[b],label:a.label},e={index:b,key:this.options.ykeys[b],label:this.options.labels[b]},this.options.barColors.call(this,d,e,c)):this.options.barColors[b%this.options.barColors.length]},d.prototype.hitTest=function(a){return 0===this.data.length?null:(a=Math.max(Math.min(a,this.right),this.left),Math.min(this.data.length-1,Math.floor((a-this.left)/(this.width/this.data.length))))},d.prototype.onGridClick=function(a,b){var c;return c=this.hitTest(a),this.fire("click",c,this.data[c].src,a,b)},d.prototype.onHoverMove=function(a){var b,c;return b=this.hitTest(a),(c=this.hover).update.apply(c,this.hoverContentForRow(b))},d.prototype.onHoverOut=function(){return this.options.hideHover!==!1?this.hover.hide():void 0},d.prototype.hoverContentForRow=function(a){var b,c,d,e,f,g,h,i;for(d=this.data[a],b="<div class='morris-hover-row-label'>"+d.label+"</div>",i=d.y,c=g=0,h=i.length;h>g;c=++g)f=i[c],b+="<div class='morris-hover-point' style='color: "+this.colorFor(d,c,"label")+"'>\n "+this.options.labels[c]+":\n "+this.yLabelFormat(f)+"\n</div>";return"function"==typeof this.options.hoverCallback&&(b=this.options.hoverCallback(a,this.options,b,d.src)),e=this.left+(a+.5)*this.width/this.data.length,[b,e]},d.prototype.drawXAxisLabel=function(a,b,c){var d;return d=this.raphael.text(a,b,c).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).attr("fill",this.options.gridTextColor)},d.prototype.drawBar=function(a,b,c,d,e,f,g){var h,i;return h=Math.max.apply(Math,g),i=0===h||h>d?this.raphael.rect(a,b,c,d):this.raphael.path(this.roundedRect(a,b,c,d,g)),i.attr("fill",e).attr("fill-opacity",f).attr("stroke","none")},d.prototype.roundedRect=function(a,b,c,d,e){return null==e&&(e=[0,0,0,0]),["M",a,e[0]+b,"Q",a,b,a+e[0],b,"L",a+c-e[1],b,"Q",a+c,b,a+c,b+e[1],"L",a+c,b+d-e[2],"Q",a+c,b+d,a+c-e[2],b+d,"L",a+e[3],b+d,"Q",a,b+d,a,b+d-e[3],"Z"]},d}(b.Grid),b.Donut=function(c){function d(c){this.resizeHandler=f(this.resizeHandler,this),this.select=f(this.select,this),this.click=f(this.click,this);var d=this;if(!(this instanceof b.Donut))return new b.Donut(c);if(this.options=a.extend({},this.defaults,c),this.el="string"==typeof c.element?a(document.getElementById(c.element)):a(c.element),null===this.el||0===this.el.length)throw new Error("Graph placeholder not found.");void 0!==c.data&&0!==c.data.length&&(this.raphael=new Raphael(this.el[0]),this.options.resize&&a(window).bind("resize",function(){return null!=d.timeoutId&&window.clearTimeout(d.timeoutId),d.timeoutId=window.setTimeout(d.resizeHandler,100)}),this.setData(c.data))}return h(d,c),d.prototype.defaults={colors:["#0B62A4","#3980B5","#679DC6","#95BBD7","#B0CCE1","#095791","#095085","#083E67","#052C48","#042135"],backgroundColor:"#FFFFFF",labelColor:"#000000",formatter:b.commas,resize:!1},d.prototype.redraw=function(){var a,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x;for(this.raphael.clear(),c=this.el.width()/2,d=this.el.height()/2,n=(Math.min(c,d)-10)/3,l=0,u=this.values,o=0,r=u.length;r>o;o++)m=u[o],l+=m;for(i=5/(2*n),a=1.9999*Math.PI-i*this.data.length,g=0,f=0,this.segments=[],v=this.values,e=p=0,s=v.length;s>p;e=++p)m=v[e],j=g+i+a*(m/l),k=new b.DonutSegment(c,d,2*n,n,g,j,this.data[e].color||this.options.colors[f%this.options.colors.length],this.options.backgroundColor,f,this.raphael),k.render(),this.segments.push(k),k.on("hover",this.select),k.on("click",this.click),g=j,f+=1;for(this.text1=this.drawEmptyDonutLabel(c,d-10,this.options.labelColor,15,800),this.text2=this.drawEmptyDonutLabel(c,d+10,this.options.labelColor,14),h=Math.max.apply(Math,this.values),f=0,w=this.values,x=[],q=0,t=w.length;t>q;q++){if(m=w[q],m===h){this.select(f); break}x.push(f+=1)}return x},d.prototype.setData=function(a){var b;return this.data=a,this.values=function(){var a,c,d,e;for(d=this.data,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(parseFloat(b.value));return e}.call(this),this.redraw()},d.prototype.click=function(a){return this.fire("click",a,this.data[a])},d.prototype.select=function(a){var b,c,d,e,f,g;for(g=this.segments,e=0,f=g.length;f>e;e++)c=g[e],c.deselect();return d=this.segments[a],d.select(),b=this.data[a],this.setLabels(b.label,this.options.formatter(b.value,b))},d.prototype.setLabels=function(a,b){var c,d,e,f,g,h,i,j;return c=2*(Math.min(this.el.width()/2,this.el.height()/2)-10)/3,f=1.8*c,e=c/2,d=c/3,this.text1.attr({text:a,transform:""}),g=this.text1.getBBox(),h=Math.min(f/g.width,e/g.height),this.text1.attr({transform:"S"+h+","+h+","+(g.x+g.width/2)+","+(g.y+g.height)}),this.text2.attr({text:b,transform:""}),i=this.text2.getBBox(),j=Math.min(f/i.width,d/i.height),this.text2.attr({transform:"S"+j+","+j+","+(i.x+i.width/2)+","+i.y})},d.prototype.drawEmptyDonutLabel=function(a,b,c,d,e){var f;return f=this.raphael.text(a,b,"").attr("font-size",d).attr("fill",c),null!=e&&f.attr("font-weight",e),f},d.prototype.resizeHandler=function(){return this.timeoutId=null,this.raphael.setSize(this.el.width(),this.el.height()),this.redraw()},d}(b.EventEmitter),b.DonutSegment=function(a){function b(a,b,c,d,e,g,h,i,j,k){this.cx=a,this.cy=b,this.inner=c,this.outer=d,this.color=h,this.backgroundColor=i,this.index=j,this.raphael=k,this.deselect=f(this.deselect,this),this.select=f(this.select,this),this.sin_p0=Math.sin(e),this.cos_p0=Math.cos(e),this.sin_p1=Math.sin(g),this.cos_p1=Math.cos(g),this.is_long=g-e>Math.PI?1:0,this.path=this.calcSegment(this.inner+3,this.inner+this.outer-5),this.selectedPath=this.calcSegment(this.inner+3,this.inner+this.outer),this.hilight=this.calcArc(this.inner)}return h(b,a),b.prototype.calcArcPoints=function(a){return[this.cx+a*this.sin_p0,this.cy+a*this.cos_p0,this.cx+a*this.sin_p1,this.cy+a*this.cos_p1]},b.prototype.calcSegment=function(a,b){var c,d,e,f,g,h,i,j,k,l;return k=this.calcArcPoints(a),c=k[0],e=k[1],d=k[2],f=k[3],l=this.calcArcPoints(b),g=l[0],i=l[1],h=l[2],j=l[3],"M"+c+","+e+("A"+a+","+a+",0,"+this.is_long+",0,"+d+","+f)+("L"+h+","+j)+("A"+b+","+b+",0,"+this.is_long+",1,"+g+","+i)+"Z"},b.prototype.calcArc=function(a){var b,c,d,e,f;return f=this.calcArcPoints(a),b=f[0],d=f[1],c=f[2],e=f[3],"M"+b+","+d+("A"+a+","+a+",0,"+this.is_long+",0,"+c+","+e)},b.prototype.render=function(){var a=this;return this.arc=this.drawDonutArc(this.hilight,this.color),this.seg=this.drawDonutSegment(this.path,this.color,this.backgroundColor,function(){return a.fire("hover",a.index)},function(){return a.fire("click",a.index)})},b.prototype.drawDonutArc=function(a,b){return this.raphael.path(a).attr({stroke:b,"stroke-width":2,opacity:0})},b.prototype.drawDonutSegment=function(a,b,c,d,e){return this.raphael.path(a).attr({fill:b,stroke:c,"stroke-width":3}).hover(d).click(e)},b.prototype.select=function(){return this.selected?void 0:(this.seg.animate({path:this.selectedPath},150,"<>"),this.arc.animate({opacity:1},150,"<>"),this.selected=!0)},b.prototype.deselect=function(){return this.selected?(this.seg.animate({path:this.path},150,"<>"),this.arc.animate({opacity:0},150,"<>"),this.selected=!1):void 0},b}(b.EventEmitter)}).call(this); // ┌────────────────────────────────────────────────────────────────────┐ \\ // │ Raphaël 2.1.4 - JavaScript Vector Library │ \\ // ├────────────────────────────────────────────────────────────────────┤ \\ // │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\ // │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\ // ├────────────────────────────────────────────────────────────────────┤ \\ // │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\ // └────────────────────────────────────────────────────────────────────┘ \\ !function(a){var b,c,d="0.4.2",e="hasOwnProperty",f=/[\.\/]/,g="*",h=function(){},i=function(a,b){return a-b},j={n:{}},k=function(a,d){a=String(a);var e,f=c,g=Array.prototype.slice.call(arguments,2),h=k.listeners(a),j=0,l=[],m={},n=[],o=b;b=a,c=0;for(var p=0,q=h.length;q>p;p++)"zIndex"in h[p]&&(l.push(h[p].zIndex),h[p].zIndex<0&&(m[h[p].zIndex]=h[p]));for(l.sort(i);l[j]<0;)if(e=m[l[j++]],n.push(e.apply(d,g)),c)return c=f,n;for(p=0;q>p;p++)if(e=h[p],"zIndex"in e)if(e.zIndex==l[j]){if(n.push(e.apply(d,g)),c)break;do if(j++,e=m[l[j]],e&&n.push(e.apply(d,g)),c)break;while(e)}else m[e.zIndex]=e;else if(n.push(e.apply(d,g)),c)break;return c=f,b=o,n.length?n:null};k._events=j,k.listeners=function(a){var b,c,d,e,h,i,k,l,m=a.split(f),n=j,o=[n],p=[];for(e=0,h=m.length;h>e;e++){for(l=[],i=0,k=o.length;k>i;i++)for(n=o[i].n,c=[n[m[e]],n[g]],d=2;d--;)b=c[d],b&&(l.push(b),p=p.concat(b.f||[]));o=l}return p},k.on=function(a,b){if(a=String(a),"function"!=typeof b)return function(){};for(var c=a.split(f),d=j,e=0,g=c.length;g>e;e++)d=d.n,d=d.hasOwnProperty(c[e])&&d[c[e]]||(d[c[e]]={n:{}});for(d.f=d.f||[],e=0,g=d.f.length;g>e;e++)if(d.f[e]==b)return h;return d.f.push(b),function(a){+a==+a&&(b.zIndex=+a)}},k.f=function(a){var b=[].slice.call(arguments,1);return function(){k.apply(null,[a,null].concat(b).concat([].slice.call(arguments,0)))}},k.stop=function(){c=1},k.nt=function(a){return a?new RegExp("(?:\\.|\\/|^)"+a+"(?:\\.|\\/|$)").test(b):b},k.nts=function(){return b.split(f)},k.off=k.unbind=function(a,b){if(!a)return void(k._events=j={n:{}});var c,d,h,i,l,m,n,o=a.split(f),p=[j];for(i=0,l=o.length;l>i;i++)for(m=0;m<p.length;m+=h.length-2){if(h=[m,1],c=p[m].n,o[i]!=g)c[o[i]]&&h.push(c[o[i]]);else for(d in c)c[e](d)&&h.push(c[d]);p.splice.apply(p,h)}for(i=0,l=p.length;l>i;i++)for(c=p[i];c.n;){if(b){if(c.f){for(m=0,n=c.f.length;n>m;m++)if(c.f[m]==b){c.f.splice(m,1);break}!c.f.length&&delete c.f}for(d in c.n)if(c.n[e](d)&&c.n[d].f){var q=c.n[d].f;for(m=0,n=q.length;n>m;m++)if(q[m]==b){q.splice(m,1);break}!q.length&&delete c.n[d].f}}else{delete c.f;for(d in c.n)c.n[e](d)&&c.n[d].f&&delete c.n[d].f}c=c.n}},k.once=function(a,b){var c=function(){return k.unbind(a,c),b.apply(this,arguments)};return k.on(a,c)},k.version=d,k.toString=function(){return"You are running Eve "+d},"undefined"!=typeof module&&module.exports?module.exports=k:"undefined"!=typeof define?define("eve",[],function(){return k}):a.eve=k}(window||this),function(a,b){"function"==typeof define&&define.amd?define(["eve"],function(c){return b(a,c)}):b(a,a.eve||"function"==typeof require&&require("eve"))}(this,function(a,b){function c(a){if(c.is(a,"function"))return u?a():b.on("raphael.DOMload",a);if(c.is(a,V))return c._engine.create[D](c,a.splice(0,3+c.is(a[0],T))).add(a);var d=Array.prototype.slice.call(arguments,0);if(c.is(d[d.length-1],"function")){var e=d.pop();return u?e.call(c._engine.create[D](c,d)):b.on("raphael.DOMload",function(){e.call(c._engine.create[D](c,d))})}return c._engine.create[D](c,arguments)}function d(a){if("function"==typeof a||Object(a)!==a)return a;var b=new a.constructor;for(var c in a)a[z](c)&&(b[c]=d(a[c]));return b}function e(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return a.push(a.splice(c,1)[0])}function f(a,b,c){function d(){var f=Array.prototype.slice.call(arguments,0),g=f.join("␀"),h=d.cache=d.cache||{},i=d.count=d.count||[];return h[z](g)?(e(i,g),c?c(h[g]):h[g]):(i.length>=1e3&&delete h[i.shift()],i.push(g),h[g]=a[D](b,f),c?c(h[g]):h[g])}return d}function g(){return this.hex}function h(a,b){for(var c=[],d=0,e=a.length;e-2*!b>d;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+5]}];b?d?e-4==d?f[3]={x:+a[0],y:+a[1]}:e-2==d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4==d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]}),c.push(["C",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}function i(a,b,c,d,e){var f=-3*b+9*c-9*d+3*e,g=a*f+6*b-12*c+6*d;return a*g-3*b+3*c}function j(a,b,c,d,e,f,g,h,j){null==j&&(j=1),j=j>1?1:0>j?0:j;for(var k=j/2,l=12,m=[-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816],n=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],o=0,p=0;l>p;p++){var q=k*m[p]+k,r=i(q,a,c,e,g),s=i(q,b,d,f,h),t=r*r+s*s;o+=n[p]*N.sqrt(t)}return k*o}function k(a,b,c,d,e,f,g,h,i){if(!(0>i||j(a,b,c,d,e,f,g,h)<i)){var k,l=1,m=l/2,n=l-m,o=.01;for(k=j(a,b,c,d,e,f,g,h,n);Q(k-i)>o;)m/=2,n+=(i>k?1:-1)*m,k=j(a,b,c,d,e,f,g,h,n);return n}}function l(a,b,c,d,e,f,g,h){if(!(O(a,c)<P(e,g)||P(a,c)>O(e,g)||O(b,d)<P(f,h)||P(b,d)>O(f,h))){var i=(a*d-b*c)*(e-g)-(a-c)*(e*h-f*g),j=(a*d-b*c)*(f-h)-(b-d)*(e*h-f*g),k=(a-c)*(f-h)-(b-d)*(e-g);if(k){var l=i/k,m=j/k,n=+l.toFixed(2),o=+m.toFixed(2);if(!(n<+P(a,c).toFixed(2)||n>+O(a,c).toFixed(2)||n<+P(e,g).toFixed(2)||n>+O(e,g).toFixed(2)||o<+P(b,d).toFixed(2)||o>+O(b,d).toFixed(2)||o<+P(f,h).toFixed(2)||o>+O(f,h).toFixed(2)))return{x:l,y:m}}}}function m(a,b,d){var e=c.bezierBBox(a),f=c.bezierBBox(b);if(!c.isBBoxIntersect(e,f))return d?0:[];for(var g=j.apply(0,a),h=j.apply(0,b),i=O(~~(g/5),1),k=O(~~(h/5),1),m=[],n=[],o={},p=d?0:[],q=0;i+1>q;q++){var r=c.findDotsAtSegment.apply(c,a.concat(q/i));m.push({x:r.x,y:r.y,t:q/i})}for(q=0;k+1>q;q++)r=c.findDotsAtSegment.apply(c,b.concat(q/k)),n.push({x:r.x,y:r.y,t:q/k});for(q=0;i>q;q++)for(var s=0;k>s;s++){var t=m[q],u=m[q+1],v=n[s],w=n[s+1],x=Q(u.x-t.x)<.001?"y":"x",y=Q(w.x-v.x)<.001?"y":"x",z=l(t.x,t.y,u.x,u.y,v.x,v.y,w.x,w.y);if(z){if(o[z.x.toFixed(4)]==z.y.toFixed(4))continue;o[z.x.toFixed(4)]=z.y.toFixed(4);var A=t.t+Q((z[x]-t[x])/(u[x]-t[x]))*(u.t-t.t),B=v.t+Q((z[y]-v[y])/(w[y]-v[y]))*(w.t-v.t);A>=0&&1.001>=A&&B>=0&&1.001>=B&&(d?p++:p.push({x:z.x,y:z.y,t1:P(A,1),t2:P(B,1)}))}}return p}function n(a,b,d){a=c._path2curve(a),b=c._path2curve(b);for(var e,f,g,h,i,j,k,l,n,o,p=d?0:[],q=0,r=a.length;r>q;q++){var s=a[q];if("M"==s[0])e=i=s[1],f=j=s[2];else{"C"==s[0]?(n=[e,f].concat(s.slice(1)),e=n[6],f=n[7]):(n=[e,f,e,f,i,j,i,j],e=i,f=j);for(var t=0,u=b.length;u>t;t++){var v=b[t];if("M"==v[0])g=k=v[1],h=l=v[2];else{"C"==v[0]?(o=[g,h].concat(v.slice(1)),g=o[6],h=o[7]):(o=[g,h,g,h,k,l,k,l],g=k,h=l);var w=m(n,o,d);if(d)p+=w;else{for(var x=0,y=w.length;y>x;x++)w[x].segment1=q,w[x].segment2=t,w[x].bez1=n,w[x].bez2=o;p=p.concat(w)}}}}}return p}function o(a,b,c,d,e,f){null!=a?(this.a=+a,this.b=+b,this.c=+c,this.d=+d,this.e=+e,this.f=+f):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function p(){return this.x+H+this.y+H+this.width+" × "+this.height}function q(a,b,c,d,e,f){function g(a){return((l*a+k)*a+j)*a}function h(a,b){var c=i(a,b);return((o*c+n)*c+m)*c}function i(a,b){var c,d,e,f,h,i;for(e=a,i=0;8>i;i++){if(f=g(e)-a,Q(f)<b)return e;if(h=(3*l*e+2*k)*e+j,Q(h)<1e-6)break;e-=f/h}if(c=0,d=1,e=a,c>e)return c;if(e>d)return d;for(;d>c;){if(f=g(e),Q(f-a)<b)return e;a>f?c=e:d=e,e=(d-c)/2+c}return e}var j=3*b,k=3*(d-b)-j,l=1-j-k,m=3*c,n=3*(e-c)-m,o=1-m-n;return h(a,1/(200*f))}function r(a,b){var c=[],d={};if(this.ms=b,this.times=1,a){for(var e in a)a[z](e)&&(d[_(e)]=a[e],c.push(_(e)));c.sort(lb)}this.anim=d,this.top=c[c.length-1],this.percents=c}function s(a,d,e,f,g,h){e=_(e);var i,j,k,l,m,n,p=a.ms,r={},s={},t={};if(f)for(v=0,x=ic.length;x>v;v++){var u=ic[v];if(u.el.id==d.id&&u.anim==a){u.percent!=e?(ic.splice(v,1),k=1):j=u,d.attr(u.totalOrigin);break}}else f=+s;for(var v=0,x=a.percents.length;x>v;v++){if(a.percents[v]==e||a.percents[v]>f*a.top){e=a.percents[v],m=a.percents[v-1]||0,p=p/a.top*(e-m),l=a.percents[v+1],i=a.anim[e];break}f&&d.attr(a.anim[a.percents[v]])}if(i){if(j)j.initstatus=f,j.start=new Date-j.ms*f;else{for(var y in i)if(i[z](y)&&(db[z](y)||d.paper.customAttributes[z](y)))switch(r[y]=d.attr(y),null==r[y]&&(r[y]=cb[y]),s[y]=i[y],db[y]){case T:t[y]=(s[y]-r[y])/p;break;case"colour":r[y]=c.getRGB(r[y]);var A=c.getRGB(s[y]);t[y]={r:(A.r-r[y].r)/p,g:(A.g-r[y].g)/p,b:(A.b-r[y].b)/p};break;case"path":var B=Kb(r[y],s[y]),C=B[1];for(r[y]=B[0],t[y]=[],v=0,x=r[y].length;x>v;v++){t[y][v]=[0];for(var D=1,F=r[y][v].length;F>D;D++)t[y][v][D]=(C[v][D]-r[y][v][D])/p}break;case"transform":var G=d._,H=Pb(G[y],s[y]);if(H)for(r[y]=H.from,s[y]=H.to,t[y]=[],t[y].real=!0,v=0,x=r[y].length;x>v;v++)for(t[y][v]=[r[y][v][0]],D=1,F=r[y][v].length;F>D;D++)t[y][v][D]=(s[y][v][D]-r[y][v][D])/p;else{var K=d.matrix||new o,L={_:{transform:G.transform},getBBox:function(){return d.getBBox(1)}};r[y]=[K.a,K.b,K.c,K.d,K.e,K.f],Nb(L,s[y]),s[y]=L._.transform,t[y]=[(L.matrix.a-K.a)/p,(L.matrix.b-K.b)/p,(L.matrix.c-K.c)/p,(L.matrix.d-K.d)/p,(L.matrix.e-K.e)/p,(L.matrix.f-K.f)/p]}break;case"csv":var M=I(i[y])[J](w),N=I(r[y])[J](w);if("clip-rect"==y)for(r[y]=N,t[y]=[],v=N.length;v--;)t[y][v]=(M[v]-r[y][v])/p;s[y]=M;break;default:for(M=[][E](i[y]),N=[][E](r[y]),t[y]=[],v=d.paper.customAttributes[y].length;v--;)t[y][v]=((M[v]||0)-(N[v]||0))/p}var O=i.easing,P=c.easing_formulas[O];if(!P)if(P=I(O).match(Z),P&&5==P.length){var Q=P;P=function(a){return q(a,+Q[1],+Q[2],+Q[3],+Q[4],p)}}else P=nb;if(n=i.start||a.start||+new Date,u={anim:a,percent:e,timestamp:n,start:n+(a.del||0),status:0,initstatus:f||0,stop:!1,ms:p,easing:P,from:r,diff:t,to:s,el:d,callback:i.callback,prev:m,next:l,repeat:h||a.times,origin:d.attr(),totalOrigin:g},ic.push(u),f&&!j&&!k&&(u.stop=!0,u.start=new Date-p*f,1==ic.length))return kc();k&&(u.start=new Date-u.ms*f),1==ic.length&&jc(kc)}b("raphael.anim.start."+d.id,d,a)}}function t(a){for(var b=0;b<ic.length;b++)ic[b].el.paper==a&&ic.splice(b--,1)}c.version="2.1.2",c.eve=b;var u,v,w=/[, ]+/,x={circle:1,rect:1,path:1,ellipse:1,text:1,image:1},y=/\{(\d+)\}/g,z="hasOwnProperty",A={doc:document,win:a},B={was:Object.prototype[z].call(A.win,"Raphael"),is:A.win.Raphael},C=function(){this.ca=this.customAttributes={}},D="apply",E="concat",F="ontouchstart"in A.win||A.win.DocumentTouch&&A.doc instanceof DocumentTouch,G="",H=" ",I=String,J="split",K="click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend touchcancel"[J](H),L={mousedown:"touchstart",mousemove:"touchmove",mouseup:"touchend"},M=I.prototype.toLowerCase,N=Math,O=N.max,P=N.min,Q=N.abs,R=N.pow,S=N.PI,T="number",U="string",V="array",W=Object.prototype.toString,X=(c._ISURL=/^url\(['"]?(.+?)['"]?\)$/i,/^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+%?(?:\s*,\s*[\d\.]+%?)?)\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i),Y={NaN:1,Infinity:1,"-Infinity":1},Z=/^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,$=N.round,_=parseFloat,ab=parseInt,bb=I.prototype.toUpperCase,cb=c._availableAttrs={"arrow-end":"none","arrow-start":"none",blur:0,"clip-rect":"0 0 1e9 1e9",cursor:"default",cx:0,cy:0,fill:"#fff","fill-opacity":1,font:'10px "Arial"',"font-family":'"Arial"',"font-size":"10","font-style":"normal","font-weight":400,gradient:0,height:0,href:"http://raphaeljs.com/","letter-spacing":0,opacity:1,path:"M0,0",r:0,rx:0,ry:0,src:"",stroke:"#000","stroke-dasharray":"","stroke-linecap":"butt","stroke-linejoin":"butt","stroke-miterlimit":0,"stroke-opacity":1,"stroke-width":1,target:"_blank","text-anchor":"middle",title:"Raphael",transform:"",width:0,x:0,y:0},db=c._availableAnimAttrs={blur:T,"clip-rect":"csv",cx:T,cy:T,fill:"colour","fill-opacity":T,"font-size":T,height:T,opacity:T,path:"path",r:T,rx:T,ry:T,stroke:"colour","stroke-opacity":T,"stroke-width":T,transform:"transform",width:T,x:T,y:T},eb=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/,fb={hs:1,rg:1},gb=/,?([achlmqrstvxz]),?/gi,hb=/([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/gi,ib=/([rstm])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/gi,jb=/(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/gi,kb=(c._radial_gradient=/^r(?:\(([^,]+?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*([^\)]+?)\))?/,{}),lb=function(a,b){return _(a)-_(b)},mb=function(){},nb=function(a){return a},ob=c._rectPath=function(a,b,c,d,e){return e?[["M",a+e,b],["l",c-2*e,0],["a",e,e,0,0,1,e,e],["l",0,d-2*e],["a",e,e,0,0,1,-e,e],["l",2*e-c,0],["a",e,e,0,0,1,-e,-e],["l",0,2*e-d],["a",e,e,0,0,1,e,-e],["z"]]:[["M",a,b],["l",c,0],["l",0,d],["l",-c,0],["z"]]},pb=function(a,b,c,d){return null==d&&(d=c),[["M",a,b],["m",0,-d],["a",c,d,0,1,1,0,2*d],["a",c,d,0,1,1,0,-2*d],["z"]]},qb=c._getPath={path:function(a){return a.attr("path")},circle:function(a){var b=a.attrs;return pb(b.cx,b.cy,b.r)},ellipse:function(a){var b=a.attrs;return pb(b.cx,b.cy,b.rx,b.ry)},rect:function(a){var b=a.attrs;return ob(b.x,b.y,b.width,b.height,b.r)},image:function(a){var b=a.attrs;return ob(b.x,b.y,b.width,b.height)},text:function(a){var b=a._getBBox();return ob(b.x,b.y,b.width,b.height)},set:function(a){var b=a._getBBox();return ob(b.x,b.y,b.width,b.height)}},rb=c.mapPath=function(a,b){if(!b)return a;var c,d,e,f,g,h,i;for(a=Kb(a),e=0,g=a.length;g>e;e++)for(i=a[e],f=1,h=i.length;h>f;f+=2)c=b.x(i[f],i[f+1]),d=b.y(i[f],i[f+1]),i[f]=c,i[f+1]=d;return a};if(c._g=A,c.type=A.win.SVGAngle||A.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")?"SVG":"VML","VML"==c.type){var sb,tb=A.doc.createElement("div");if(tb.innerHTML='<v:shape adj="1"/>',sb=tb.firstChild,sb.style.behavior="url(#default#VML)",!sb||"object"!=typeof sb.adj)return c.type=G;tb=null}c.svg=!(c.vml="VML"==c.type),c._Paper=C,c.fn=v=C.prototype=c.prototype,c._id=0,c._oid=0,c.is=function(a,b){return b=M.call(b),"finite"==b?!Y[z](+a):"array"==b?a instanceof Array:"null"==b&&null===a||b==typeof a&&null!==a||"object"==b&&a===Object(a)||"array"==b&&Array.isArray&&Array.isArray(a)||W.call(a).slice(8,-1).toLowerCase()==b},c.angle=function(a,b,d,e,f,g){if(null==f){var h=a-d,i=b-e;return h||i?(180+180*N.atan2(-i,-h)/S+360)%360:0}return c.angle(a,b,f,g)-c.angle(d,e,f,g)},c.rad=function(a){return a%360*S/180},c.deg=function(a){return Math.round(180*a/S%360*1e3)/1e3},c.snapTo=function(a,b,d){if(d=c.is(d,"finite")?d:10,c.is(a,V)){for(var e=a.length;e--;)if(Q(a[e]-b)<=d)return a[e]}else{a=+a;var f=b%a;if(d>f)return b-f;if(f>a-d)return b-f+a}return b};c.createUUID=function(a,b){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(a,b).toUpperCase()}}(/[xy]/g,function(a){var b=16*N.random()|0,c="x"==a?b:3&b|8;return c.toString(16)});c.setWindow=function(a){b("raphael.setWindow",c,A.win,a),A.win=a,A.doc=A.win.document,c._engine.initWin&&c._engine.initWin(A.win)};var ub=function(a){if(c.vml){var b,d=/^\s+|\s+$/g;try{var e=new ActiveXObject("htmlfile");e.write("<body>"),e.close(),b=e.body}catch(g){b=createPopup().document.body}var h=b.createTextRange();ub=f(function(a){try{b.style.color=I(a).replace(d,G);var c=h.queryCommandValue("ForeColor");return c=(255&c)<<16|65280&c|(16711680&c)>>>16,"#"+("000000"+c.toString(16)).slice(-6)}catch(e){return"none"}})}else{var i=A.doc.createElement("i");i.title="Raphaël Colour Picker",i.style.display="none",A.doc.body.appendChild(i),ub=f(function(a){return i.style.color=a,A.doc.defaultView.getComputedStyle(i,G).getPropertyValue("color")})}return ub(a)},vb=function(){return"hsb("+[this.h,this.s,this.b]+")"},wb=function(){return"hsl("+[this.h,this.s,this.l]+")"},xb=function(){return this.hex},yb=function(a,b,d){if(null==b&&c.is(a,"object")&&"r"in a&&"g"in a&&"b"in a&&(d=a.b,b=a.g,a=a.r),null==b&&c.is(a,U)){var e=c.getRGB(a);a=e.r,b=e.g,d=e.b}return(a>1||b>1||d>1)&&(a/=255,b/=255,d/=255),[a,b,d]},zb=function(a,b,d,e){a*=255,b*=255,d*=255;var f={r:a,g:b,b:d,hex:c.rgb(a,b,d),toString:xb};return c.is(e,"finite")&&(f.opacity=e),f};c.color=function(a){var b;return c.is(a,"object")&&"h"in a&&"s"in a&&"b"in a?(b=c.hsb2rgb(a),a.r=b.r,a.g=b.g,a.b=b.b,a.hex=b.hex):c.is(a,"object")&&"h"in a&&"s"in a&&"l"in a?(b=c.hsl2rgb(a),a.r=b.r,a.g=b.g,a.b=b.b,a.hex=b.hex):(c.is(a,"string")&&(a=c.getRGB(a)),c.is(a,"object")&&"r"in a&&"g"in a&&"b"in a?(b=c.rgb2hsl(a),a.h=b.h,a.s=b.s,a.l=b.l,b=c.rgb2hsb(a),a.v=b.b):(a={hex:"none"},a.r=a.g=a.b=a.h=a.s=a.v=a.l=-1)),a.toString=xb,a},c.hsb2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"b"in a&&(c=a.b,b=a.s,d=a.o,a=a.h),a*=360;var e,f,g,h,i;return a=a%360/60,i=c*b,h=i*(1-Q(a%2-1)),e=f=g=c-i,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a],zb(e,f,g,d)},c.hsl2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"l"in a&&(c=a.l,b=a.s,a=a.h),(a>1||b>1||c>1)&&(a/=360,b/=100,c/=100),a*=360;var e,f,g,h,i;return a=a%360/60,i=2*b*(.5>c?c:1-c),h=i*(1-Q(a%2-1)),e=f=g=c-i/2,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a],zb(e,f,g,d)},c.rgb2hsb=function(a,b,c){c=yb(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g;return f=O(a,b,c),g=f-P(a,b,c),d=0==g?null:f==a?(b-c)/g:f==b?(c-a)/g+2:(a-b)/g+4,d=(d+360)%6*60/360,e=0==g?0:g/f,{h:d,s:e,b:f,toString:vb}},c.rgb2hsl=function(a,b,c){c=yb(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g,h,i;return g=O(a,b,c),h=P(a,b,c),i=g-h,d=0==i?null:g==a?(b-c)/i:g==b?(c-a)/i+2:(a-b)/i+4,d=(d+360)%6*60/360,f=(g+h)/2,e=0==i?0:.5>f?i/(2*f):i/(2-2*f),{h:d,s:e,l:f,toString:wb}},c._path2string=function(){return this.join(",").replace(gb,"$1")};c._preload=function(a,b){var c=A.doc.createElement("img");c.style.cssText="position:absolute;left:-9999em;top:-9999em",c.onload=function(){b.call(this),this.onload=null,A.doc.body.removeChild(this)},c.onerror=function(){A.doc.body.removeChild(this)},A.doc.body.appendChild(c),c.src=a};c.getRGB=f(function(a){if(!a||(a=I(a)).indexOf("-")+1)return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:g};if("none"==a)return{r:-1,g:-1,b:-1,hex:"none",toString:g};!(fb[z](a.toLowerCase().substring(0,2))||"#"==a.charAt())&&(a=ub(a));var b,d,e,f,h,i,j=a.match(X);return j?(j[2]&&(e=ab(j[2].substring(5),16),d=ab(j[2].substring(3,5),16),b=ab(j[2].substring(1,3),16)),j[3]&&(e=ab((h=j[3].charAt(3))+h,16),d=ab((h=j[3].charAt(2))+h,16),b=ab((h=j[3].charAt(1))+h,16)),j[4]&&(i=j[4][J](eb),b=_(i[0]),"%"==i[0].slice(-1)&&(b*=2.55),d=_(i[1]),"%"==i[1].slice(-1)&&(d*=2.55),e=_(i[2]),"%"==i[2].slice(-1)&&(e*=2.55),"rgba"==j[1].toLowerCase().slice(0,4)&&(f=_(i[3])),i[3]&&"%"==i[3].slice(-1)&&(f/=100)),j[5]?(i=j[5][J](eb),b=_(i[0]),"%"==i[0].slice(-1)&&(b*=2.55),d=_(i[1]),"%"==i[1].slice(-1)&&(d*=2.55),e=_(i[2]),"%"==i[2].slice(-1)&&(e*=2.55),("deg"==i[0].slice(-3)||"°"==i[0].slice(-1))&&(b/=360),"hsba"==j[1].toLowerCase().slice(0,4)&&(f=_(i[3])),i[3]&&"%"==i[3].slice(-1)&&(f/=100),c.hsb2rgb(b,d,e,f)):j[6]?(i=j[6][J](eb),b=_(i[0]),"%"==i[0].slice(-1)&&(b*=2.55),d=_(i[1]),"%"==i[1].slice(-1)&&(d*=2.55),e=_(i[2]),"%"==i[2].slice(-1)&&(e*=2.55),("deg"==i[0].slice(-3)||"°"==i[0].slice(-1))&&(b/=360),"hsla"==j[1].toLowerCase().slice(0,4)&&(f=_(i[3])),i[3]&&"%"==i[3].slice(-1)&&(f/=100),c.hsl2rgb(b,d,e,f)):(j={r:b,g:d,b:e,toString:g},j.hex="#"+(16777216|e|d<<8|b<<16).toString(16).slice(1),c.is(f,"finite")&&(j.opacity=f),j)):{r:-1,g:-1,b:-1,hex:"none",error:1,toString:g}},c),c.hsb=f(function(a,b,d){return c.hsb2rgb(a,b,d).hex}),c.hsl=f(function(a,b,d){return c.hsl2rgb(a,b,d).hex}),c.rgb=f(function(a,b,c){return"#"+(16777216|c|b<<8|a<<16).toString(16).slice(1)}),c.getColor=function(a){var b=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||.75},c=this.hsb2rgb(b.h,b.s,b.b);return b.h+=.075,b.h>1&&(b.h=0,b.s-=.2,b.s<=0&&(this.getColor.start={h:0,s:1,b:b.b})),c.hex},c.getColor.reset=function(){delete this.start},c.parsePathString=function(a){if(!a)return null;var b=Ab(a);if(b.arr)return Cb(b.arr);var d={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},e=[];return c.is(a,V)&&c.is(a[0],V)&&(e=Cb(a)),e.length||I(a).replace(hb,function(a,b,c){var f=[],g=b.toLowerCase();if(c.replace(jb,function(a,b){b&&f.push(+b)}),"m"==g&&f.length>2&&(e.push([b][E](f.splice(0,2))),g="l",b="m"==b?"l":"L"),"r"==g)e.push([b][E](f));else for(;f.length>=d[g]&&(e.push([b][E](f.splice(0,d[g]))),d[g]););}),e.toString=c._path2string,b.arr=Cb(e),e},c.parseTransformString=f(function(a){if(!a)return null;var b=[];return c.is(a,V)&&c.is(a[0],V)&&(b=Cb(a)),b.length||I(a).replace(ib,function(a,c,d){{var e=[];M.call(c)}d.replace(jb,function(a,b){b&&e.push(+b)}),b.push([c][E](e))}),b.toString=c._path2string,b});var Ab=function(a){var b=Ab.ps=Ab.ps||{};return b[a]?b[a].sleep=100:b[a]={sleep:100},setTimeout(function(){for(var c in b)b[z](c)&&c!=a&&(b[c].sleep--,!b[c].sleep&&delete b[c])}),b[a]};c.findDotsAtSegment=function(a,b,c,d,e,f,g,h,i){var j=1-i,k=R(j,3),l=R(j,2),m=i*i,n=m*i,o=k*a+3*l*i*c+3*j*i*i*e+n*g,p=k*b+3*l*i*d+3*j*i*i*f+n*h,q=a+2*i*(c-a)+m*(e-2*c+a),r=b+2*i*(d-b)+m*(f-2*d+b),s=c+2*i*(e-c)+m*(g-2*e+c),t=d+2*i*(f-d)+m*(h-2*f+d),u=j*a+i*c,v=j*b+i*d,w=j*e+i*g,x=j*f+i*h,y=90-180*N.atan2(q-s,r-t)/S;return(q>s||t>r)&&(y+=180),{x:o,y:p,m:{x:q,y:r},n:{x:s,y:t},start:{x:u,y:v},end:{x:w,y:x},alpha:y}},c.bezierBBox=function(a,b,d,e,f,g,h,i){c.is(a,"array")||(a=[a,b,d,e,f,g,h,i]);var j=Jb.apply(null,a);return{x:j.min.x,y:j.min.y,x2:j.max.x,y2:j.max.y,width:j.max.x-j.min.x,height:j.max.y-j.min.y}},c.isPointInsideBBox=function(a,b,c){return b>=a.x&&b<=a.x2&&c>=a.y&&c<=a.y2},c.isBBoxIntersect=function(a,b){var d=c.isPointInsideBBox;return d(b,a.x,a.y)||d(b,a.x2,a.y)||d(b,a.x,a.y2)||d(b,a.x2,a.y2)||d(a,b.x,b.y)||d(a,b.x2,b.y)||d(a,b.x,b.y2)||d(a,b.x2,b.y2)||(a.x<b.x2&&a.x>b.x||b.x<a.x2&&b.x>a.x)&&(a.y<b.y2&&a.y>b.y||b.y<a.y2&&b.y>a.y)},c.pathIntersection=function(a,b){return n(a,b)},c.pathIntersectionNumber=function(a,b){return n(a,b,1)},c.isPointInsidePath=function(a,b,d){var e=c.pathBBox(a);return c.isPointInsideBBox(e,b,d)&&n(a,[["M",b,d],["H",e.x2+10]],1)%2==1},c._removedFactory=function(a){return function(){b("raphael.log",null,"Raphaël: you are calling to method “"+a+"” of removed object",a)}};var Bb=c.pathBBox=function(a){var b=Ab(a);if(b.bbox)return d(b.bbox);if(!a)return{x:0,y:0,width:0,height:0,x2:0,y2:0};a=Kb(a);for(var c,e=0,f=0,g=[],h=[],i=0,j=a.length;j>i;i++)if(c=a[i],"M"==c[0])e=c[1],f=c[2],g.push(e),h.push(f);else{var k=Jb(e,f,c[1],c[2],c[3],c[4],c[5],c[6]);g=g[E](k.min.x,k.max.x),h=h[E](k.min.y,k.max.y),e=c[5],f=c[6]}var l=P[D](0,g),m=P[D](0,h),n=O[D](0,g),o=O[D](0,h),p=n-l,q=o-m,r={x:l,y:m,x2:n,y2:o,width:p,height:q,cx:l+p/2,cy:m+q/2};return b.bbox=d(r),r},Cb=function(a){var b=d(a);return b.toString=c._path2string,b},Db=c._pathToRelative=function(a){var b=Ab(a);if(b.rel)return Cb(b.rel);c.is(a,V)&&c.is(a&&a[0],V)||(a=c.parsePathString(a));var d=[],e=0,f=0,g=0,h=0,i=0;"M"==a[0][0]&&(e=a[0][1],f=a[0][2],g=e,h=f,i++,d.push(["M",e,f]));for(var j=i,k=a.length;k>j;j++){var l=d[j]=[],m=a[j];if(m[0]!=M.call(m[0]))switch(l[0]=M.call(m[0]),l[0]){case"a":l[1]=m[1],l[2]=m[2],l[3]=m[3],l[4]=m[4],l[5]=m[5],l[6]=+(m[6]-e).toFixed(3),l[7]=+(m[7]-f).toFixed(3);break;case"v":l[1]=+(m[1]-f).toFixed(3);break;case"m":g=m[1],h=m[2];default:for(var n=1,o=m.length;o>n;n++)l[n]=+(m[n]-(n%2?e:f)).toFixed(3)}else{l=d[j]=[],"m"==m[0]&&(g=m[1]+e,h=m[2]+f);for(var p=0,q=m.length;q>p;p++)d[j][p]=m[p]}var r=d[j].length;switch(d[j][0]){case"z":e=g,f=h;break;case"h":e+=+d[j][r-1];break;case"v":f+=+d[j][r-1];break;default:e+=+d[j][r-2],f+=+d[j][r-1]}}return d.toString=c._path2string,b.rel=Cb(d),d},Eb=c._pathToAbsolute=function(a){var b=Ab(a);if(b.abs)return Cb(b.abs);if(c.is(a,V)&&c.is(a&&a[0],V)||(a=c.parsePathString(a)),!a||!a.length)return[["M",0,0]];var d=[],e=0,f=0,g=0,i=0,j=0;"M"==a[0][0]&&(e=+a[0][1],f=+a[0][2],g=e,i=f,j++,d[0]=["M",e,f]);for(var k,l,m=3==a.length&&"M"==a[0][0]&&"R"==a[1][0].toUpperCase()&&"Z"==a[2][0].toUpperCase(),n=j,o=a.length;o>n;n++){if(d.push(k=[]),l=a[n],l[0]!=bb.call(l[0]))switch(k[0]=bb.call(l[0]),k[0]){case"A":k[1]=l[1],k[2]=l[2],k[3]=l[3],k[4]=l[4],k[5]=l[5],k[6]=+(l[6]+e),k[7]=+(l[7]+f);break;case"V":k[1]=+l[1]+f;break;case"H":k[1]=+l[1]+e;break;case"R":for(var p=[e,f][E](l.slice(1)),q=2,r=p.length;r>q;q++)p[q]=+p[q]+e,p[++q]=+p[q]+f;d.pop(),d=d[E](h(p,m));break;case"M":g=+l[1]+e,i=+l[2]+f;default:for(q=1,r=l.length;r>q;q++)k[q]=+l[q]+(q%2?e:f)}else if("R"==l[0])p=[e,f][E](l.slice(1)),d.pop(),d=d[E](h(p,m)),k=["R"][E](l.slice(-2));else for(var s=0,t=l.length;t>s;s++)k[s]=l[s];switch(k[0]){case"Z":e=g,f=i;break;case"H":e=k[1];break;case"V":f=k[1];break;case"M":g=k[k.length-2],i=k[k.length-1];default:e=k[k.length-2],f=k[k.length-1]}}return d.toString=c._path2string,b.abs=Cb(d),d},Fb=function(a,b,c,d){return[a,b,c,d,c,d]},Gb=function(a,b,c,d,e,f){var g=1/3,h=2/3;return[g*a+h*c,g*b+h*d,g*e+h*c,g*f+h*d,e,f]},Hb=function(a,b,c,d,e,g,h,i,j,k){var l,m=120*S/180,n=S/180*(+e||0),o=[],p=f(function(a,b,c){var d=a*N.cos(c)-b*N.sin(c),e=a*N.sin(c)+b*N.cos(c);return{x:d,y:e}});if(k)y=k[0],z=k[1],w=k[2],x=k[3];else{l=p(a,b,-n),a=l.x,b=l.y,l=p(i,j,-n),i=l.x,j=l.y;var q=(N.cos(S/180*e),N.sin(S/180*e),(a-i)/2),r=(b-j)/2,s=q*q/(c*c)+r*r/(d*d);s>1&&(s=N.sqrt(s),c=s*c,d=s*d);var t=c*c,u=d*d,v=(g==h?-1:1)*N.sqrt(Q((t*u-t*r*r-u*q*q)/(t*r*r+u*q*q))),w=v*c*r/d+(a+i)/2,x=v*-d*q/c+(b+j)/2,y=N.asin(((b-x)/d).toFixed(9)),z=N.asin(((j-x)/d).toFixed(9));y=w>a?S-y:y,z=w>i?S-z:z,0>y&&(y=2*S+y),0>z&&(z=2*S+z),h&&y>z&&(y-=2*S),!h&&z>y&&(z-=2*S)}var A=z-y;if(Q(A)>m){var B=z,C=i,D=j;z=y+m*(h&&z>y?1:-1),i=w+c*N.cos(z),j=x+d*N.sin(z),o=Hb(i,j,c,d,e,0,h,C,D,[z,B,w,x])}A=z-y;var F=N.cos(y),G=N.sin(y),H=N.cos(z),I=N.sin(z),K=N.tan(A/4),L=4/3*c*K,M=4/3*d*K,O=[a,b],P=[a+L*G,b-M*F],R=[i+L*I,j-M*H],T=[i,j];if(P[0]=2*O[0]-P[0],P[1]=2*O[1]-P[1],k)return[P,R,T][E](o);o=[P,R,T][E](o).join()[J](",");for(var U=[],V=0,W=o.length;W>V;V++)U[V]=V%2?p(o[V-1],o[V],n).y:p(o[V],o[V+1],n).x;return U},Ib=function(a,b,c,d,e,f,g,h,i){var j=1-i;return{x:R(j,3)*a+3*R(j,2)*i*c+3*j*i*i*e+R(i,3)*g,y:R(j,3)*b+3*R(j,2)*i*d+3*j*i*i*f+R(i,3)*h}},Jb=f(function(a,b,c,d,e,f,g,h){var i,j=e-2*c+a-(g-2*e+c),k=2*(c-a)-2*(e-c),l=a-c,m=(-k+N.sqrt(k*k-4*j*l))/2/j,n=(-k-N.sqrt(k*k-4*j*l))/2/j,o=[b,h],p=[a,g];return Q(m)>"1e12"&&(m=.5),Q(n)>"1e12"&&(n=.5),m>0&&1>m&&(i=Ib(a,b,c,d,e,f,g,h,m),p.push(i.x),o.push(i.y)),n>0&&1>n&&(i=Ib(a,b,c,d,e,f,g,h,n),p.push(i.x),o.push(i.y)),j=f-2*d+b-(h-2*f+d),k=2*(d-b)-2*(f-d),l=b-d,m=(-k+N.sqrt(k*k-4*j*l))/2/j,n=(-k-N.sqrt(k*k-4*j*l))/2/j,Q(m)>"1e12"&&(m=.5),Q(n)>"1e12"&&(n=.5),m>0&&1>m&&(i=Ib(a,b,c,d,e,f,g,h,m),p.push(i.x),o.push(i.y)),n>0&&1>n&&(i=Ib(a,b,c,d,e,f,g,h,n),p.push(i.x),o.push(i.y)),{min:{x:P[D](0,p),y:P[D](0,o)},max:{x:O[D](0,p),y:O[D](0,o)}}}),Kb=c._path2curve=f(function(a,b){var c=!b&&Ab(a);if(!b&&c.curve)return Cb(c.curve);for(var d=Eb(a),e=b&&Eb(b),f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},h=(function(a,b,c){var d,e,f={T:1,Q:1};if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];switch(!(a[0]in f)&&(b.qx=b.qy=null),a[0]){case"M":b.X=a[1],b.Y=a[2];break;case"A":a=["C"][E](Hb[D](0,[b.x,b.y][E](a.slice(1))));break;case"S":"C"==c||"S"==c?(d=2*b.x-b.bx,e=2*b.y-b.by):(d=b.x,e=b.y),a=["C",d,e][E](a.slice(1));break;case"T":"Q"==c||"T"==c?(b.qx=2*b.x-b.qx,b.qy=2*b.y-b.qy):(b.qx=b.x,b.qy=b.y),a=["C"][E](Gb(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case"Q":b.qx=a[1],b.qy=a[2],a=["C"][E](Gb(b.x,b.y,a[1],a[2],a[3],a[4]));break;case"L":a=["C"][E](Fb(b.x,b.y,a[1],a[2]));break;case"H":a=["C"][E](Fb(b.x,b.y,a[1],b.y));break;case"V":a=["C"][E](Fb(b.x,b.y,b.x,a[1]));break;case"Z":a=["C"][E](Fb(b.x,b.y,b.X,b.Y))}return a}),i=function(a,b){if(a[b].length>7){a[b].shift();for(var c=a[b];c.length;)k[b]="A",e&&(l[b]="A"),a.splice(b++,0,["C"][E](c.splice(0,6)));a.splice(b,1),p=O(d.length,e&&e.length||0)}},j=function(a,b,c,f,g){a&&b&&"M"==a[g][0]&&"M"!=b[g][0]&&(b.splice(g,0,["M",f.x,f.y]),c.bx=0,c.by=0,c.x=a[g][1],c.y=a[g][2],p=O(d.length,e&&e.length||0))},k=[],l=[],m="",n="",o=0,p=O(d.length,e&&e.length||0);p>o;o++){d[o]&&(m=d[o][0]),"C"!=m&&(k[o]=m,o&&(n=k[o-1])),d[o]=h(d[o],f,n),"A"!=k[o]&&"C"==m&&(k[o]="C"),i(d,o),e&&(e[o]&&(m=e[o][0]),"C"!=m&&(l[o]=m,o&&(n=l[o-1])),e[o]=h(e[o],g,n),"A"!=l[o]&&"C"==m&&(l[o]="C"),i(e,o)),j(d,e,f,g,o),j(e,d,g,f,o);var q=d[o],r=e&&e[o],s=q.length,t=e&&r.length;f.x=q[s-2],f.y=q[s-1],f.bx=_(q[s-4])||f.x,f.by=_(q[s-3])||f.y,g.bx=e&&(_(r[t-4])||g.x),g.by=e&&(_(r[t-3])||g.y),g.x=e&&r[t-2],g.y=e&&r[t-1]}return e||(c.curve=Cb(d)),e?[d,e]:d},null,Cb),Lb=(c._parseDots=f(function(a){for(var b=[],d=0,e=a.length;e>d;d++){var f={},g=a[d].match(/^([^:]*):?([\d\.]*)/);if(f.color=c.getRGB(g[1]),f.color.error)return null;f.color=f.color.hex,g[2]&&(f.offset=g[2]+"%"),b.push(f)}for(d=1,e=b.length-1;e>d;d++)if(!b[d].offset){for(var h=_(b[d-1].offset||0),i=0,j=d+1;e>j;j++)if(b[j].offset){i=b[j].offset;break}i||(i=100,j=e),i=_(i);for(var k=(i-h)/(j-d+1);j>d;d++)h+=k,b[d].offset=h+"%"}return b}),c._tear=function(a,b){a==b.top&&(b.top=a.prev),a==b.bottom&&(b.bottom=a.next),a.next&&(a.next.prev=a.prev),a.prev&&(a.prev.next=a.next)}),Mb=(c._tofront=function(a,b){b.top!==a&&(Lb(a,b),a.next=null,a.prev=b.top,b.top.next=a,b.top=a)},c._toback=function(a,b){b.bottom!==a&&(Lb(a,b),a.next=b.bottom,a.prev=null,b.bottom.prev=a,b.bottom=a)},c._insertafter=function(a,b,c){Lb(a,c),b==c.top&&(c.top=a),b.next&&(b.next.prev=a),a.next=b.next,a.prev=b,b.next=a},c._insertbefore=function(a,b,c){Lb(a,c),b==c.bottom&&(c.bottom=a),b.prev&&(b.prev.next=a),a.prev=b.prev,b.prev=a,a.next=b},c.toMatrix=function(a,b){var c=Bb(a),d={_:{transform:G},getBBox:function(){return c}};return Nb(d,b),d.matrix}),Nb=(c.transformPath=function(a,b){return rb(a,Mb(a,b))},c._extractTransform=function(a,b){if(null==b)return a._.transform;b=I(b).replace(/\.{3}|\u2026/g,a._.transform||G);var d=c.parseTransformString(b),e=0,f=0,g=0,h=1,i=1,j=a._,k=new o;if(j.transform=d||[],d)for(var l=0,m=d.length;m>l;l++){var n,p,q,r,s,t=d[l],u=t.length,v=I(t[0]).toLowerCase(),w=t[0]!=v,x=w?k.invert():0;"t"==v&&3==u?w?(n=x.x(0,0),p=x.y(0,0),q=x.x(t[1],t[2]),r=x.y(t[1],t[2]),k.translate(q-n,r-p)):k.translate(t[1],t[2]):"r"==v?2==u?(s=s||a.getBBox(1),k.rotate(t[1],s.x+s.width/2,s.y+s.height/2),e+=t[1]):4==u&&(w?(q=x.x(t[2],t[3]),r=x.y(t[2],t[3]),k.rotate(t[1],q,r)):k.rotate(t[1],t[2],t[3]),e+=t[1]):"s"==v?2==u||3==u?(s=s||a.getBBox(1),k.scale(t[1],t[u-1],s.x+s.width/2,s.y+s.height/2),h*=t[1],i*=t[u-1]):5==u&&(w?(q=x.x(t[3],t[4]),r=x.y(t[3],t[4]),k.scale(t[1],t[2],q,r)):k.scale(t[1],t[2],t[3],t[4]),h*=t[1],i*=t[2]):"m"==v&&7==u&&k.add(t[1],t[2],t[3],t[4],t[5],t[6]),j.dirtyT=1,a.matrix=k}a.matrix=k,j.sx=h,j.sy=i,j.deg=e,j.dx=f=k.e,j.dy=g=k.f,1==h&&1==i&&!e&&j.bbox?(j.bbox.x+=+f,j.bbox.y+=+g):j.dirtyT=1}),Ob=function(a){var b=a[0];switch(b.toLowerCase()){case"t":return[b,0,0];case"m":return[b,1,0,0,1,0,0];case"r":return 4==a.length?[b,0,a[2],a[3]]:[b,0];case"s":return 5==a.length?[b,1,1,a[3],a[4]]:3==a.length?[b,1,1]:[b,1]}},Pb=c._equaliseTransform=function(a,b){b=I(b).replace(/\.{3}|\u2026/g,a),a=c.parseTransformString(a)||[],b=c.parseTransformString(b)||[]; for(var d,e,f,g,h=O(a.length,b.length),i=[],j=[],k=0;h>k;k++){if(f=a[k]||Ob(b[k]),g=b[k]||Ob(f),f[0]!=g[0]||"r"==f[0].toLowerCase()&&(f[2]!=g[2]||f[3]!=g[3])||"s"==f[0].toLowerCase()&&(f[3]!=g[3]||f[4]!=g[4]))return;for(i[k]=[],j[k]=[],d=0,e=O(f.length,g.length);e>d;d++)d in f&&(i[k][d]=f[d]),d in g&&(j[k][d]=g[d])}return{from:i,to:j}};c._getContainer=function(a,b,d,e){var f;return f=null!=e||c.is(a,"object")?a:A.doc.getElementById(a),null!=f?f.tagName?null==b?{container:f,width:f.style.pixelWidth||f.offsetWidth,height:f.style.pixelHeight||f.offsetHeight}:{container:f,width:b,height:d}:{container:1,x:a,y:b,width:d,height:e}:void 0},c.pathToRelative=Db,c._engine={},c.path2curve=Kb,c.matrix=function(a,b,c,d,e,f){return new o(a,b,c,d,e,f)},function(a){function b(a){return a[0]*a[0]+a[1]*a[1]}function d(a){var c=N.sqrt(b(a));a[0]&&(a[0]/=c),a[1]&&(a[1]/=c)}a.add=function(a,b,c,d,e,f){var g,h,i,j,k=[[],[],[]],l=[[this.a,this.c,this.e],[this.b,this.d,this.f],[0,0,1]],m=[[a,c,e],[b,d,f],[0,0,1]];for(a&&a instanceof o&&(m=[[a.a,a.c,a.e],[a.b,a.d,a.f],[0,0,1]]),g=0;3>g;g++)for(h=0;3>h;h++){for(j=0,i=0;3>i;i++)j+=l[g][i]*m[i][h];k[g][h]=j}this.a=k[0][0],this.b=k[1][0],this.c=k[0][1],this.d=k[1][1],this.e=k[0][2],this.f=k[1][2]},a.invert=function(){var a=this,b=a.a*a.d-a.b*a.c;return new o(a.d/b,-a.b/b,-a.c/b,a.a/b,(a.c*a.f-a.d*a.e)/b,(a.b*a.e-a.a*a.f)/b)},a.clone=function(){return new o(this.a,this.b,this.c,this.d,this.e,this.f)},a.translate=function(a,b){this.add(1,0,0,1,a,b)},a.scale=function(a,b,c,d){null==b&&(b=a),(c||d)&&this.add(1,0,0,1,c,d),this.add(a,0,0,b,0,0),(c||d)&&this.add(1,0,0,1,-c,-d)},a.rotate=function(a,b,d){a=c.rad(a),b=b||0,d=d||0;var e=+N.cos(a).toFixed(9),f=+N.sin(a).toFixed(9);this.add(e,f,-f,e,b,d),this.add(1,0,0,1,-b,-d)},a.x=function(a,b){return a*this.a+b*this.c+this.e},a.y=function(a,b){return a*this.b+b*this.d+this.f},a.get=function(a){return+this[I.fromCharCode(97+a)].toFixed(4)},a.toString=function(){return c.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()},a.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+", Dy="+this.get(5)+", sizingmethod='auto expand')"},a.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]},a.split=function(){var a={};a.dx=this.e,a.dy=this.f;var e=[[this.a,this.c],[this.b,this.d]];a.scalex=N.sqrt(b(e[0])),d(e[0]),a.shear=e[0][0]*e[1][0]+e[0][1]*e[1][1],e[1]=[e[1][0]-e[0][0]*a.shear,e[1][1]-e[0][1]*a.shear],a.scaley=N.sqrt(b(e[1])),d(e[1]),a.shear/=a.scaley;var f=-e[0][1],g=e[1][1];return 0>g?(a.rotate=c.deg(N.acos(g)),0>f&&(a.rotate=360-a.rotate)):a.rotate=c.deg(N.asin(f)),a.isSimple=!(+a.shear.toFixed(9)||a.scalex.toFixed(9)!=a.scaley.toFixed(9)&&a.rotate),a.isSuperSimple=!+a.shear.toFixed(9)&&a.scalex.toFixed(9)==a.scaley.toFixed(9)&&!a.rotate,a.noRotation=!+a.shear.toFixed(9)&&!a.rotate,a},a.toTransformString=function(a){var b=a||this[J]();return b.isSimple?(b.scalex=+b.scalex.toFixed(4),b.scaley=+b.scaley.toFixed(4),b.rotate=+b.rotate.toFixed(4),(b.dx||b.dy?"t"+[b.dx,b.dy]:G)+(1!=b.scalex||1!=b.scaley?"s"+[b.scalex,b.scaley,0,0]:G)+(b.rotate?"r"+[b.rotate,0,0]:G)):"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}}(o.prototype);var Qb=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);v.safari="Apple Computer, Inc."==navigator.vendor&&(Qb&&Qb[1]<4||"iP"==navigator.platform.slice(0,2))||"Google Inc."==navigator.vendor&&Qb&&Qb[1]<8?function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){a.remove()})}:mb;for(var Rb=function(){this.returnValue=!1},Sb=function(){return this.originalEvent.preventDefault()},Tb=function(){this.cancelBubble=!0},Ub=function(){return this.originalEvent.stopPropagation()},Vb=function(a){var b=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,c=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft;return{x:a.clientX+c,y:a.clientY+b}},Wb=function(){return A.doc.addEventListener?function(a,b,c,d){var e=function(a){var b=Vb(a);return c.call(d,a,b.x,b.y)};if(a.addEventListener(b,e,!1),F&&L[b]){var f=function(b){for(var e=Vb(b),f=b,g=0,h=b.targetTouches&&b.targetTouches.length;h>g;g++)if(b.targetTouches[g].target==a){b=b.targetTouches[g],b.originalEvent=f,b.preventDefault=Sb,b.stopPropagation=Ub;break}return c.call(d,b,e.x,e.y)};a.addEventListener(L[b],f,!1)}return function(){return a.removeEventListener(b,e,!1),F&&L[b]&&a.removeEventListener(L[b],f,!1),!0}}:A.doc.attachEvent?function(a,b,c,d){var e=function(a){a=a||A.win.event;var b=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,e=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft,f=a.clientX+e,g=a.clientY+b;return a.preventDefault=a.preventDefault||Rb,a.stopPropagation=a.stopPropagation||Tb,c.call(d,a,f,g)};a.attachEvent("on"+b,e);var f=function(){return a.detachEvent("on"+b,e),!0};return f}:void 0}(),Xb=[],Yb=function(a){for(var c,d=a.clientX,e=a.clientY,f=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,g=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft,h=Xb.length;h--;){if(c=Xb[h],F&&a.touches){for(var i,j=a.touches.length;j--;)if(i=a.touches[j],i.identifier==c.el._drag.id){d=i.clientX,e=i.clientY,(a.originalEvent?a.originalEvent:a).preventDefault();break}}else a.preventDefault();var k,l=c.el.node,m=l.nextSibling,n=l.parentNode,o=l.style.display;A.win.opera&&n.removeChild(l),l.style.display="none",k=c.el.paper.getElementByPoint(d,e),l.style.display=o,A.win.opera&&(m?n.insertBefore(l,m):n.appendChild(l)),k&&b("raphael.drag.over."+c.el.id,c.el,k),d+=g,e+=f,b("raphael.drag.move."+c.el.id,c.move_scope||c.el,d-c.el._drag.x,e-c.el._drag.y,d,e,a)}},Zb=function(a){c.unmousemove(Yb).unmouseup(Zb);for(var d,e=Xb.length;e--;)d=Xb[e],d.el._drag={},b("raphael.drag.end."+d.el.id,d.end_scope||d.start_scope||d.move_scope||d.el,a);Xb=[]},$b=c.el={},_b=K.length;_b--;)!function(a){c[a]=$b[a]=function(b,d){return c.is(b,"function")&&(this.events=this.events||[],this.events.push({name:a,f:b,unbind:Wb(this.shape||this.node||A.doc,a,b,d||this)})),this},c["un"+a]=$b["un"+a]=function(b){for(var d=this.events||[],e=d.length;e--;)d[e].name!=a||!c.is(b,"undefined")&&d[e].f!=b||(d[e].unbind(),d.splice(e,1),!d.length&&delete this.events);return this}}(K[_b]);$b.data=function(a,d){var e=kb[this.id]=kb[this.id]||{};if(0==arguments.length)return e;if(1==arguments.length){if(c.is(a,"object")){for(var f in a)a[z](f)&&this.data(f,a[f]);return this}return b("raphael.data.get."+this.id,this,e[a],a),e[a]}return e[a]=d,b("raphael.data.set."+this.id,this,d,a),this},$b.removeData=function(a){return null==a?kb[this.id]={}:kb[this.id]&&delete kb[this.id][a],this},$b.getData=function(){return d(kb[this.id]||{})},$b.hover=function(a,b,c,d){return this.mouseover(a,c).mouseout(b,d||c)},$b.unhover=function(a,b){return this.unmouseover(a).unmouseout(b)};var ac=[];$b.drag=function(a,d,e,f,g,h){function i(i){(i.originalEvent||i).preventDefault();var j=i.clientX,k=i.clientY,l=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,m=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft;if(this._drag.id=i.identifier,F&&i.touches)for(var n,o=i.touches.length;o--;)if(n=i.touches[o],this._drag.id=n.identifier,n.identifier==this._drag.id){j=n.clientX,k=n.clientY;break}this._drag.x=j+m,this._drag.y=k+l,!Xb.length&&c.mousemove(Yb).mouseup(Zb),Xb.push({el:this,move_scope:f,start_scope:g,end_scope:h}),d&&b.on("raphael.drag.start."+this.id,d),a&&b.on("raphael.drag.move."+this.id,a),e&&b.on("raphael.drag.end."+this.id,e),b("raphael.drag.start."+this.id,g||f||this,i.clientX+m,i.clientY+l,i)}return this._drag={},ac.push({el:this,start:i}),this.mousedown(i),this},$b.onDragOver=function(a){a?b.on("raphael.drag.over."+this.id,a):b.unbind("raphael.drag.over."+this.id)},$b.undrag=function(){for(var a=ac.length;a--;)ac[a].el==this&&(this.unmousedown(ac[a].start),ac.splice(a,1),b.unbind("raphael.drag.*."+this.id));!ac.length&&c.unmousemove(Yb).unmouseup(Zb),Xb=[]},v.circle=function(a,b,d){var e=c._engine.circle(this,a||0,b||0,d||0);return this.__set__&&this.__set__.push(e),e},v.rect=function(a,b,d,e,f){var g=c._engine.rect(this,a||0,b||0,d||0,e||0,f||0);return this.__set__&&this.__set__.push(g),g},v.ellipse=function(a,b,d,e){var f=c._engine.ellipse(this,a||0,b||0,d||0,e||0);return this.__set__&&this.__set__.push(f),f},v.path=function(a){a&&!c.is(a,U)&&!c.is(a[0],V)&&(a+=G);var b=c._engine.path(c.format[D](c,arguments),this);return this.__set__&&this.__set__.push(b),b},v.image=function(a,b,d,e,f){var g=c._engine.image(this,a||"about:blank",b||0,d||0,e||0,f||0);return this.__set__&&this.__set__.push(g),g},v.text=function(a,b,d){var e=c._engine.text(this,a||0,b||0,I(d));return this.__set__&&this.__set__.push(e),e},v.set=function(a){!c.is(a,"array")&&(a=Array.prototype.splice.call(arguments,0,arguments.length));var b=new mc(a);return this.__set__&&this.__set__.push(b),b.paper=this,b.type="set",b},v.setStart=function(a){this.__set__=a||this.set()},v.setFinish=function(){var a=this.__set__;return delete this.__set__,a},v.getSize=function(){var a=this.canvas.parentNode;return{width:a.offsetWidth,height:a.offsetHeight}},v.setSize=function(a,b){return c._engine.setSize.call(this,a,b)},v.setViewBox=function(a,b,d,e,f){return c._engine.setViewBox.call(this,a,b,d,e,f)},v.top=v.bottom=null,v.raphael=c;var bc=function(a){var b=a.getBoundingClientRect(),c=a.ownerDocument,d=c.body,e=c.documentElement,f=e.clientTop||d.clientTop||0,g=e.clientLeft||d.clientLeft||0,h=b.top+(A.win.pageYOffset||e.scrollTop||d.scrollTop)-f,i=b.left+(A.win.pageXOffset||e.scrollLeft||d.scrollLeft)-g;return{y:h,x:i}};v.getElementByPoint=function(a,b){var c=this,d=c.canvas,e=A.doc.elementFromPoint(a,b);if(A.win.opera&&"svg"==e.tagName){var f=bc(d),g=d.createSVGRect();g.x=a-f.x,g.y=b-f.y,g.width=g.height=1;var h=d.getIntersectionList(g,null);h.length&&(e=h[h.length-1])}if(!e)return null;for(;e.parentNode&&e!=d.parentNode&&!e.raphael;)e=e.parentNode;return e==c.canvas.parentNode&&(e=d),e=e&&e.raphael?c.getById(e.raphaelid):null},v.getElementsByBBox=function(a){var b=this.set();return this.forEach(function(d){c.isBBoxIntersect(d.getBBox(),a)&&b.push(d)}),b},v.getById=function(a){for(var b=this.bottom;b;){if(b.id==a)return b;b=b.next}return null},v.forEach=function(a,b){for(var c=this.bottom;c;){if(a.call(b,c)===!1)return this;c=c.next}return this},v.getElementsByPoint=function(a,b){var c=this.set();return this.forEach(function(d){d.isPointInside(a,b)&&c.push(d)}),c},$b.isPointInside=function(a,b){var d=this.realPath=qb[this.type](this);return this.attr("transform")&&this.attr("transform").length&&(d=c.transformPath(d,this.attr("transform"))),c.isPointInsidePath(d,a,b)},$b.getBBox=function(a){if(this.removed)return{};var b=this._;return a?((b.dirty||!b.bboxwt)&&(this.realPath=qb[this.type](this),b.bboxwt=Bb(this.realPath),b.bboxwt.toString=p,b.dirty=0),b.bboxwt):((b.dirty||b.dirtyT||!b.bbox)&&((b.dirty||!this.realPath)&&(b.bboxwt=0,this.realPath=qb[this.type](this)),b.bbox=Bb(rb(this.realPath,this.matrix)),b.bbox.toString=p,b.dirty=b.dirtyT=0),b.bbox)},$b.clone=function(){if(this.removed)return null;var a=this.paper[this.type]().attr(this.attr());return this.__set__&&this.__set__.push(a),a},$b.glow=function(a){if("text"==this.type)return null;a=a||{};var b={width:(a.width||10)+(+this.attr("stroke-width")||1),fill:a.fill||!1,opacity:a.opacity||.5,offsetx:a.offsetx||0,offsety:a.offsety||0,color:a.color||"#000"},c=b.width/2,d=this.paper,e=d.set(),f=this.realPath||qb[this.type](this);f=this.matrix?rb(f,this.matrix):f;for(var g=1;c+1>g;g++)e.push(d.path(f).attr({stroke:b.color,fill:b.fill?b.color:"none","stroke-linejoin":"round","stroke-linecap":"round","stroke-width":+(b.width/c*g).toFixed(3),opacity:+(b.opacity/c).toFixed(3)}));return e.insertBefore(this).translate(b.offsetx,b.offsety)};var cc=function(a,b,d,e,f,g,h,i,l){return null==l?j(a,b,d,e,f,g,h,i):c.findDotsAtSegment(a,b,d,e,f,g,h,i,k(a,b,d,e,f,g,h,i,l))},dc=function(a,b){return function(d,e,f){d=Kb(d);for(var g,h,i,j,k,l="",m={},n=0,o=0,p=d.length;p>o;o++){if(i=d[o],"M"==i[0])g=+i[1],h=+i[2];else{if(j=cc(g,h,i[1],i[2],i[3],i[4],i[5],i[6]),n+j>e){if(b&&!m.start){if(k=cc(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n),l+=["C"+k.start.x,k.start.y,k.m.x,k.m.y,k.x,k.y],f)return l;m.start=l,l=["M"+k.x,k.y+"C"+k.n.x,k.n.y,k.end.x,k.end.y,i[5],i[6]].join(),n+=j,g=+i[5],h=+i[6];continue}if(!a&&!b)return k=cc(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n),{x:k.x,y:k.y,alpha:k.alpha}}n+=j,g=+i[5],h=+i[6]}l+=i.shift()+i}return m.end=l,k=a?n:b?m:c.findDotsAtSegment(g,h,i[0],i[1],i[2],i[3],i[4],i[5],1),k.alpha&&(k={x:k.x,y:k.y,alpha:k.alpha}),k}},ec=dc(1),fc=dc(),gc=dc(0,1);c.getTotalLength=ec,c.getPointAtLength=fc,c.getSubpath=function(a,b,c){if(this.getTotalLength(a)-c<1e-6)return gc(a,b).end;var d=gc(a,c,1);return b?gc(d,b).end:d},$b.getTotalLength=function(){var a=this.getPath();if(a)return this.node.getTotalLength?this.node.getTotalLength():ec(a)},$b.getPointAtLength=function(a){var b=this.getPath();if(b)return fc(b,a)},$b.getPath=function(){var a,b=c._getPath[this.type];if("text"!=this.type&&"set"!=this.type)return b&&(a=b(this)),a},$b.getSubpath=function(a,b){var d=this.getPath();if(d)return c.getSubpath(d,a,b)};var hc=c.easing_formulas={linear:function(a){return a},"<":function(a){return R(a,1.7)},">":function(a){return R(a,.48)},"<>":function(a){var b=.48-a/1.04,c=N.sqrt(.1734+b*b),d=c-b,e=R(Q(d),1/3)*(0>d?-1:1),f=-c-b,g=R(Q(f),1/3)*(0>f?-1:1),h=e+g+.5;return 3*(1-h)*h*h+h*h*h},backIn:function(a){var b=1.70158;return a*a*((b+1)*a-b)},backOut:function(a){a-=1;var b=1.70158;return a*a*((b+1)*a+b)+1},elastic:function(a){return a==!!a?a:R(2,-10*a)*N.sin(2*(a-.075)*S/.3)+1},bounce:function(a){var b,c=7.5625,d=2.75;return 1/d>a?b=c*a*a:2/d>a?(a-=1.5/d,b=c*a*a+.75):2.5/d>a?(a-=2.25/d,b=c*a*a+.9375):(a-=2.625/d,b=c*a*a+.984375),b}};hc.easeIn=hc["ease-in"]=hc["<"],hc.easeOut=hc["ease-out"]=hc[">"],hc.easeInOut=hc["ease-in-out"]=hc["<>"],hc["back-in"]=hc.backIn,hc["back-out"]=hc.backOut;var ic=[],jc=a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame||a.msRequestAnimationFrame||function(a){setTimeout(a,16)},kc=function(){for(var a=+new Date,d=0;d<ic.length;d++){var e=ic[d];if(!e.el.removed&&!e.paused){var f,g,h=a-e.start,i=e.ms,j=e.easing,k=e.from,l=e.diff,m=e.to,n=(e.t,e.el),o={},p={};if(e.initstatus?(h=(e.initstatus*e.anim.top-e.prev)/(e.percent-e.prev)*i,e.status=e.initstatus,delete e.initstatus,e.stop&&ic.splice(d--,1)):e.status=(e.prev+(e.percent-e.prev)*(h/i))/e.anim.top,!(0>h))if(i>h){var q=j(h/i);for(var r in k)if(k[z](r)){switch(db[r]){case T:f=+k[r]+q*i*l[r];break;case"colour":f="rgb("+[lc($(k[r].r+q*i*l[r].r)),lc($(k[r].g+q*i*l[r].g)),lc($(k[r].b+q*i*l[r].b))].join(",")+")";break;case"path":f=[];for(var t=0,u=k[r].length;u>t;t++){f[t]=[k[r][t][0]];for(var v=1,w=k[r][t].length;w>v;v++)f[t][v]=+k[r][t][v]+q*i*l[r][t][v];f[t]=f[t].join(H)}f=f.join(H);break;case"transform":if(l[r].real)for(f=[],t=0,u=k[r].length;u>t;t++)for(f[t]=[k[r][t][0]],v=1,w=k[r][t].length;w>v;v++)f[t][v]=k[r][t][v]+q*i*l[r][t][v];else{var x=function(a){return+k[r][a]+q*i*l[r][a]};f=[["m",x(0),x(1),x(2),x(3),x(4),x(5)]]}break;case"csv":if("clip-rect"==r)for(f=[],t=4;t--;)f[t]=+k[r][t]+q*i*l[r][t];break;default:var y=[][E](k[r]);for(f=[],t=n.paper.customAttributes[r].length;t--;)f[t]=+y[t]+q*i*l[r][t]}o[r]=f}n.attr(o),function(a,c,d){setTimeout(function(){b("raphael.anim.frame."+a,c,d)})}(n.id,n,e.anim)}else{if(function(a,d,e){setTimeout(function(){b("raphael.anim.frame."+d.id,d,e),b("raphael.anim.finish."+d.id,d,e),c.is(a,"function")&&a.call(d)})}(e.callback,n,e.anim),n.attr(m),ic.splice(d--,1),e.repeat>1&&!e.next){for(g in m)m[z](g)&&(p[g]=e.totalOrigin[g]);e.el.attr(p),s(e.anim,e.el,e.anim.percents[0],null,e.totalOrigin,e.repeat-1)}e.next&&!e.stop&&s(e.anim,e.el,e.next,null,e.totalOrigin,e.repeat)}}}c.svg&&n&&n.paper&&n.paper.safari(),ic.length&&jc(kc)},lc=function(a){return a>255?255:0>a?0:a};$b.animateWith=function(a,b,d,e,f,g){var h=this;if(h.removed)return g&&g.call(h),h;var i=d instanceof r?d:c.animation(d,e,f,g);s(i,h,i.percents[0],null,h.attr());for(var j=0,k=ic.length;k>j;j++)if(ic[j].anim==b&&ic[j].el==a){ic[k-1].start=ic[j].start;break}return h},$b.onAnimation=function(a){return a?b.on("raphael.anim.frame."+this.id,a):b.unbind("raphael.anim.frame."+this.id),this},r.prototype.delay=function(a){var b=new r(this.anim,this.ms);return b.times=this.times,b.del=+a||0,b},r.prototype.repeat=function(a){var b=new r(this.anim,this.ms);return b.del=this.del,b.times=N.floor(O(a,0))||1,b},c.animation=function(a,b,d,e){if(a instanceof r)return a;(c.is(d,"function")||!d)&&(e=e||d||null,d=null),a=Object(a),b=+b||0;var f,g,h={};for(g in a)a[z](g)&&_(g)!=g&&_(g)+"%"!=g&&(f=!0,h[g]=a[g]);if(f)return d&&(h.easing=d),e&&(h.callback=e),new r({100:h},b);if(e){var i=0;for(var j in a){var k=ab(j);a[z](j)&&k>i&&(i=k)}i+="%",!a[i].callback&&(a[i].callback=e)}return new r(a,b)},$b.animate=function(a,b,d,e){var f=this;if(f.removed)return e&&e.call(f),f;var g=a instanceof r?a:c.animation(a,b,d,e);return s(g,f,g.percents[0],null,f.attr()),f},$b.setTime=function(a,b){return a&&null!=b&&this.status(a,P(b,a.ms)/a.ms),this},$b.status=function(a,b){var c,d,e=[],f=0;if(null!=b)return s(a,this,-1,P(b,1)),this;for(c=ic.length;c>f;f++)if(d=ic[f],d.el.id==this.id&&(!a||d.anim==a)){if(a)return d.status;e.push({anim:d.anim,status:d.status})}return a?0:e},$b.pause=function(a){for(var c=0;c<ic.length;c++)ic[c].el.id!=this.id||a&&ic[c].anim!=a||b("raphael.anim.pause."+this.id,this,ic[c].anim)!==!1&&(ic[c].paused=!0);return this},$b.resume=function(a){for(var c=0;c<ic.length;c++)if(ic[c].el.id==this.id&&(!a||ic[c].anim==a)){var d=ic[c];b("raphael.anim.resume."+this.id,this,d.anim)!==!1&&(delete d.paused,this.status(d.anim,d.status))}return this},$b.stop=function(a){for(var c=0;c<ic.length;c++)ic[c].el.id!=this.id||a&&ic[c].anim!=a||b("raphael.anim.stop."+this.id,this,ic[c].anim)!==!1&&ic.splice(c--,1);return this},b.on("raphael.remove",t),b.on("raphael.clear",t),$b.toString=function(){return"Raphaël’s object"};var mc=function(a){if(this.items=[],this.length=0,this.type="set",a)for(var b=0,c=a.length;c>b;b++)!a[b]||a[b].constructor!=$b.constructor&&a[b].constructor!=mc||(this[this.items.length]=this.items[this.items.length]=a[b],this.length++)},nc=mc.prototype;nc.push=function(){for(var a,b,c=0,d=arguments.length;d>c;c++)a=arguments[c],!a||a.constructor!=$b.constructor&&a.constructor!=mc||(b=this.items.length,this[b]=this.items[b]=a,this.length++);return this},nc.pop=function(){return this.length&&delete this[this.length--],this.items.pop()},nc.forEach=function(a,b){for(var c=0,d=this.items.length;d>c;c++)if(a.call(b,this.items[c],c)===!1)return this;return this};for(var oc in $b)$b[z](oc)&&(nc[oc]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a][D](c,b)})}}(oc));return nc.attr=function(a,b){if(a&&c.is(a,V)&&c.is(a[0],"object"))for(var d=0,e=a.length;e>d;d++)this.items[d].attr(a[d]);else for(var f=0,g=this.items.length;g>f;f++)this.items[f].attr(a,b);return this},nc.clear=function(){for(;this.length;)this.pop()},nc.splice=function(a,b){a=0>a?O(this.length+a,0):a,b=O(0,P(this.length-a,b));var c,d=[],e=[],f=[];for(c=2;c<arguments.length;c++)f.push(arguments[c]);for(c=0;b>c;c++)e.push(this[a+c]);for(;c<this.length-a;c++)d.push(this[a+c]);var g=f.length;for(c=0;c<g+d.length;c++)this.items[a+c]=this[a+c]=g>c?f[c]:d[c-g];for(c=this.items.length=this.length-=b-g;this[c];)delete this[c++];return new mc(e)},nc.exclude=function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]==a)return this.splice(b,1),!0},nc.animate=function(a,b,d,e){(c.is(d,"function")||!d)&&(e=d||null);var f,g,h=this.items.length,i=h,j=this;if(!h)return this;e&&(g=function(){!--h&&e.call(j)}),d=c.is(d,U)?d:g;var k=c.animation(a,b,d,g);for(f=this.items[--i].animate(k);i--;)this.items[i]&&!this.items[i].removed&&this.items[i].animateWith(f,k,k),this.items[i]&&!this.items[i].removed||h--;return this},nc.insertAfter=function(a){for(var b=this.items.length;b--;)this.items[b].insertAfter(a);return this},nc.getBBox=function(){for(var a=[],b=[],c=[],d=[],e=this.items.length;e--;)if(!this.items[e].removed){var f=this.items[e].getBBox();a.push(f.x),b.push(f.y),c.push(f.x+f.width),d.push(f.y+f.height)}return a=P[D](0,a),b=P[D](0,b),c=O[D](0,c),d=O[D](0,d),{x:a,y:b,x2:c,y2:d,width:c-a,height:d-b}},nc.clone=function(a){a=this.paper.set();for(var b=0,c=this.items.length;c>b;b++)a.push(this.items[b].clone());return a},nc.toString=function(){return"Raphaël‘s set"},nc.glow=function(a){var b=this.paper.set();return this.forEach(function(c){var d=c.glow(a);null!=d&&d.forEach(function(a){b.push(a)})}),b},nc.isPointInside=function(a,b){var c=!1;return this.forEach(function(d){return d.isPointInside(a,b)?(c=!0,!1):void 0}),c},c.registerFont=function(a){if(!a.face)return a;this.fonts=this.fonts||{};var b={w:a.w,face:{},glyphs:{}},c=a.face["font-family"];for(var d in a.face)a.face[z](d)&&(b.face[d]=a.face[d]);if(this.fonts[c]?this.fonts[c].push(b):this.fonts[c]=[b],!a.svg){b.face["units-per-em"]=ab(a.face["units-per-em"],10);for(var e in a.glyphs)if(a.glyphs[z](e)){var f=a.glyphs[e];if(b.glyphs[e]={w:f.w,k:{},d:f.d&&"M"+f.d.replace(/[mlcxtrv]/g,function(a){return{l:"L",c:"C",x:"z",t:"m",r:"l",v:"c"}[a]||"M"})+"z"},f.k)for(var g in f.k)f[z](g)&&(b.glyphs[e].k[g]=f.k[g])}}return a},v.getFont=function(a,b,d,e){if(e=e||"normal",d=d||"normal",b=+b||{normal:400,bold:700,lighter:300,bolder:800}[b]||400,c.fonts){var f=c.fonts[a];if(!f){var g=new RegExp("(^|\\s)"+a.replace(/[^\w\d\s+!~.:_-]/g,G)+"(\\s|$)","i");for(var h in c.fonts)if(c.fonts[z](h)&&g.test(h)){f=c.fonts[h];break}}var i;if(f)for(var j=0,k=f.length;k>j&&(i=f[j],i.face["font-weight"]!=b||i.face["font-style"]!=d&&i.face["font-style"]||i.face["font-stretch"]!=e);j++);return i}},v.print=function(a,b,d,e,f,g,h,i){g=g||"middle",h=O(P(h||0,1),-1),i=O(P(i||1,3),1);var j,k=I(d)[J](G),l=0,m=0,n=G;if(c.is(e,"string")&&(e=this.getFont(e)),e){j=(f||16)/e.face["units-per-em"];for(var o=e.face.bbox[J](w),p=+o[0],q=o[3]-o[1],r=0,s=+o[1]+("baseline"==g?q+ +e.face.descent:q/2),t=0,u=k.length;u>t;t++){if("\n"==k[t])l=0,x=0,m=0,r+=q*i;else{var v=m&&e.glyphs[k[t-1]]||{},x=e.glyphs[k[t]];l+=m?(v.w||e.w)+(v.k&&v.k[k[t]]||0)+e.w*h:0,m=1}x&&x.d&&(n+=c.transformPath(x.d,["t",l*j,r*j,"s",j,j,p,s,"t",(a-p)/j,(b-s)/j]))}}return this.path(n).attr({fill:"#000",stroke:"none"})},v.add=function(a){if(c.is(a,"array"))for(var b,d=this.set(),e=0,f=a.length;f>e;e++)b=a[e]||{},x[z](b.type)&&d.push(this[b.type]().attr(b));return d},c.format=function(a,b){var d=c.is(b,V)?[0][E](b):arguments;return a&&c.is(a,U)&&d.length-1&&(a=a.replace(y,function(a,b){return null==d[++b]?G:d[b]})),a||G},c.fullfill=function(){var a=/\{([^\}]+)\}/g,b=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g,c=function(a,c,d){var e=d;return c.replace(b,function(a,b,c,d,f){b=b||d,e&&(b in e&&(e=e[b]),"function"==typeof e&&f&&(e=e()))}),e=(null==e||e==d?a:e)+""};return function(b,d){return String(b).replace(a,function(a,b){return c(a,b,d)})}}(),c.ninja=function(){return B.was?A.win.Raphael=B.is:delete Raphael,c},c.st=nc,b.on("raphael.DOMload",function(){u=!0}),function(a,b,d){function e(){/in/.test(a.readyState)?setTimeout(e,9):c.eve("raphael.DOMload")}null==a.readyState&&a.addEventListener&&(a.addEventListener(b,d=function(){a.removeEventListener(b,d,!1),a.readyState="complete"},!1),a.readyState="loading"),e()}(document,"DOMContentLoaded"),function(){if(c.svg){var a="hasOwnProperty",b=String,d=parseFloat,e=parseInt,f=Math,g=f.max,h=f.abs,i=f.pow,j=/[, ]+/,k=c.eve,l="",m=" ",n="http://www.w3.org/1999/xlink",o={block:"M5,0 0,2.5 5,5z",classic:"M5,0 0,2.5 5,5 3.5,3 3.5,2z",diamond:"M2.5,0 5,2.5 2.5,5 0,2.5z",open:"M6,1 1,3.5 6,6",oval:"M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"},p={};c.toString=function(){return"Your browser supports SVG.\nYou are running Raphaël "+this.version};var q=function(d,e){if(e){"string"==typeof d&&(d=q(d));for(var f in e)e[a](f)&&("xlink:"==f.substring(0,6)?d.setAttributeNS(n,f.substring(6),b(e[f])):d.setAttribute(f,b(e[f])))}else d=c._g.doc.createElementNS("http://www.w3.org/2000/svg",d),d.style&&(d.style.webkitTapHighlightColor="rgba(0,0,0,0)");return d},r=function(a,e){var j="linear",k=a.id+e,m=.5,n=.5,o=a.node,p=a.paper,r=o.style,s=c._g.doc.getElementById(k);if(!s){if(e=b(e).replace(c._radial_gradient,function(a,b,c){if(j="radial",b&&c){m=d(b),n=d(c);var e=2*(n>.5)-1;i(m-.5,2)+i(n-.5,2)>.25&&(n=f.sqrt(.25-i(m-.5,2))*e+.5)&&.5!=n&&(n=n.toFixed(5)-1e-5*e)}return l}),e=e.split(/\s*\-\s*/),"linear"==j){var t=e.shift();if(t=-d(t),isNaN(t))return null;var u=[0,0,f.cos(c.rad(t)),f.sin(c.rad(t))],v=1/(g(h(u[2]),h(u[3]))||1);u[2]*=v,u[3]*=v,u[2]<0&&(u[0]=-u[2],u[2]=0),u[3]<0&&(u[1]=-u[3],u[3]=0)}var w=c._parseDots(e);if(!w)return null;if(k=k.replace(/[\(\)\s,\xb0#]/g,"_"),a.gradient&&k!=a.gradient.id&&(p.defs.removeChild(a.gradient),delete a.gradient),!a.gradient){s=q(j+"Gradient",{id:k}),a.gradient=s,q(s,"radial"==j?{fx:m,fy:n}:{x1:u[0],y1:u[1],x2:u[2],y2:u[3],gradientTransform:a.matrix.invert()}),p.defs.appendChild(s);for(var x=0,y=w.length;y>x;x++)s.appendChild(q("stop",{offset:w[x].offset?w[x].offset:x?"100%":"0%","stop-color":w[x].color||"#fff"}))}}return q(o,{fill:"url('"+document.location+"#"+k+"')",opacity:1,"fill-opacity":1}),r.fill=l,r.opacity=1,r.fillOpacity=1,1},s=function(a){var b=a.getBBox(1);q(a.pattern,{patternTransform:a.matrix.invert()+" translate("+b.x+","+b.y+")"})},t=function(d,e,f){if("path"==d.type){for(var g,h,i,j,k,m=b(e).toLowerCase().split("-"),n=d.paper,r=f?"end":"start",s=d.node,t=d.attrs,u=t["stroke-width"],v=m.length,w="classic",x=3,y=3,z=5;v--;)switch(m[v]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":w=m[v];break;case"wide":y=5;break;case"narrow":y=2;break;case"long":x=5;break;case"short":x=2}if("open"==w?(x+=2,y+=2,z+=2,i=1,j=f?4:1,k={fill:"none",stroke:t.stroke}):(j=i=x/2,k={fill:t.stroke,stroke:"none"}),d._.arrows?f?(d._.arrows.endPath&&p[d._.arrows.endPath]--,d._.arrows.endMarker&&p[d._.arrows.endMarker]--):(d._.arrows.startPath&&p[d._.arrows.startPath]--,d._.arrows.startMarker&&p[d._.arrows.startMarker]--):d._.arrows={},"none"!=w){var A="raphael-marker-"+w,B="raphael-marker-"+r+w+x+y+"-obj"+d.id;c._g.doc.getElementById(A)?p[A]++:(n.defs.appendChild(q(q("path"),{"stroke-linecap":"round",d:o[w],id:A})),p[A]=1);var C,D=c._g.doc.getElementById(B);D?(p[B]++,C=D.getElementsByTagName("use")[0]):(D=q(q("marker"),{id:B,markerHeight:y,markerWidth:x,orient:"auto",refX:j,refY:y/2}),C=q(q("use"),{"xlink:href":"#"+A,transform:(f?"rotate(180 "+x/2+" "+y/2+") ":l)+"scale("+x/z+","+y/z+")","stroke-width":(1/((x/z+y/z)/2)).toFixed(4)}),D.appendChild(C),n.defs.appendChild(D),p[B]=1),q(C,k);var E=i*("diamond"!=w&&"oval"!=w);f?(g=d._.arrows.startdx*u||0,h=c.getTotalLength(t.path)-E*u):(g=E*u,h=c.getTotalLength(t.path)-(d._.arrows.enddx*u||0)),k={},k["marker-"+r]="url(#"+B+")",(h||g)&&(k.d=c.getSubpath(t.path,g,h)),q(s,k),d._.arrows[r+"Path"]=A,d._.arrows[r+"Marker"]=B,d._.arrows[r+"dx"]=E,d._.arrows[r+"Type"]=w,d._.arrows[r+"String"]=e}else f?(g=d._.arrows.startdx*u||0,h=c.getTotalLength(t.path)-g):(g=0,h=c.getTotalLength(t.path)-(d._.arrows.enddx*u||0)),d._.arrows[r+"Path"]&&q(s,{d:c.getSubpath(t.path,g,h)}),delete d._.arrows[r+"Path"],delete d._.arrows[r+"Marker"],delete d._.arrows[r+"dx"],delete d._.arrows[r+"Type"],delete d._.arrows[r+"String"];for(k in p)if(p[a](k)&&!p[k]){var F=c._g.doc.getElementById(k);F&&F.parentNode.removeChild(F)}}},u={"":[0],none:[0],"-":[3,1],".":[1,1],"-.":[3,1,1,1],"-..":[3,1,1,1,1,1],". ":[1,3],"- ":[4,3],"--":[8,3],"- .":[4,3,1,3],"--.":[8,3,1,3],"--..":[8,3,1,3,1,3]},v=function(a,c,d){if(c=u[b(c).toLowerCase()]){for(var e=a.attrs["stroke-width"]||"1",f={round:e,square:e,butt:0}[a.attrs["stroke-linecap"]||d["stroke-linecap"]]||0,g=[],h=c.length;h--;)g[h]=c[h]*e+(h%2?1:-1)*f;q(a.node,{"stroke-dasharray":g.join(",")})}},w=function(d,f){var i=d.node,k=d.attrs,m=i.style.visibility;i.style.visibility="hidden";for(var o in f)if(f[a](o)){if(!c._availableAttrs[a](o))continue;var p=f[o];switch(k[o]=p,o){case"blur":d.blur(p);break;case"title":var u=i.getElementsByTagName("title");if(u.length&&(u=u[0]))u.firstChild.nodeValue=p;else{u=q("title");var w=c._g.doc.createTextNode(p);u.appendChild(w),i.appendChild(u)}break;case"href":case"target":var x=i.parentNode;if("a"!=x.tagName.toLowerCase()){var z=q("a");x.insertBefore(z,i),z.appendChild(i),x=z}"target"==o?x.setAttributeNS(n,"show","blank"==p?"new":p):x.setAttributeNS(n,o,p);break;case"cursor":i.style.cursor=p;break;case"transform":d.transform(p);break;case"arrow-start":t(d,p);break;case"arrow-end":t(d,p,1);break;case"clip-rect":var A=b(p).split(j);if(4==A.length){d.clip&&d.clip.parentNode.parentNode.removeChild(d.clip.parentNode);var B=q("clipPath"),C=q("rect");B.id=c.createUUID(),q(C,{x:A[0],y:A[1],width:A[2],height:A[3]}),B.appendChild(C),d.paper.defs.appendChild(B),q(i,{"clip-path":"url(#"+B.id+")"}),d.clip=C}if(!p){var D=i.getAttribute("clip-path");if(D){var E=c._g.doc.getElementById(D.replace(/(^url\(#|\)$)/g,l));E&&E.parentNode.removeChild(E),q(i,{"clip-path":l}),delete d.clip}}break;case"path":"path"==d.type&&(q(i,{d:p?k.path=c._pathToAbsolute(p):"M0,0"}),d._.dirty=1,d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1)));break;case"width":if(i.setAttribute(o,p),d._.dirty=1,!k.fx)break;o="x",p=k.x;case"x":k.fx&&(p=-k.x-(k.width||0));case"rx":if("rx"==o&&"rect"==d.type)break;case"cx":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"height":if(i.setAttribute(o,p),d._.dirty=1,!k.fy)break;o="y",p=k.y;case"y":k.fy&&(p=-k.y-(k.height||0));case"ry":if("ry"==o&&"rect"==d.type)break;case"cy":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"r":"rect"==d.type?q(i,{rx:p,ry:p}):i.setAttribute(o,p),d._.dirty=1;break;case"src":"image"==d.type&&i.setAttributeNS(n,"href",p);break;case"stroke-width":(1!=d._.sx||1!=d._.sy)&&(p/=g(h(d._.sx),h(d._.sy))||1),i.setAttribute(o,p),k["stroke-dasharray"]&&v(d,k["stroke-dasharray"],f),d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"stroke-dasharray":v(d,p,f);break;case"fill":var F=b(p).match(c._ISURL);if(F){B=q("pattern");var G=q("image");B.id=c.createUUID(),q(B,{x:0,y:0,patternUnits:"userSpaceOnUse",height:1,width:1}),q(G,{x:0,y:0,"xlink:href":F[1]}),B.appendChild(G),function(a){c._preload(F[1],function(){var b=this.offsetWidth,c=this.offsetHeight;q(a,{width:b,height:c}),q(G,{width:b,height:c}),d.paper.safari()})}(B),d.paper.defs.appendChild(B),q(i,{fill:"url(#"+B.id+")"}),d.pattern=B,d.pattern&&s(d);break}var H=c.getRGB(p);if(H.error){if(("circle"==d.type||"ellipse"==d.type||"r"!=b(p).charAt())&&r(d,p)){if("opacity"in k||"fill-opacity"in k){var I=c._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l));if(I){var J=I.getElementsByTagName("stop");q(J[J.length-1],{"stop-opacity":("opacity"in k?k.opacity:1)*("fill-opacity"in k?k["fill-opacity"]:1)})}}k.gradient=p,k.fill="none";break}}else delete f.gradient,delete k.gradient,!c.is(k.opacity,"undefined")&&c.is(f.opacity,"undefined")&&q(i,{opacity:k.opacity}),!c.is(k["fill-opacity"],"undefined")&&c.is(f["fill-opacity"],"undefined")&&q(i,{"fill-opacity":k["fill-opacity"]});H[a]("opacity")&&q(i,{"fill-opacity":H.opacity>1?H.opacity/100:H.opacity});case"stroke":H=c.getRGB(p),i.setAttribute(o,H.hex),"stroke"==o&&H[a]("opacity")&&q(i,{"stroke-opacity":H.opacity>1?H.opacity/100:H.opacity}),"stroke"==o&&d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"gradient":("circle"==d.type||"ellipse"==d.type||"r"!=b(p).charAt())&&r(d,p);break; case"opacity":k.gradient&&!k[a]("stroke-opacity")&&q(i,{"stroke-opacity":p>1?p/100:p});case"fill-opacity":if(k.gradient){I=c._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l)),I&&(J=I.getElementsByTagName("stop"),q(J[J.length-1],{"stop-opacity":p}));break}default:"font-size"==o&&(p=e(p,10)+"px");var K=o.replace(/(\-.)/g,function(a){return a.substring(1).toUpperCase()});i.style[K]=p,d._.dirty=1,i.setAttribute(o,p)}}y(d,f),i.style.visibility=m},x=1.2,y=function(d,f){if("text"==d.type&&(f[a]("text")||f[a]("font")||f[a]("font-size")||f[a]("x")||f[a]("y"))){var g=d.attrs,h=d.node,i=h.firstChild?e(c._g.doc.defaultView.getComputedStyle(h.firstChild,l).getPropertyValue("font-size"),10):10;if(f[a]("text")){for(g.text=f.text;h.firstChild;)h.removeChild(h.firstChild);for(var j,k=b(f.text).split("\n"),m=[],n=0,o=k.length;o>n;n++)j=q("tspan"),n&&q(j,{dy:i*x,x:g.x}),j.appendChild(c._g.doc.createTextNode(k[n])),h.appendChild(j),m[n]=j}else for(m=h.getElementsByTagName("tspan"),n=0,o=m.length;o>n;n++)n?q(m[n],{dy:i*x,x:g.x}):q(m[0],{dy:0});q(h,{x:g.x,y:g.y}),d._.dirty=1;var p=d._getBBox(),r=g.y-(p.y+p.height/2);r&&c.is(r,"finite")&&q(m[0],{dy:r})}},z=function(a){return a.parentNode&&"a"===a.parentNode.tagName.toLowerCase()?a.parentNode:a},A=function(a,b){this[0]=this.node=a,a.raphael=!0,this.id=c._oid++,a.raphaelid=this.id,this.matrix=c.matrix(),this.realPath=null,this.paper=b,this.attrs=this.attrs||{},this._={transform:[],sx:1,sy:1,deg:0,dx:0,dy:0,dirty:1},!b.bottom&&(b.bottom=this),this.prev=b.top,b.top&&(b.top.next=this),b.top=this,this.next=null},B=c.el;A.prototype=B,B.constructor=A,c._engine.path=function(a,b){var c=q("path");b.canvas&&b.canvas.appendChild(c);var d=new A(c,b);return d.type="path",w(d,{fill:"none",stroke:"#000",path:a}),d},B.rotate=function(a,c,e){if(this.removed)return this;if(a=b(a).split(j),a.length-1&&(c=d(a[1]),e=d(a[2])),a=d(a[0]),null==e&&(c=e),null==c||null==e){var f=this.getBBox(1);c=f.x+f.width/2,e=f.y+f.height/2}return this.transform(this._.transform.concat([["r",a,c,e]])),this},B.scale=function(a,c,e,f){if(this.removed)return this;if(a=b(a).split(j),a.length-1&&(c=d(a[1]),e=d(a[2]),f=d(a[3])),a=d(a[0]),null==c&&(c=a),null==f&&(e=f),null==e||null==f)var g=this.getBBox(1);return e=null==e?g.x+g.width/2:e,f=null==f?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,c,e,f]])),this},B.translate=function(a,c){return this.removed?this:(a=b(a).split(j),a.length-1&&(c=d(a[1])),a=d(a[0])||0,c=+c||0,this.transform(this._.transform.concat([["t",a,c]])),this)},B.transform=function(b){var d=this._;if(null==b)return d.transform;if(c._extractTransform(this,b),this.clip&&q(this.clip,{transform:this.matrix.invert()}),this.pattern&&s(this),this.node&&q(this.node,{transform:this.matrix}),1!=d.sx||1!=d.sy){var e=this.attrs[a]("stroke-width")?this.attrs["stroke-width"]:1;this.attr({"stroke-width":e})}return this},B.hide=function(){return!this.removed&&this.paper.safari(this.node.style.display="none"),this},B.show=function(){return!this.removed&&this.paper.safari(this.node.style.display=""),this},B.remove=function(){var a=z(this.node);if(!this.removed&&a.parentNode){var b=this.paper;b.__set__&&b.__set__.exclude(this),k.unbind("raphael.*.*."+this.id),this.gradient&&b.defs.removeChild(this.gradient),c._tear(this,b),a.parentNode.removeChild(a),this.removeData();for(var d in this)this[d]="function"==typeof this[d]?c._removedFactory(d):null;this.removed=!0}},B._getBBox=function(){if("none"==this.node.style.display){this.show();var a=!0}var b,c=!1;this.paper.canvas.parentElement?b=this.paper.canvas.parentElement.style:this.paper.canvas.parentNode&&(b=this.paper.canvas.parentNode.style),b&&"none"==b.display&&(c=!0,b.display="");var d={};try{d=this.node.getBBox()}catch(e){d={x:this.node.clientLeft,y:this.node.clientTop,width:this.node.clientWidth,height:this.node.clientHeight}}finally{d=d||{},c&&(b.display="none")}return a&&this.hide(),d},B.attr=function(b,d){if(this.removed)return this;if(null==b){var e={};for(var f in this.attrs)this.attrs[a](f)&&(e[f]=this.attrs[f]);return e.gradient&&"none"==e.fill&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform,e}if(null==d&&c.is(b,"string")){if("fill"==b&&"none"==this.attrs.fill&&this.attrs.gradient)return this.attrs.gradient;if("transform"==b)return this._.transform;for(var g=b.split(j),h={},i=0,l=g.length;l>i;i++)b=g[i],h[b]=b in this.attrs?this.attrs[b]:c.is(this.paper.customAttributes[b],"function")?this.paper.customAttributes[b].def:c._availableAttrs[b];return l-1?h:h[g[0]]}if(null==d&&c.is(b,"array")){for(h={},i=0,l=b.length;l>i;i++)h[b[i]]=this.attr(b[i]);return h}if(null!=d){var m={};m[b]=d}else null!=b&&c.is(b,"object")&&(m=b);for(var n in m)k("raphael.attr."+n+"."+this.id,this,m[n]);for(n in this.paper.customAttributes)if(this.paper.customAttributes[a](n)&&m[a](n)&&c.is(this.paper.customAttributes[n],"function")){var o=this.paper.customAttributes[n].apply(this,[].concat(m[n]));this.attrs[n]=m[n];for(var p in o)o[a](p)&&(m[p]=o[p])}return w(this,m),this},B.toFront=function(){if(this.removed)return this;var a=z(this.node);a.parentNode.appendChild(a);var b=this.paper;return b.top!=this&&c._tofront(this,b),this},B.toBack=function(){if(this.removed)return this;var a=z(this.node),b=a.parentNode;b.insertBefore(a,b.firstChild),c._toback(this,this.paper);this.paper;return this},B.insertAfter=function(a){if(this.removed||!a)return this;var b=z(this.node),d=z(a.node||a[a.length-1].node);return d.nextSibling?d.parentNode.insertBefore(b,d.nextSibling):d.parentNode.appendChild(b),c._insertafter(this,a,this.paper),this},B.insertBefore=function(a){if(this.removed||!a)return this;var b=z(this.node),d=z(a.node||a[0].node);return d.parentNode.insertBefore(b,d),c._insertbefore(this,a,this.paper),this},B.blur=function(a){var b=this;if(0!==+a){var d=q("filter"),e=q("feGaussianBlur");b.attrs.blur=a,d.id=c.createUUID(),q(e,{stdDeviation:+a||1.5}),d.appendChild(e),b.paper.defs.appendChild(d),b._blur=d,q(b.node,{filter:"url(#"+d.id+")"})}else b._blur&&(b._blur.parentNode.removeChild(b._blur),delete b._blur,delete b.attrs.blur),b.node.removeAttribute("filter");return b},c._engine.circle=function(a,b,c,d){var e=q("circle");a.canvas&&a.canvas.appendChild(e);var f=new A(e,a);return f.attrs={cx:b,cy:c,r:d,fill:"none",stroke:"#000"},f.type="circle",q(e,f.attrs),f},c._engine.rect=function(a,b,c,d,e,f){var g=q("rect");a.canvas&&a.canvas.appendChild(g);var h=new A(g,a);return h.attrs={x:b,y:c,width:d,height:e,rx:f||0,ry:f||0,fill:"none",stroke:"#000"},h.type="rect",q(g,h.attrs),h},c._engine.ellipse=function(a,b,c,d,e){var f=q("ellipse");a.canvas&&a.canvas.appendChild(f);var g=new A(f,a);return g.attrs={cx:b,cy:c,rx:d,ry:e,fill:"none",stroke:"#000"},g.type="ellipse",q(f,g.attrs),g},c._engine.image=function(a,b,c,d,e,f){var g=q("image");q(g,{x:c,y:d,width:e,height:f,preserveAspectRatio:"none"}),g.setAttributeNS(n,"href",b),a.canvas&&a.canvas.appendChild(g);var h=new A(g,a);return h.attrs={x:c,y:d,width:e,height:f,src:b},h.type="image",h},c._engine.text=function(a,b,d,e){var f=q("text");a.canvas&&a.canvas.appendChild(f);var g=new A(f,a);return g.attrs={x:b,y:d,"text-anchor":"middle",text:e,"font-family":c._availableAttrs["font-family"],"font-size":c._availableAttrs["font-size"],stroke:"none",fill:"#000"},g.type="text",w(g,g.attrs),g},c._engine.setSize=function(a,b){return this.width=a||this.width,this.height=b||this.height,this.canvas.setAttribute("width",this.width),this.canvas.setAttribute("height",this.height),this._viewBox&&this.setViewBox.apply(this,this._viewBox),this},c._engine.create=function(){var a=c._getContainer.apply(0,arguments),b=a&&a.container,d=a.x,e=a.y,f=a.width,g=a.height;if(!b)throw new Error("SVG container not found.");var h,i=q("svg"),j="overflow:hidden;";return d=d||0,e=e||0,f=f||512,g=g||342,q(i,{height:g,version:1.1,width:f,xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}),1==b?(i.style.cssText=j+"position:absolute;left:"+d+"px;top:"+e+"px",c._g.doc.body.appendChild(i),h=1):(i.style.cssText=j+"position:relative",b.firstChild?b.insertBefore(i,b.firstChild):b.appendChild(i)),b=new c._Paper,b.width=f,b.height=g,b.canvas=i,b.clear(),b._left=b._top=0,h&&(b.renderfix=function(){}),b.renderfix(),b},c._engine.setViewBox=function(a,b,c,d,e){k("raphael.setViewBox",this,this._viewBox,[a,b,c,d,e]);var f,h,i=this.getSize(),j=g(c/i.width,d/i.height),l=this.top,n=e?"xMidYMid meet":"xMinYMin";for(null==a?(this._vbSize&&(j=1),delete this._vbSize,f="0 0 "+this.width+m+this.height):(this._vbSize=j,f=a+m+b+m+c+m+d),q(this.canvas,{viewBox:f,preserveAspectRatio:n});j&&l;)h="stroke-width"in l.attrs?l.attrs["stroke-width"]:1,l.attr({"stroke-width":h}),l._.dirty=1,l._.dirtyT=1,l=l.prev;return this._viewBox=[a,b,c,d,!!e],this},c.prototype.renderfix=function(){var a,b=this.canvas,c=b.style;try{a=b.getScreenCTM()||b.createSVGMatrix()}catch(d){a=b.createSVGMatrix()}var e=-a.e%1,f=-a.f%1;(e||f)&&(e&&(this._left=(this._left+e)%1,c.left=this._left+"px"),f&&(this._top=(this._top+f)%1,c.top=this._top+"px"))},c.prototype.clear=function(){c.eve("raphael.clear",this);for(var a=this.canvas;a.firstChild;)a.removeChild(a.firstChild);this.bottom=this.top=null,(this.desc=q("desc")).appendChild(c._g.doc.createTextNode("Created with Raphaël "+c.version)),a.appendChild(this.desc),a.appendChild(this.defs=q("defs"))},c.prototype.remove=function(){k("raphael.remove",this),this.canvas.parentNode&&this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null};var C=c.st;for(var D in B)B[a](D)&&!C[a](D)&&(C[D]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(D))}}(),function(){if(c.vml){var a="hasOwnProperty",b=String,d=parseFloat,e=Math,f=e.round,g=e.max,h=e.min,i=e.abs,j="fill",k=/[, ]+/,l=c.eve,m=" progid:DXImageTransform.Microsoft",n=" ",o="",p={M:"m",L:"l",C:"c",Z:"x",m:"t",l:"r",c:"v",z:"x"},q=/([clmz]),?([^clmz]*)/gi,r=/ progid:\S+Blur\([^\)]+\)/g,s=/-?[^,\s-]+/g,t="position:absolute;left:0;top:0;width:1px;height:1px;behavior:url(#default#VML)",u=21600,v={path:1,rect:1,image:1},w={circle:1,ellipse:1},x=function(a){var d=/[ahqstv]/gi,e=c._pathToAbsolute;if(b(a).match(d)&&(e=c._path2curve),d=/[clmz]/g,e==c._pathToAbsolute&&!b(a).match(d)){var g=b(a).replace(q,function(a,b,c){var d=[],e="m"==b.toLowerCase(),g=p[b];return c.replace(s,function(a){e&&2==d.length&&(g+=d+p["m"==b?"l":"L"],d=[]),d.push(f(a*u))}),g+d});return g}var h,i,j=e(a);g=[];for(var k=0,l=j.length;l>k;k++){h=j[k],i=j[k][0].toLowerCase(),"z"==i&&(i="x");for(var m=1,r=h.length;r>m;m++)i+=f(h[m]*u)+(m!=r-1?",":o);g.push(i)}return g.join(n)},y=function(a,b,d){var e=c.matrix();return e.rotate(-a,.5,.5),{dx:e.x(b,d),dy:e.y(b,d)}},z=function(a,b,c,d,e,f){var g=a._,h=a.matrix,k=g.fillpos,l=a.node,m=l.style,o=1,p="",q=u/b,r=u/c;if(m.visibility="hidden",b&&c){if(l.coordsize=i(q)+n+i(r),m.rotation=f*(0>b*c?-1:1),f){var s=y(f,d,e);d=s.dx,e=s.dy}if(0>b&&(p+="x"),0>c&&(p+=" y")&&(o=-1),m.flip=p,l.coordorigin=d*-q+n+e*-r,k||g.fillsize){var t=l.getElementsByTagName(j);t=t&&t[0],l.removeChild(t),k&&(s=y(f,h.x(k[0],k[1]),h.y(k[0],k[1])),t.position=s.dx*o+n+s.dy*o),g.fillsize&&(t.size=g.fillsize[0]*i(b)+n+g.fillsize[1]*i(c)),l.appendChild(t)}m.visibility="visible"}};c.toString=function(){return"Your browser doesn’t support SVG. Falling down to VML.\nYou are running Raphaël "+this.version};var A=function(a,c,d){for(var e=b(c).toLowerCase().split("-"),f=d?"end":"start",g=e.length,h="classic",i="medium",j="medium";g--;)switch(e[g]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":h=e[g];break;case"wide":case"narrow":j=e[g];break;case"long":case"short":i=e[g]}var k=a.node.getElementsByTagName("stroke")[0];k[f+"arrow"]=h,k[f+"arrowlength"]=i,k[f+"arrowwidth"]=j},B=function(e,i){e.attrs=e.attrs||{};var l=e.node,m=e.attrs,p=l.style,q=v[e.type]&&(i.x!=m.x||i.y!=m.y||i.width!=m.width||i.height!=m.height||i.cx!=m.cx||i.cy!=m.cy||i.rx!=m.rx||i.ry!=m.ry||i.r!=m.r),r=w[e.type]&&(m.cx!=i.cx||m.cy!=i.cy||m.r!=i.r||m.rx!=i.rx||m.ry!=i.ry),s=e;for(var t in i)i[a](t)&&(m[t]=i[t]);if(q&&(m.path=c._getPath[e.type](e),e._.dirty=1),i.href&&(l.href=i.href),i.title&&(l.title=i.title),i.target&&(l.target=i.target),i.cursor&&(p.cursor=i.cursor),"blur"in i&&e.blur(i.blur),(i.path&&"path"==e.type||q)&&(l.path=x(~b(m.path).toLowerCase().indexOf("r")?c._pathToAbsolute(m.path):m.path),e._.dirty=1,"image"==e.type&&(e._.fillpos=[m.x,m.y],e._.fillsize=[m.width,m.height],z(e,1,1,0,0,0))),"transform"in i&&e.transform(i.transform),r){var y=+m.cx,B=+m.cy,D=+m.rx||+m.r||0,E=+m.ry||+m.r||0;l.path=c.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",f((y-D)*u),f((B-E)*u),f((y+D)*u),f((B+E)*u),f(y*u)),e._.dirty=1}if("clip-rect"in i){var G=b(i["clip-rect"]).split(k);if(4==G.length){G[2]=+G[2]+ +G[0],G[3]=+G[3]+ +G[1];var H=l.clipRect||c._g.doc.createElement("div"),I=H.style;I.clip=c.format("rect({1}px {2}px {3}px {0}px)",G),l.clipRect||(I.position="absolute",I.top=0,I.left=0,I.width=e.paper.width+"px",I.height=e.paper.height+"px",l.parentNode.insertBefore(H,l),H.appendChild(l),l.clipRect=H)}i["clip-rect"]||l.clipRect&&(l.clipRect.style.clip="auto")}if(e.textpath){var J=e.textpath.style;i.font&&(J.font=i.font),i["font-family"]&&(J.fontFamily='"'+i["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,o)+'"'),i["font-size"]&&(J.fontSize=i["font-size"]),i["font-weight"]&&(J.fontWeight=i["font-weight"]),i["font-style"]&&(J.fontStyle=i["font-style"])}if("arrow-start"in i&&A(s,i["arrow-start"]),"arrow-end"in i&&A(s,i["arrow-end"],1),null!=i.opacity||null!=i["stroke-width"]||null!=i.fill||null!=i.src||null!=i.stroke||null!=i["stroke-width"]||null!=i["stroke-opacity"]||null!=i["fill-opacity"]||null!=i["stroke-dasharray"]||null!=i["stroke-miterlimit"]||null!=i["stroke-linejoin"]||null!=i["stroke-linecap"]){var K=l.getElementsByTagName(j),L=!1;if(K=K&&K[0],!K&&(L=K=F(j)),"image"==e.type&&i.src&&(K.src=i.src),i.fill&&(K.on=!0),(null==K.on||"none"==i.fill||null===i.fill)&&(K.on=!1),K.on&&i.fill){var M=b(i.fill).match(c._ISURL);if(M){K.parentNode==l&&l.removeChild(K),K.rotate=!0,K.src=M[1],K.type="tile";var N=e.getBBox(1);K.position=N.x+n+N.y,e._.fillpos=[N.x,N.y],c._preload(M[1],function(){e._.fillsize=[this.offsetWidth,this.offsetHeight]})}else K.color=c.getRGB(i.fill).hex,K.src=o,K.type="solid",c.getRGB(i.fill).error&&(s.type in{circle:1,ellipse:1}||"r"!=b(i.fill).charAt())&&C(s,i.fill,K)&&(m.fill="none",m.gradient=i.fill,K.rotate=!1)}if("fill-opacity"in i||"opacity"in i){var O=((+m["fill-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+c.getRGB(i.fill).o+1||2)-1);O=h(g(O,0),1),K.opacity=O,K.src&&(K.color="none")}l.appendChild(K);var P=l.getElementsByTagName("stroke")&&l.getElementsByTagName("stroke")[0],Q=!1;!P&&(Q=P=F("stroke")),(i.stroke&&"none"!=i.stroke||i["stroke-width"]||null!=i["stroke-opacity"]||i["stroke-dasharray"]||i["stroke-miterlimit"]||i["stroke-linejoin"]||i["stroke-linecap"])&&(P.on=!0),("none"==i.stroke||null===i.stroke||null==P.on||0==i.stroke||0==i["stroke-width"])&&(P.on=!1);var R=c.getRGB(i.stroke);P.on&&i.stroke&&(P.color=R.hex),O=((+m["stroke-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+R.o+1||2)-1);var S=.75*(d(i["stroke-width"])||1);if(O=h(g(O,0),1),null==i["stroke-width"]&&(S=m["stroke-width"]),i["stroke-width"]&&(P.weight=S),S&&1>S&&(O*=S)&&(P.weight=1),P.opacity=O,i["stroke-linejoin"]&&(P.joinstyle=i["stroke-linejoin"]||"miter"),P.miterlimit=i["stroke-miterlimit"]||8,i["stroke-linecap"]&&(P.endcap="butt"==i["stroke-linecap"]?"flat":"square"==i["stroke-linecap"]?"square":"round"),"stroke-dasharray"in i){var T={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"};P.dashstyle=T[a](i["stroke-dasharray"])?T[i["stroke-dasharray"]]:o}Q&&l.appendChild(P)}if("text"==s.type){s.paper.canvas.style.display=o;var U=s.paper.span,V=100,W=m.font&&m.font.match(/\d+(?:\.\d*)?(?=px)/);p=U.style,m.font&&(p.font=m.font),m["font-family"]&&(p.fontFamily=m["font-family"]),m["font-weight"]&&(p.fontWeight=m["font-weight"]),m["font-style"]&&(p.fontStyle=m["font-style"]),W=d(m["font-size"]||W&&W[0])||10,p.fontSize=W*V+"px",s.textpath.string&&(U.innerHTML=b(s.textpath.string).replace(/</g,"&#60;").replace(/&/g,"&#38;").replace(/\n/g,"<br>"));var X=U.getBoundingClientRect();s.W=m.w=(X.right-X.left)/V,s.H=m.h=(X.bottom-X.top)/V,s.X=m.x,s.Y=m.y+s.H/2,("x"in i||"y"in i)&&(s.path.v=c.format("m{0},{1}l{2},{1}",f(m.x*u),f(m.y*u),f(m.x*u)+1));for(var Y=["x","y","text","font","font-family","font-weight","font-style","font-size"],Z=0,$=Y.length;$>Z;Z++)if(Y[Z]in i){s._.dirty=1;break}switch(m["text-anchor"]){case"start":s.textpath.style["v-text-align"]="left",s.bbx=s.W/2;break;case"end":s.textpath.style["v-text-align"]="right",s.bbx=-s.W/2;break;default:s.textpath.style["v-text-align"]="center",s.bbx=0}s.textpath.style["v-text-kern"]=!0}},C=function(a,f,g){a.attrs=a.attrs||{};var h=(a.attrs,Math.pow),i="linear",j=".5 .5";if(a.attrs.gradient=f,f=b(f).replace(c._radial_gradient,function(a,b,c){return i="radial",b&&c&&(b=d(b),c=d(c),h(b-.5,2)+h(c-.5,2)>.25&&(c=e.sqrt(.25-h(b-.5,2))*(2*(c>.5)-1)+.5),j=b+n+c),o}),f=f.split(/\s*\-\s*/),"linear"==i){var k=f.shift();if(k=-d(k),isNaN(k))return null}var l=c._parseDots(f);if(!l)return null;if(a=a.shape||a.node,l.length){a.removeChild(g),g.on=!0,g.method="none",g.color=l[0].color,g.color2=l[l.length-1].color;for(var m=[],p=0,q=l.length;q>p;p++)l[p].offset&&m.push(l[p].offset+n+l[p].color);g.colors=m.length?m.join():"0% "+g.color,"radial"==i?(g.type="gradientTitle",g.focus="100%",g.focussize="0 0",g.focusposition=j,g.angle=0):(g.type="gradient",g.angle=(270-k)%360),a.appendChild(g)}return 1},D=function(a,b){this[0]=this.node=a,a.raphael=!0,this.id=c._oid++,a.raphaelid=this.id,this.X=0,this.Y=0,this.attrs={},this.paper=b,this.matrix=c.matrix(),this._={transform:[],sx:1,sy:1,dx:0,dy:0,deg:0,dirty:1,dirtyT:1},!b.bottom&&(b.bottom=this),this.prev=b.top,b.top&&(b.top.next=this),b.top=this,this.next=null},E=c.el;D.prototype=E,E.constructor=D,E.transform=function(a){if(null==a)return this._.transform;var d,e=this.paper._viewBoxShift,f=e?"s"+[e.scale,e.scale]+"-1-1t"+[e.dx,e.dy]:o;e&&(d=a=b(a).replace(/\.{3}|\u2026/g,this._.transform||o)),c._extractTransform(this,f+a);var g,h=this.matrix.clone(),i=this.skew,j=this.node,k=~b(this.attrs.fill).indexOf("-"),l=!b(this.attrs.fill).indexOf("url(");if(h.translate(1,1),l||k||"image"==this.type)if(i.matrix="1 0 0 1",i.offset="0 0",g=h.split(),k&&g.noRotation||!g.isSimple){j.style.filter=h.toFilter();var m=this.getBBox(),p=this.getBBox(1),q=m.x-p.x,r=m.y-p.y;j.coordorigin=q*-u+n+r*-u,z(this,1,1,q,r,0)}else j.style.filter=o,z(this,g.scalex,g.scaley,g.dx,g.dy,g.rotate);else j.style.filter=o,i.matrix=b(h),i.offset=h.offset();return null!==d&&(this._.transform=d,c._extractTransform(this,d)),this},E.rotate=function(a,c,e){if(this.removed)return this;if(null!=a){if(a=b(a).split(k),a.length-1&&(c=d(a[1]),e=d(a[2])),a=d(a[0]),null==e&&(c=e),null==c||null==e){var f=this.getBBox(1);c=f.x+f.width/2,e=f.y+f.height/2}return this._.dirtyT=1,this.transform(this._.transform.concat([["r",a,c,e]])),this}},E.translate=function(a,c){return this.removed?this:(a=b(a).split(k),a.length-1&&(c=d(a[1])),a=d(a[0])||0,c=+c||0,this._.bbox&&(this._.bbox.x+=a,this._.bbox.y+=c),this.transform(this._.transform.concat([["t",a,c]])),this)},E.scale=function(a,c,e,f){if(this.removed)return this;if(a=b(a).split(k),a.length-1&&(c=d(a[1]),e=d(a[2]),f=d(a[3]),isNaN(e)&&(e=null),isNaN(f)&&(f=null)),a=d(a[0]),null==c&&(c=a),null==f&&(e=f),null==e||null==f)var g=this.getBBox(1);return e=null==e?g.x+g.width/2:e,f=null==f?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,c,e,f]])),this._.dirtyT=1,this},E.hide=function(){return!this.removed&&(this.node.style.display="none"),this},E.show=function(){return!this.removed&&(this.node.style.display=o),this},E.auxGetBBox=c.el.getBBox,E.getBBox=function(){var a=this.auxGetBBox();if(this.paper&&this.paper._viewBoxShift){var b={},c=1/this.paper._viewBoxShift.scale;return b.x=a.x-this.paper._viewBoxShift.dx,b.x*=c,b.y=a.y-this.paper._viewBoxShift.dy,b.y*=c,b.width=a.width*c,b.height=a.height*c,b.x2=b.x+b.width,b.y2=b.y+b.height,b}return a},E._getBBox=function(){return this.removed?{}:{x:this.X+(this.bbx||0)-this.W/2,y:this.Y-this.H,width:this.W,height:this.H}},E.remove=function(){if(!this.removed&&this.node.parentNode){this.paper.__set__&&this.paper.__set__.exclude(this),c.eve.unbind("raphael.*.*."+this.id),c._tear(this,this.paper),this.node.parentNode.removeChild(this.node),this.shape&&this.shape.parentNode.removeChild(this.shape);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null;this.removed=!0}},E.attr=function(b,d){if(this.removed)return this;if(null==b){var e={};for(var f in this.attrs)this.attrs[a](f)&&(e[f]=this.attrs[f]);return e.gradient&&"none"==e.fill&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform,e}if(null==d&&c.is(b,"string")){if(b==j&&"none"==this.attrs.fill&&this.attrs.gradient)return this.attrs.gradient;for(var g=b.split(k),h={},i=0,m=g.length;m>i;i++)b=g[i],h[b]=b in this.attrs?this.attrs[b]:c.is(this.paper.customAttributes[b],"function")?this.paper.customAttributes[b].def:c._availableAttrs[b];return m-1?h:h[g[0]]}if(this.attrs&&null==d&&c.is(b,"array")){for(h={},i=0,m=b.length;m>i;i++)h[b[i]]=this.attr(b[i]);return h}var n;null!=d&&(n={},n[b]=d),null==d&&c.is(b,"object")&&(n=b);for(var o in n)l("raphael.attr."+o+"."+this.id,this,n[o]);if(n){for(o in this.paper.customAttributes)if(this.paper.customAttributes[a](o)&&n[a](o)&&c.is(this.paper.customAttributes[o],"function")){var p=this.paper.customAttributes[o].apply(this,[].concat(n[o]));this.attrs[o]=n[o];for(var q in p)p[a](q)&&(n[q]=p[q])}n.text&&"text"==this.type&&(this.textpath.string=n.text),B(this,n)}return this},E.toFront=function(){return!this.removed&&this.node.parentNode.appendChild(this.node),this.paper&&this.paper.top!=this&&c._tofront(this,this.paper),this},E.toBack=function(){return this.removed?this:(this.node.parentNode.firstChild!=this.node&&(this.node.parentNode.insertBefore(this.node,this.node.parentNode.firstChild),c._toback(this,this.paper)),this)},E.insertAfter=function(a){return this.removed?this:(a.constructor==c.st.constructor&&(a=a[a.length-1]),a.node.nextSibling?a.node.parentNode.insertBefore(this.node,a.node.nextSibling):a.node.parentNode.appendChild(this.node),c._insertafter(this,a,this.paper),this)},E.insertBefore=function(a){return this.removed?this:(a.constructor==c.st.constructor&&(a=a[0]),a.node.parentNode.insertBefore(this.node,a.node),c._insertbefore(this,a,this.paper),this)},E.blur=function(a){var b=this.node.runtimeStyle,d=b.filter;return d=d.replace(r,o),0!==+a?(this.attrs.blur=a,b.filter=d+n+m+".Blur(pixelradius="+(+a||1.5)+")",b.margin=c.format("-{0}px 0 0 -{0}px",f(+a||1.5))):(b.filter=d,b.margin=0,delete this.attrs.blur),this},c._engine.path=function(a,b){var c=F("shape");c.style.cssText=t,c.coordsize=u+n+u,c.coordorigin=b.coordorigin;var d=new D(c,b),e={fill:"none",stroke:"#000"};a&&(e.path=a),d.type="path",d.path=[],d.Path=o,B(d,e),b.canvas.appendChild(c);var f=F("skew");return f.on=!0,c.appendChild(f),d.skew=f,d.transform(o),d},c._engine.rect=function(a,b,d,e,f,g){var h=c._rectPath(b,d,e,f,g),i=a.path(h),j=i.attrs;return i.X=j.x=b,i.Y=j.y=d,i.W=j.width=e,i.H=j.height=f,j.r=g,j.path=h,i.type="rect",i},c._engine.ellipse=function(a,b,c,d,e){{var f=a.path();f.attrs}return f.X=b-d,f.Y=c-e,f.W=2*d,f.H=2*e,f.type="ellipse",B(f,{cx:b,cy:c,rx:d,ry:e}),f},c._engine.circle=function(a,b,c,d){{var e=a.path();e.attrs}return e.X=b-d,e.Y=c-d,e.W=e.H=2*d,e.type="circle",B(e,{cx:b,cy:c,r:d}),e},c._engine.image=function(a,b,d,e,f,g){var h=c._rectPath(d,e,f,g),i=a.path(h).attr({stroke:"none"}),k=i.attrs,l=i.node,m=l.getElementsByTagName(j)[0];return k.src=b,i.X=k.x=d,i.Y=k.y=e,i.W=k.width=f,i.H=k.height=g,k.path=h,i.type="image",m.parentNode==l&&l.removeChild(m),m.rotate=!0,m.src=b,m.type="tile",i._.fillpos=[d,e],i._.fillsize=[f,g],l.appendChild(m),z(i,1,1,0,0,0),i},c._engine.text=function(a,d,e,g){var h=F("shape"),i=F("path"),j=F("textpath");d=d||0,e=e||0,g=g||"",i.v=c.format("m{0},{1}l{2},{1}",f(d*u),f(e*u),f(d*u)+1),i.textpathok=!0,j.string=b(g),j.on=!0,h.style.cssText=t,h.coordsize=u+n+u,h.coordorigin="0 0";var k=new D(h,a),l={fill:"#000",stroke:"none",font:c._availableAttrs.font,text:g};k.shape=h,k.path=i,k.textpath=j,k.type="text",k.attrs.text=b(g),k.attrs.x=d,k.attrs.y=e,k.attrs.w=1,k.attrs.h=1,B(k,l),h.appendChild(j),h.appendChild(i),a.canvas.appendChild(h);var m=F("skew");return m.on=!0,h.appendChild(m),k.skew=m,k.transform(o),k},c._engine.setSize=function(a,b){var d=this.canvas.style;return this.width=a,this.height=b,a==+a&&(a+="px"),b==+b&&(b+="px"),d.width=a,d.height=b,d.clip="rect(0 "+a+" "+b+" 0)",this._viewBox&&c._engine.setViewBox.apply(this,this._viewBox),this},c._engine.setViewBox=function(a,b,d,e,f){c.eve("raphael.setViewBox",this,this._viewBox,[a,b,d,e,f]);var g,h,i=this.getSize(),j=i.width,k=i.height;return f&&(g=k/e,h=j/d,j>d*g&&(a-=(j-d*g)/2/g),k>e*h&&(b-=(k-e*h)/2/h)),this._viewBox=[a,b,d,e,!!f],this._viewBoxShift={dx:-a,dy:-b,scale:i},this.forEach(function(a){a.transform("...")}),this};var F;c._engine.initWin=function(a){var b=a.document;b.styleSheets.length<31?b.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)"):b.styleSheets[0].addRule(".rvml","behavior:url(#default#VML)");try{!b.namespaces.rvml&&b.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),F=function(a){return b.createElement("<rvml:"+a+' class="rvml">')}}catch(c){F=function(a){return b.createElement("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},c._engine.initWin(c._g.win),c._engine.create=function(){var a=c._getContainer.apply(0,arguments),b=a.container,d=a.height,e=a.width,f=a.x,g=a.y;if(!b)throw new Error("VML container not found.");var h=new c._Paper,i=h.canvas=c._g.doc.createElement("div"),j=i.style;return f=f||0,g=g||0,e=e||512,d=d||342,h.width=e,h.height=d,e==+e&&(e+="px"),d==+d&&(d+="px"),h.coordsize=1e3*u+n+1e3*u,h.coordorigin="0 0",h.span=c._g.doc.createElement("span"),h.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",i.appendChild(h.span),j.cssText=c.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",e,d),1==b?(c._g.doc.body.appendChild(i),j.left=f+"px",j.top=g+"px",j.position="absolute"):b.firstChild?b.insertBefore(i,b.firstChild):b.appendChild(i),h.renderfix=function(){},h},c.prototype.clear=function(){c.eve("raphael.clear",this),this.canvas.innerHTML=o,this.span=c._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},c.prototype.remove=function(){c.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null;return!0};var G=c.st;for(var H in E)E[a](H)&&!G[a](H)&&(G[H]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(H))}}(),B.was?A.win.Raphael=c:Raphael=c,"object"==typeof exports&&(module.exports=c),c}); if(!document.createElement("canvas").getContext){(function(){var ab=Math;var n=ab.round;var l=ab.sin;var A=ab.cos;var H=ab.abs;var N=ab.sqrt;var d=10;var f=d/2;var z=+navigator.userAgent.match(/MSIE ([\d.]+)?/)[1];function y(){return this.context_||(this.context_=new D(this))}var t=Array.prototype.slice;function g(j,m,p){var i=t.call(arguments,2);return function(){return j.apply(m,i.concat(t.call(arguments)))}}function af(i){return String(i).replace(/&/g,"&amp;").replace(/"/g,"&quot;")}function Y(m,j,i){if(!m.namespaces[j]){m.namespaces.add(j,i,"#default#VML")}}function R(j){Y(j,"g_vml_","urn:schemas-microsoft-com:vml");Y(j,"g_o_","urn:schemas-microsoft-com:office:office");if(!j.styleSheets.ex_canvas_){var i=j.createStyleSheet();i.owningElement.id="ex_canvas_";i.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}R(document);var e={init:function(i){var j=i||document;j.createElement("canvas");j.attachEvent("onreadystatechange",g(this.init_,this,j))},init_:function(p){var m=p.getElementsByTagName("canvas");for(var j=0;j<m.length;j++){this.initElement(m[j])}},initElement:function(j){if(!j.getContext){j.getContext=y;R(j.ownerDocument);j.innerHTML="";j.attachEvent("onpropertychange",x);j.attachEvent("onresize",W);var i=j.attributes;if(i.width&&i.width.specified){j.style.width=i.width.nodeValue+"px"}else{j.width=j.clientWidth}if(i.height&&i.height.specified){j.style.height=i.height.nodeValue+"px"}else{j.height=j.clientHeight}}return j}};function x(j){var i=j.srcElement;switch(j.propertyName){case"width":i.getContext().clearRect();i.style.width=i.attributes.width.nodeValue+"px";i.firstChild.style.width=i.clientWidth+"px";break;case"height":i.getContext().clearRect();i.style.height=i.attributes.height.nodeValue+"px";i.firstChild.style.height=i.clientHeight+"px";break}}function W(j){var i=j.srcElement;if(i.firstChild){i.firstChild.style.width=i.clientWidth+"px";i.firstChild.style.height=i.clientHeight+"px"}}e.init();var k=[];for(var ae=0;ae<16;ae++){for(var ad=0;ad<16;ad++){k[ae*16+ad]=ae.toString(16)+ad.toString(16)}}function B(){return[[1,0,0],[0,1,0],[0,0,1]]}function J(p,m){var j=B();for(var i=0;i<3;i++){for(var ah=0;ah<3;ah++){var Z=0;for(var ag=0;ag<3;ag++){Z+=p[i][ag]*m[ag][ah]}j[i][ah]=Z}}return j}function v(j,i){i.fillStyle=j.fillStyle;i.lineCap=j.lineCap;i.lineJoin=j.lineJoin;i.lineWidth=j.lineWidth;i.miterLimit=j.miterLimit;i.shadowBlur=j.shadowBlur;i.shadowColor=j.shadowColor;i.shadowOffsetX=j.shadowOffsetX;i.shadowOffsetY=j.shadowOffsetY;i.strokeStyle=j.strokeStyle;i.globalAlpha=j.globalAlpha;i.font=j.font;i.textAlign=j.textAlign;i.textBaseline=j.textBaseline;i.arcScaleX_=j.arcScaleX_;i.arcScaleY_=j.arcScaleY_;i.lineScale_=j.lineScale_}var b={aliceblue:"#F0F8FF",antiquewhite:"#FAEBD7",aquamarine:"#7FFFD4",azure:"#F0FFFF",beige:"#F5F5DC",bisque:"#FFE4C4",black:"#000000",blanchedalmond:"#FFEBCD",blueviolet:"#8A2BE2",brown:"#A52A2A",burlywood:"#DEB887",cadetblue:"#5F9EA0",chartreuse:"#7FFF00",chocolate:"#D2691E",coral:"#FF7F50",cornflowerblue:"#6495ED",cornsilk:"#FFF8DC",crimson:"#DC143C",cyan:"#00FFFF",darkblue:"#00008B",darkcyan:"#008B8B",darkgoldenrod:"#B8860B",darkgray:"#A9A9A9",darkgreen:"#006400",darkgrey:"#A9A9A9",darkkhaki:"#BDB76B",darkmagenta:"#8B008B",darkolivegreen:"#556B2F",darkorange:"#FF8C00",darkorchid:"#9932CC",darkred:"#8B0000",darksalmon:"#E9967A",darkseagreen:"#8FBC8F",darkslateblue:"#483D8B",darkslategray:"#2F4F4F",darkslategrey:"#2F4F4F",darkturquoise:"#00CED1",darkviolet:"#9400D3",deeppink:"#FF1493",deepskyblue:"#00BFFF",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1E90FF",firebrick:"#B22222",floralwhite:"#FFFAF0",forestgreen:"#228B22",gainsboro:"#DCDCDC",ghostwhite:"#F8F8FF",gold:"#FFD700",goldenrod:"#DAA520",grey:"#808080",greenyellow:"#ADFF2F",honeydew:"#F0FFF0",hotpink:"#FF69B4",indianred:"#CD5C5C",indigo:"#4B0082",ivory:"#FFFFF0",khaki:"#F0E68C",lavender:"#E6E6FA",lavenderblush:"#FFF0F5",lawngreen:"#7CFC00",lemonchiffon:"#FFFACD",lightblue:"#ADD8E6",lightcoral:"#F08080",lightcyan:"#E0FFFF",lightgoldenrodyellow:"#FAFAD2",lightgreen:"#90EE90",lightgrey:"#D3D3D3",lightpink:"#FFB6C1",lightsalmon:"#FFA07A",lightseagreen:"#20B2AA",lightskyblue:"#87CEFA",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#B0C4DE",lightyellow:"#FFFFE0",limegreen:"#32CD32",linen:"#FAF0E6",magenta:"#FF00FF",mediumaquamarine:"#66CDAA",mediumblue:"#0000CD",mediumorchid:"#BA55D3",mediumpurple:"#9370DB",mediumseagreen:"#3CB371",mediumslateblue:"#7B68EE",mediumspringgreen:"#00FA9A",mediumturquoise:"#48D1CC",mediumvioletred:"#C71585",midnightblue:"#191970",mintcream:"#F5FFFA",mistyrose:"#FFE4E1",moccasin:"#FFE4B5",navajowhite:"#FFDEAD",oldlace:"#FDF5E6",olivedrab:"#6B8E23",orange:"#FFA500",orangered:"#FF4500",orchid:"#DA70D6",palegoldenrod:"#EEE8AA",palegreen:"#98FB98",paleturquoise:"#AFEEEE",palevioletred:"#DB7093",papayawhip:"#FFEFD5",peachpuff:"#FFDAB9",peru:"#CD853F",pink:"#FFC0CB",plum:"#DDA0DD",powderblue:"#B0E0E6",rosybrown:"#BC8F8F",royalblue:"#4169E1",saddlebrown:"#8B4513",salmon:"#FA8072",sandybrown:"#F4A460",seagreen:"#2E8B57",seashell:"#FFF5EE",sienna:"#A0522D",skyblue:"#87CEEB",slateblue:"#6A5ACD",slategray:"#708090",slategrey:"#708090",snow:"#FFFAFA",springgreen:"#00FF7F",steelblue:"#4682B4",tan:"#D2B48C",thistle:"#D8BFD8",tomato:"#FF6347",turquoise:"#40E0D0",violet:"#EE82EE",wheat:"#F5DEB3",whitesmoke:"#F5F5F5",yellowgreen:"#9ACD32"};function M(j){var p=j.indexOf("(",3);var i=j.indexOf(")",p+1);var m=j.substring(p+1,i).split(",");if(m.length!=4||j.charAt(3)!="a"){m[3]=1}return m}function c(i){return parseFloat(i)/100}function r(j,m,i){return Math.min(i,Math.max(m,j))}function I(ag){var i,ai,aj,ah,ak,Z;ah=parseFloat(ag[0])/360%360;if(ah<0){ah++}ak=r(c(ag[1]),0,1);Z=r(c(ag[2]),0,1);if(ak==0){i=ai=aj=Z}else{var j=Z<0.5?Z*(1+ak):Z+ak-Z*ak;var m=2*Z-j;i=a(m,j,ah+1/3);ai=a(m,j,ah);aj=a(m,j,ah-1/3)}return"#"+k[Math.floor(i*255)]+k[Math.floor(ai*255)]+k[Math.floor(aj*255)]}function a(j,i,m){if(m<0){m++}if(m>1){m--}if(6*m<1){return j+(i-j)*6*m}else{if(2*m<1){return i}else{if(3*m<2){return j+(i-j)*(2/3-m)*6}else{return j}}}}var C={};function F(j){if(j in C){return C[j]}var ag,Z=1;j=String(j);if(j.charAt(0)=="#"){ag=j}else{if(/^rgb/.test(j)){var p=M(j);var ag="#",ah;for(var m=0;m<3;m++){if(p[m].indexOf("%")!=-1){ah=Math.floor(c(p[m])*255)}else{ah=+p[m]}ag+=k[r(ah,0,255)]}Z=+p[3]}else{if(/^hsl/.test(j)){var p=M(j);ag=I(p);Z=p[3]}else{ag=b[j]||j}}}return C[j]={color:ag,alpha:Z}}var o={style:"normal",variant:"normal",weight:"normal",size:10,family:"sans-serif"};var L={};function E(i){if(L[i]){return L[i]}var p=document.createElement("div");var m=p.style;try{m.font=i}catch(j){}return L[i]={style:m.fontStyle||o.style,variant:m.fontVariant||o.variant,weight:m.fontWeight||o.weight,size:m.fontSize||o.size,family:m.fontFamily||o.family}}function u(m,j){var i={};for(var ah in m){i[ah]=m[ah]}var ag=parseFloat(j.currentStyle.fontSize),Z=parseFloat(m.size);if(typeof m.size=="number"){i.size=m.size}else{if(m.size.indexOf("px")!=-1){i.size=Z}else{if(m.size.indexOf("em")!=-1){i.size=ag*Z}else{if(m.size.indexOf("%")!=-1){i.size=(ag/100)*Z}else{if(m.size.indexOf("pt")!=-1){i.size=Z/0.75}else{i.size=ag}}}}}i.size*=0.981;return i}function ac(i){return i.style+" "+i.variant+" "+i.weight+" "+i.size+"px "+i.family}var s={butt:"flat",round:"round"};function S(i){return s[i]||"square"}function D(i){this.m_=B();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.strokeStyle="#000";this.fillStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=d*1;this.globalAlpha=1;this.font="10px sans-serif";this.textAlign="left";this.textBaseline="alphabetic";this.canvas=i;var m="width:"+i.clientWidth+"px;height:"+i.clientHeight+"px;overflow:hidden;position:absolute";var j=i.ownerDocument.createElement("div");j.style.cssText=m;i.appendChild(j);var p=j.cloneNode(false);p.style.backgroundColor="red";p.style.filter="alpha(opacity=0)";i.appendChild(p);this.element_=j;this.arcScaleX_=1;this.arcScaleY_=1;this.lineScale_=1}var q=D.prototype;q.clearRect=function(){if(this.textMeasureEl_){this.textMeasureEl_.removeNode(true);this.textMeasureEl_=null}this.element_.innerHTML=""};q.beginPath=function(){this.currentPath_=[]};q.moveTo=function(j,i){var m=V(this,j,i);this.currentPath_.push({type:"moveTo",x:m.x,y:m.y});this.currentX_=m.x;this.currentY_=m.y};q.lineTo=function(j,i){var m=V(this,j,i);this.currentPath_.push({type:"lineTo",x:m.x,y:m.y});this.currentX_=m.x;this.currentY_=m.y};q.bezierCurveTo=function(m,j,ak,aj,ai,ag){var i=V(this,ai,ag);var ah=V(this,m,j);var Z=V(this,ak,aj);K(this,ah,Z,i)};function K(i,Z,m,j){i.currentPath_.push({type:"bezierCurveTo",cp1x:Z.x,cp1y:Z.y,cp2x:m.x,cp2y:m.y,x:j.x,y:j.y});i.currentX_=j.x;i.currentY_=j.y}q.quadraticCurveTo=function(ai,m,j,i){var ah=V(this,ai,m);var ag=V(this,j,i);var aj={x:this.currentX_+2/3*(ah.x-this.currentX_),y:this.currentY_+2/3*(ah.y-this.currentY_)};var Z={x:aj.x+(ag.x-this.currentX_)/3,y:aj.y+(ag.y-this.currentY_)/3};K(this,aj,Z,ag)};q.arc=function(al,aj,ak,ag,j,m){ak*=d;var ap=m?"at":"wa";var am=al+A(ag)*ak-f;var ao=aj+l(ag)*ak-f;var i=al+A(j)*ak-f;var an=aj+l(j)*ak-f;if(am==i&&!m){am+=0.125}var Z=V(this,al,aj);var ai=V(this,am,ao);var ah=V(this,i,an);this.currentPath_.push({type:ap,x:Z.x,y:Z.y,radius:ak,xStart:ai.x,yStart:ai.y,xEnd:ah.x,yEnd:ah.y})};q.rect=function(m,j,i,p){this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);this.lineTo(m,j+p);this.closePath()};q.strokeRect=function(m,j,i,p){var Z=this.currentPath_;this.beginPath();this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);this.lineTo(m,j+p);this.closePath();this.stroke();this.currentPath_=Z};q.fillRect=function(m,j,i,p){var Z=this.currentPath_;this.beginPath();this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);this.lineTo(m,j+p);this.closePath();this.fill();this.currentPath_=Z};q.createLinearGradient=function(j,p,i,m){var Z=new U("gradient");Z.x0_=j;Z.y0_=p;Z.x1_=i;Z.y1_=m;return Z};q.createRadialGradient=function(p,ag,m,j,Z,i){var ah=new U("gradientradial");ah.x0_=p;ah.y0_=ag;ah.r0_=m;ah.x1_=j;ah.y1_=Z;ah.r1_=i;return ah};q.drawImage=function(aq,m){var aj,ah,al,ay,ao,am,at,aA;var ak=aq.runtimeStyle.width;var ap=aq.runtimeStyle.height;aq.runtimeStyle.width="auto";aq.runtimeStyle.height="auto";var ai=aq.width;var aw=aq.height;aq.runtimeStyle.width=ak;aq.runtimeStyle.height=ap;if(arguments.length==3){aj=arguments[1];ah=arguments[2];ao=am=0;at=al=ai;aA=ay=aw}else{if(arguments.length==5){aj=arguments[1];ah=arguments[2];al=arguments[3];ay=arguments[4];ao=am=0;at=ai;aA=aw}else{if(arguments.length==9){ao=arguments[1];am=arguments[2];at=arguments[3];aA=arguments[4];aj=arguments[5];ah=arguments[6];al=arguments[7];ay=arguments[8]}else{throw Error("Invalid number of arguments")}}}var az=V(this,aj,ah);var p=at/2;var j=aA/2;var ax=[];var i=10;var ag=10;ax.push(" <g_vml_:group",' coordsize="',d*i,",",d*ag,'"',' coordorigin="0,0"',' style="width:',i,"px;height:",ag,"px;position:absolute;");if(this.m_[0][0]!=1||this.m_[0][1]||this.m_[1][1]!=1||this.m_[1][0]){var Z=[];Z.push("M11=",this.m_[0][0],",","M12=",this.m_[1][0],",","M21=",this.m_[0][1],",","M22=",this.m_[1][1],",","Dx=",n(az.x/d),",","Dy=",n(az.y/d),"");var av=az;var au=V(this,aj+al,ah);var ar=V(this,aj,ah+ay);var an=V(this,aj+al,ah+ay);av.x=ab.max(av.x,au.x,ar.x,an.x);av.y=ab.max(av.y,au.y,ar.y,an.y);ax.push("padding:0 ",n(av.x/d),"px ",n(av.y/d),"px 0;filter:progid:DXImageTransform.Microsoft.Matrix(",Z.join(""),", sizingmethod='clip');")}else{ax.push("top:",n(az.y/d),"px;left:",n(az.x/d),"px;")}ax.push(' ">','<g_vml_:image src="',aq.src,'"',' style="width:',d*al,"px;"," height:",d*ay,'px"',' cropleft="',ao/ai,'"',' croptop="',am/aw,'"',' cropright="',(ai-ao-at)/ai,'"',' cropbottom="',(aw-am-aA)/aw,'"'," />","</g_vml_:group>");this.element_.insertAdjacentHTML("BeforeEnd",ax.join(""))};q.stroke=function(ao){var Z=10;var ap=10;var ag=5000;var ai={x:null,y:null};var an={x:null,y:null};for(var aj=0;aj<this.currentPath_.length;aj+=ag){var am=[];var ah=false;am.push("<g_vml_:shape",' filled="',!!ao,'"',' style="position:absolute;width:',Z,"px;height:",ap,'px;"',' coordorigin="0,0"',' coordsize="',d*Z,",",d*ap,'"',' stroked="',!ao,'"',' path="');var aq=false;for(var ak=aj;ak<Math.min(aj+ag,this.currentPath_.length);ak++){if(ak%ag==0&&ak>0){am.push(" m ",n(this.currentPath_[ak-1].x),",",n(this.currentPath_[ak-1].y))}var m=this.currentPath_[ak];var al;switch(m.type){case"moveTo":al=m;am.push(" m ",n(m.x),",",n(m.y));break;case"lineTo":am.push(" l ",n(m.x),",",n(m.y));break;case"close":am.push(" x ");m=null;break;case"bezierCurveTo":am.push(" c ",n(m.cp1x),",",n(m.cp1y),",",n(m.cp2x),",",n(m.cp2y),",",n(m.x),",",n(m.y));break;case"at":case"wa":am.push(" ",m.type," ",n(m.x-this.arcScaleX_*m.radius),",",n(m.y-this.arcScaleY_*m.radius)," ",n(m.x+this.arcScaleX_*m.radius),",",n(m.y+this.arcScaleY_*m.radius)," ",n(m.xStart),",",n(m.yStart)," ",n(m.xEnd),",",n(m.yEnd));break}if(m){if(ai.x==null||m.x<ai.x){ai.x=m.x}if(an.x==null||m.x>an.x){an.x=m.x}if(ai.y==null||m.y<ai.y){ai.y=m.y}if(an.y==null||m.y>an.y){an.y=m.y}}}am.push(' ">');if(!ao){w(this,am)}else{G(this,am,ai,an)}am.push("</g_vml_:shape>");this.element_.insertAdjacentHTML("beforeEnd",am.join(""))}};function w(m,ag){var j=F(m.strokeStyle);var p=j.color;var Z=j.alpha*m.globalAlpha;var i=m.lineScale_*m.lineWidth;if(i<1){Z*=i}ag.push("<g_vml_:stroke",' opacity="',Z,'"',' joinstyle="',m.lineJoin,'"',' miterlimit="',m.miterLimit,'"',' endcap="',S(m.lineCap),'"',' weight="',i,'px"',' color="',p,'" />')}function G(aq,ai,aK,ar){var aj=aq.fillStyle;var aB=aq.arcScaleX_;var aA=aq.arcScaleY_;var j=ar.x-aK.x;var p=ar.y-aK.y;if(aj instanceof U){var an=0;var aF={x:0,y:0};var ax=0;var am=1;if(aj.type_=="gradient"){var al=aj.x0_/aB;var m=aj.y0_/aA;var ak=aj.x1_/aB;var aM=aj.y1_/aA;var aJ=V(aq,al,m);var aI=V(aq,ak,aM);var ag=aI.x-aJ.x;var Z=aI.y-aJ.y;an=Math.atan2(ag,Z)*180/Math.PI;if(an<0){an+=360}if(an<0.000001){an=0}}else{var aJ=V(aq,aj.x0_,aj.y0_);aF={x:(aJ.x-aK.x)/j,y:(aJ.y-aK.y)/p};j/=aB*d;p/=aA*d;var aD=ab.max(j,p);ax=2*aj.r0_/aD;am=2*aj.r1_/aD-ax}var av=aj.colors_;av.sort(function(aN,i){return aN.offset-i.offset});var ap=av.length;var au=av[0].color;var at=av[ap-1].color;var az=av[0].alpha*aq.globalAlpha;var ay=av[ap-1].alpha*aq.globalAlpha;var aE=[];for(var aH=0;aH<ap;aH++){var ao=av[aH];aE.push(ao.offset*am+ax+" "+ao.color)}ai.push('<g_vml_:fill type="',aj.type_,'"',' method="none" focus="100%"',' color="',au,'"',' color2="',at,'"',' colors="',aE.join(","),'"',' opacity="',ay,'"',' g_o_:opacity2="',az,'"',' angle="',an,'"',' focusposition="',aF.x,",",aF.y,'" />')}else{if(aj instanceof T){if(j&&p){var ah=-aK.x;var aC=-aK.y;ai.push("<g_vml_:fill",' position="',ah/j*aB*aB,",",aC/p*aA*aA,'"',' type="tile"',' src="',aj.src_,'" />')}}else{var aL=F(aq.fillStyle);var aw=aL.color;var aG=aL.alpha*aq.globalAlpha;ai.push('<g_vml_:fill color="',aw,'" opacity="',aG,'" />')}}}q.fill=function(){this.stroke(true)};q.closePath=function(){this.currentPath_.push({type:"close"})};function V(j,Z,p){var i=j.m_;return{x:d*(Z*i[0][0]+p*i[1][0]+i[2][0])-f,y:d*(Z*i[0][1]+p*i[1][1]+i[2][1])-f}}q.save=function(){var i={};v(this,i);this.aStack_.push(i);this.mStack_.push(this.m_);this.m_=J(B(),this.m_)};q.restore=function(){if(this.aStack_.length){v(this.aStack_.pop(),this);this.m_=this.mStack_.pop()}};function h(i){return isFinite(i[0][0])&&isFinite(i[0][1])&&isFinite(i[1][0])&&isFinite(i[1][1])&&isFinite(i[2][0])&&isFinite(i[2][1])}function aa(j,i,p){if(!h(i)){return}j.m_=i;if(p){var Z=i[0][0]*i[1][1]-i[0][1]*i[1][0];j.lineScale_=N(H(Z))}}q.translate=function(m,j){var i=[[1,0,0],[0,1,0],[m,j,1]];aa(this,J(i,this.m_),false)};q.rotate=function(j){var p=A(j);var m=l(j);var i=[[p,m,0],[-m,p,0],[0,0,1]];aa(this,J(i,this.m_),false)};q.scale=function(m,j){this.arcScaleX_*=m;this.arcScaleY_*=j;var i=[[m,0,0],[0,j,0],[0,0,1]];aa(this,J(i,this.m_),true)};q.transform=function(Z,p,ah,ag,j,i){var m=[[Z,p,0],[ah,ag,0],[j,i,1]];aa(this,J(m,this.m_),true)};q.setTransform=function(ag,Z,ai,ah,p,j){var i=[[ag,Z,0],[ai,ah,0],[p,j,1]];aa(this,i,true)};q.drawText_=function(am,ak,aj,ap,ai){var ao=this.m_,at=1000,j=0,ar=at,ah={x:0,y:0},ag=[];var i=u(E(this.font),this.element_);var p=ac(i);var au=this.element_.currentStyle;var Z=this.textAlign.toLowerCase();switch(Z){case"left":case"center":case"right":break;case"end":Z=au.direction=="ltr"?"right":"left";break;case"start":Z=au.direction=="rtl"?"right":"left";break;default:Z="left"}switch(this.textBaseline){case"hanging":case"top":ah.y=i.size/1.75;break;case"middle":break;default:case null:case"alphabetic":case"ideographic":case"bottom":ah.y=-i.size/2.25;break}switch(Z){case"right":j=at;ar=0.05;break;case"center":j=ar=at/2;break}var aq=V(this,ak+ah.x,aj+ah.y);ag.push('<g_vml_:line from="',-j,' 0" to="',ar,' 0.05" ',' coordsize="100 100" coordorigin="0 0"',' filled="',!ai,'" stroked="',!!ai,'" style="position:absolute;width:1px;height:1px;">');if(ai){w(this,ag)}else{G(this,ag,{x:-j,y:0},{x:ar,y:i.size})}var an=ao[0][0].toFixed(3)+","+ao[1][0].toFixed(3)+","+ao[0][1].toFixed(3)+","+ao[1][1].toFixed(3)+",0,0";var al=n(aq.x/d)+","+n(aq.y/d);ag.push('<g_vml_:skew on="t" matrix="',an,'" ',' offset="',al,'" origin="',j,' 0" />','<g_vml_:path textpathok="true" />','<g_vml_:textpath on="true" string="',af(am),'" style="v-text-align:',Z,";font:",af(p),'" /></g_vml_:line>');this.element_.insertAdjacentHTML("beforeEnd",ag.join(""))};q.fillText=function(m,i,p,j){this.drawText_(m,i,p,j,false)};q.strokeText=function(m,i,p,j){this.drawText_(m,i,p,j,true)};q.measureText=function(m){if(!this.textMeasureEl_){var i='<span style="position:absolute;top:-20000px;left:0;padding:0;margin:0;border:none;white-space:pre;"></span>';this.element_.insertAdjacentHTML("beforeEnd",i);this.textMeasureEl_=this.element_.lastChild}var j=this.element_.ownerDocument;this.textMeasureEl_.innerHTML="";this.textMeasureEl_.style.font=this.font;this.textMeasureEl_.appendChild(j.createTextNode(m));return{width:this.textMeasureEl_.offsetWidth}};q.clip=function(){};q.arcTo=function(){};q.createPattern=function(j,i){return new T(j,i)};function U(i){this.type_=i;this.x0_=0;this.y0_=0;this.r0_=0;this.x1_=0;this.y1_=0;this.r1_=0;this.colors_=[]}U.prototype.addColorStop=function(j,i){i=F(i);this.colors_.push({offset:j,color:i.color,alpha:i.alpha})};function T(j,i){Q(j);switch(i){case"repeat":case null:case"":this.repetition_="repeat";break;case"repeat-x":case"repeat-y":case"no-repeat":this.repetition_=i;break;default:O("SYNTAX_ERR")}this.src_=j.src;this.width_=j.width;this.height_=j.height}function O(i){throw new P(i)}function Q(i){if(!i||i.nodeType!=1||i.tagName!="IMG"){O("TYPE_MISMATCH_ERR")}if(i.readyState!="complete"){O("INVALID_STATE_ERR")}}function P(i){this.code=this[i];this.message=i+": DOM Exception "+this.code}var X=P.prototype=new Error;X.INDEX_SIZE_ERR=1;X.DOMSTRING_SIZE_ERR=2;X.HIERARCHY_REQUEST_ERR=3;X.WRONG_DOCUMENT_ERR=4;X.INVALID_CHARACTER_ERR=5;X.NO_DATA_ALLOWED_ERR=6;X.NO_MODIFICATION_ALLOWED_ERR=7;X.NOT_FOUND_ERR=8;X.NOT_SUPPORTED_ERR=9;X.INUSE_ATTRIBUTE_ERR=10;X.INVALID_STATE_ERR=11;X.SYNTAX_ERR=12;X.INVALID_MODIFICATION_ERR=13;X.NAMESPACE_ERR=14;X.INVALID_ACCESS_ERR=15;X.VALIDATION_ERR=16;X.TYPE_MISMATCH_ERR=17;G_vmlCanvasManager=e;CanvasRenderingContext2D=D;CanvasGradient=U;CanvasPattern=T;DOMException=P})()}; /* Javascript plotting library for jQuery, version 0.8.3. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. */ // first an inline dependency, jquery.colorhelpers.js, we inline it here // for convenience /* Plugin for jQuery for working with colors. * * Version 1.1. * * Inspiration from jQuery color animation plugin by John Resig. * * Released under the MIT license by Ole Laursen, October 2009. * * Examples: * * $.color.parse("#fff").scale('rgb', 0.25).add('a', -0.5).toString() * var c = $.color.extract($("#mydiv"), 'background-color'); * console.log(c.r, c.g, c.b, c.a); * $.color.make(100, 50, 25, 0.4).toString() // returns "rgba(100,50,25,0.4)" * * Note that .scale() and .add() return the same modified object * instead of making a new one. * * V. 1.1: Fix error handling so e.g. parsing an empty string does * produce a color rather than just crashing. */ (function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i<c.length;++i)o[c.charAt(i)]+=d;return o.normalize()};o.scale=function(c,f){for(var i=0;i<c.length;++i)o[c.charAt(i)]*=f;return o.normalize()};o.toString=function(){if(o.a>=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return value<min?min:value>max?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery); // the actual Flot code (function($) { // Cache the prototype hasOwnProperty for faster access var hasOwnProperty = Object.prototype.hasOwnProperty; // A shim to provide 'detach' to jQuery versions prior to 1.4. Using a DOM // operation produces the same effect as detach, i.e. removing the element // without touching its jQuery data. // Do not merge this into Flot 0.9, since it requires jQuery 1.4.4+. if (!$.fn.detach) { $.fn.detach = function() { return this.each(function() { if (this.parentNode) { this.parentNode.removeChild( this ); } }); }; } /////////////////////////////////////////////////////////////////////////// // The Canvas object is a wrapper around an HTML5 <canvas> tag. // // @constructor // @param {string} cls List of classes to apply to the canvas. // @param {element} container Element onto which to append the canvas. // // Requiring a container is a little iffy, but unfortunately canvas // operations don't work unless the canvas is attached to the DOM. function Canvas(cls, container) { var element = container.children("." + cls)[0]; if (element == null) { element = document.createElement("canvas"); element.className = cls; $(element).css({ direction: "ltr", position: "absolute", left: 0, top: 0 }) .appendTo(container); // If HTML5 Canvas isn't available, fall back to [Ex|Flash]canvas if (!element.getContext) { if (window.G_vmlCanvasManager) { element = window.G_vmlCanvasManager.initElement(element); } else { throw new Error("Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode."); } } } this.element = element; var context = this.context = element.getContext("2d"); // Determine the screen's ratio of physical to device-independent // pixels. This is the ratio between the canvas width that the browser // advertises and the number of pixels actually present in that space. // The iPhone 4, for example, has a device-independent width of 320px, // but its screen is actually 640px wide. It therefore has a pixel // ratio of 2, while most normal devices have a ratio of 1. var devicePixelRatio = window.devicePixelRatio || 1, backingStoreRatio = context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; this.pixelRatio = devicePixelRatio / backingStoreRatio; // Size the canvas to match the internal dimensions of its container this.resize(container.width(), container.height()); // Collection of HTML div layers for text overlaid onto the canvas this.textContainer = null; this.text = {}; // Cache of text fragments and metrics, so we can avoid expensively // re-calculating them when the plot is re-rendered in a loop. this._textCache = {}; } // Resizes the canvas to the given dimensions. // // @param {number} width New width of the canvas, in pixels. // @param {number} width New height of the canvas, in pixels. Canvas.prototype.resize = function(width, height) { if (width <= 0 || height <= 0) { throw new Error("Invalid dimensions for plot, width = " + width + ", height = " + height); } var element = this.element, context = this.context, pixelRatio = this.pixelRatio; // Resize the canvas, increasing its density based on the display's // pixel ratio; basically giving it more pixels without increasing the // size of its element, to take advantage of the fact that retina // displays have that many more pixels in the same advertised space. // Resizing should reset the state (excanvas seems to be buggy though) if (this.width != width) { element.width = width * pixelRatio; element.style.width = width + "px"; this.width = width; } if (this.height != height) { element.height = height * pixelRatio; element.style.height = height + "px"; this.height = height; } // Save the context, so we can reset in case we get replotted. The // restore ensure that we're really back at the initial state, and // should be safe even if we haven't saved the initial state yet. context.restore(); context.save(); // Scale the coordinate space to match the display density; so even though we // may have twice as many pixels, we still want lines and other drawing to // appear at the same size; the extra pixels will just make them crisper. context.scale(pixelRatio, pixelRatio); }; // Clears the entire canvas area, not including any overlaid HTML text Canvas.prototype.clear = function() { this.context.clearRect(0, 0, this.width, this.height); }; // Finishes rendering the canvas, including managing the text overlay. Canvas.prototype.render = function() { var cache = this._textCache; // For each text layer, add elements marked as active that haven't // already been rendered, and remove those that are no longer active. for (var layerKey in cache) { if (hasOwnProperty.call(cache, layerKey)) { var layer = this.getTextLayer(layerKey), layerCache = cache[layerKey]; layer.hide(); for (var styleKey in layerCache) { if (hasOwnProperty.call(layerCache, styleKey)) { var styleCache = layerCache[styleKey]; for (var key in styleCache) { if (hasOwnProperty.call(styleCache, key)) { var positions = styleCache[key].positions; for (var i = 0, position; position = positions[i]; i++) { if (position.active) { if (!position.rendered) { layer.append(position.element); position.rendered = true; } } else { positions.splice(i--, 1); if (position.rendered) { position.element.detach(); } } } if (positions.length == 0) { delete styleCache[key]; } } } } } layer.show(); } } }; // Creates (if necessary) and returns the text overlay container. // // @param {string} classes String of space-separated CSS classes used to // uniquely identify the text layer. // @return {object} The jQuery-wrapped text-layer div. Canvas.prototype.getTextLayer = function(classes) { var layer = this.text[classes]; // Create the text layer if it doesn't exist if (layer == null) { // Create the text layer container, if it doesn't exist if (this.textContainer == null) { this.textContainer = $("<div class='flot-text'></div>") .css({ position: "absolute", top: 0, left: 0, bottom: 0, right: 0, 'font-size': "smaller", color: "#545454" }) .insertAfter(this.element); } layer = this.text[classes] = $("<div></div>") .addClass(classes) .css({ position: "absolute", top: 0, left: 0, bottom: 0, right: 0 }) .appendTo(this.textContainer); } return layer; }; // Creates (if necessary) and returns a text info object. // // The object looks like this: // // { // width: Width of the text's wrapper div. // height: Height of the text's wrapper div. // element: The jQuery-wrapped HTML div containing the text. // positions: Array of positions at which this text is drawn. // } // // The positions array contains objects that look like this: // // { // active: Flag indicating whether the text should be visible. // rendered: Flag indicating whether the text is currently visible. // element: The jQuery-wrapped HTML div containing the text. // x: X coordinate at which to draw the text. // y: Y coordinate at which to draw the text. // } // // Each position after the first receives a clone of the original element. // // The idea is that that the width, height, and general 'identity' of the // text is constant no matter where it is placed; the placements are a // secondary property. // // Canvas maintains a cache of recently-used text info objects; getTextInfo // either returns the cached element or creates a new entry. // // @param {string} layer A string of space-separated CSS classes uniquely // identifying the layer containing this text. // @param {string} text Text string to retrieve info for. // @param {(string|object)=} font Either a string of space-separated CSS // classes or a font-spec object, defining the text's font and style. // @param {number=} angle Angle at which to rotate the text, in degrees. // Angle is currently unused, it will be implemented in the future. // @param {number=} width Maximum width of the text before it wraps. // @return {object} a text info object. Canvas.prototype.getTextInfo = function(layer, text, font, angle, width) { var textStyle, layerCache, styleCache, info; // Cast the value to a string, in case we were given a number or such text = "" + text; // If the font is a font-spec object, generate a CSS font definition if (typeof font === "object") { textStyle = font.style + " " + font.variant + " " + font.weight + " " + font.size + "px/" + font.lineHeight + "px " + font.family; } else { textStyle = font; } // Retrieve (or create) the cache for the text's layer and styles layerCache = this._textCache[layer]; if (layerCache == null) { layerCache = this._textCache[layer] = {}; } styleCache = layerCache[textStyle]; if (styleCache == null) { styleCache = layerCache[textStyle] = {}; } info = styleCache[text]; // If we can't find a matching element in our cache, create a new one if (info == null) { var element = $("<div></div>").html(text) .css({ position: "absolute", 'max-width': width, top: -9999 }) .appendTo(this.getTextLayer(layer)); if (typeof font === "object") { element.css({ font: textStyle, color: font.color }); } else if (typeof font === "string") { element.addClass(font); } info = styleCache[text] = { width: element.outerWidth(true), height: element.outerHeight(true), element: element, positions: [] }; element.detach(); } return info; }; // Adds a text string to the canvas text overlay. // // The text isn't drawn immediately; it is marked as rendering, which will // result in its addition to the canvas on the next render pass. // // @param {string} layer A string of space-separated CSS classes uniquely // identifying the layer containing this text. // @param {number} x X coordinate at which to draw the text. // @param {number} y Y coordinate at which to draw the text. // @param {string} text Text string to draw. // @param {(string|object)=} font Either a string of space-separated CSS // classes or a font-spec object, defining the text's font and style. // @param {number=} angle Angle at which to rotate the text, in degrees. // Angle is currently unused, it will be implemented in the future. // @param {number=} width Maximum width of the text before it wraps. // @param {string=} halign Horizontal alignment of the text; either "left", // "center" or "right". // @param {string=} valign Vertical alignment of the text; either "top", // "middle" or "bottom". Canvas.prototype.addText = function(layer, x, y, text, font, angle, width, halign, valign) { var info = this.getTextInfo(layer, text, font, angle, width), positions = info.positions; // Tweak the div's position to match the text's alignment if (halign == "center") { x -= info.width / 2; } else if (halign == "right") { x -= info.width; } if (valign == "middle") { y -= info.height / 2; } else if (valign == "bottom") { y -= info.height; } // Determine whether this text already exists at this position. // If so, mark it for inclusion in the next render pass. for (var i = 0, position; position = positions[i]; i++) { if (position.x == x && position.y == y) { position.active = true; return; } } // If the text doesn't exist at this position, create a new entry // For the very first position we'll re-use the original element, // while for subsequent ones we'll clone it. position = { active: true, rendered: false, element: positions.length ? info.element.clone() : info.element, x: x, y: y }; positions.push(position); // Move the element to its final position within the container position.element.css({ top: Math.round(y), left: Math.round(x), 'text-align': halign // In case the text wraps }); }; // Removes one or more text strings from the canvas text overlay. // // If no parameters are given, all text within the layer is removed. // // Note that the text is not immediately removed; it is simply marked as // inactive, which will result in its removal on the next render pass. // This avoids the performance penalty for 'clear and redraw' behavior, // where we potentially get rid of all text on a layer, but will likely // add back most or all of it later, as when redrawing axes, for example. // // @param {string} layer A string of space-separated CSS classes uniquely // identifying the layer containing this text. // @param {number=} x X coordinate of the text. // @param {number=} y Y coordinate of the text. // @param {string=} text Text string to remove. // @param {(string|object)=} font Either a string of space-separated CSS // classes or a font-spec object, defining the text's font and style. // @param {number=} angle Angle at which the text is rotated, in degrees. // Angle is currently unused, it will be implemented in the future. Canvas.prototype.removeText = function(layer, x, y, text, font, angle) { if (text == null) { var layerCache = this._textCache[layer]; if (layerCache != null) { for (var styleKey in layerCache) { if (hasOwnProperty.call(layerCache, styleKey)) { var styleCache = layerCache[styleKey]; for (var key in styleCache) { if (hasOwnProperty.call(styleCache, key)) { var positions = styleCache[key].positions; for (var i = 0, position; position = positions[i]; i++) { position.active = false; } } } } } } } else { var positions = this.getTextInfo(layer, text, font, angle).positions; for (var i = 0, position; position = positions[i]; i++) { if (position.x == x && position.y == y) { position.active = false; } } } }; /////////////////////////////////////////////////////////////////////////// // The top-level container for the entire plot. function Plot(placeholder, data_, options_, plugins) { // data is on the form: // [ series1, series2 ... ] // where series is either just the data as [ [x1, y1], [x2, y2], ... ] // or { data: [ [x1, y1], [x2, y2], ... ], label: "some label", ... } var series = [], options = { // the color theme used for graphs colors: ["#edc240", "#afd8f8", "#cb4b4b", "#4da74d", "#9440ed"], legend: { show: true, noColumns: 1, // number of colums in legend table labelFormatter: null, // fn: string -> string labelBoxBorderColor: "#ccc", // border color for the little label boxes container: null, // container (as jQuery object) to put legend in, null means default on top of graph position: "ne", // position of default legend container within plot margin: 5, // distance from grid edge to default legend container within plot backgroundColor: null, // null means auto-detect backgroundOpacity: 0.85, // set to 0 to avoid background sorted: null // default to no legend sorting }, xaxis: { show: null, // null = auto-detect, true = always, false = never position: "bottom", // or "top" mode: null, // null or "time" font: null, // null (derived from CSS in placeholder) or object like { size: 11, lineHeight: 13, style: "italic", weight: "bold", family: "sans-serif", variant: "small-caps" } color: null, // base color, labels, ticks tickColor: null, // possibly different color of ticks, e.g. "rgba(0,0,0,0.15)" transform: null, // null or f: number -> number to transform axis inverseTransform: null, // if transform is set, this should be the inverse function min: null, // min. value to show, null means set automatically max: null, // max. value to show, null means set automatically autoscaleMargin: null, // margin in % to add if auto-setting min/max ticks: null, // either [1, 3] or [[1, "a"], 3] or (fn: axis info -> ticks) or app. number of ticks for auto-ticks tickFormatter: null, // fn: number -> string labelWidth: null, // size of tick labels in pixels labelHeight: null, reserveSpace: null, // whether to reserve space even if axis isn't shown tickLength: null, // size in pixels of ticks, or "full" for whole line alignTicksWithAxis: null, // axis number or null for no sync tickDecimals: null, // no. of decimals, null means auto tickSize: null, // number or [number, "unit"] minTickSize: null // number or [number, "unit"] }, yaxis: { autoscaleMargin: 0.02, position: "left" // or "right" }, xaxes: [], yaxes: [], series: { points: { show: false, radius: 3, lineWidth: 2, // in pixels fill: true, fillColor: "#ffffff", symbol: "circle" // or callback }, lines: { // we don't put in show: false so we can see // whether lines were actively disabled lineWidth: 2, // in pixels fill: false, fillColor: null, steps: false // Omit 'zero', so we can later default its value to // match that of the 'fill' option. }, bars: { show: false, lineWidth: 2, // in pixels barWidth: 1, // in units of the x axis fill: true, fillColor: null, align: "left", // "left", "right", or "center" horizontal: false, zero: true }, shadowSize: 3, highlightColor: null }, grid: { show: true, aboveData: false, color: "#545454", // primary color used for outline and labels backgroundColor: null, // null for transparent, else color borderColor: null, // set if different from the grid color tickColor: null, // color for the ticks, e.g. "rgba(0,0,0,0.15)" margin: 0, // distance from the canvas edge to the grid labelMargin: 5, // in pixels axisMargin: 8, // in pixels borderWidth: 2, // in pixels minBorderMargin: null, // in pixels, null means taken from points radius markings: null, // array of ranges or fn: axes -> array of ranges markingsColor: "#f4f4f4", markingsLineWidth: 2, // interactive stuff clickable: false, hoverable: false, autoHighlight: true, // highlight in case mouse is near mouseActiveRadius: 10 // how far the mouse can be away to activate an item }, interaction: { redrawOverlayInterval: 1000/60 // time between updates, -1 means in same flow }, hooks: {} }, surface = null, // the canvas for the plot itself overlay = null, // canvas for interactive stuff on top of plot eventHolder = null, // jQuery object that events should be bound to ctx = null, octx = null, xaxes = [], yaxes = [], plotOffset = { left: 0, right: 0, top: 0, bottom: 0}, plotWidth = 0, plotHeight = 0, hooks = { processOptions: [], processRawData: [], processDatapoints: [], processOffset: [], drawBackground: [], drawSeries: [], draw: [], bindEvents: [], drawOverlay: [], shutdown: [] }, plot = this; // public functions plot.setData = setData; plot.setupGrid = setupGrid; plot.draw = draw; plot.getPlaceholder = function() { return placeholder; }; plot.getCanvas = function() { return surface.element; }; plot.getPlotOffset = function() { return plotOffset; }; plot.width = function () { return plotWidth; }; plot.height = function () { return plotHeight; }; plot.offset = function () { var o = eventHolder.offset(); o.left += plotOffset.left; o.top += plotOffset.top; return o; }; plot.getData = function () { return series; }; plot.getAxes = function () { var res = {}, i; $.each(xaxes.concat(yaxes), function (_, axis) { if (axis) res[axis.direction + (axis.n != 1 ? axis.n : "") + "axis"] = axis; }); return res; }; plot.getXAxes = function () { return xaxes; }; plot.getYAxes = function () { return yaxes; }; plot.c2p = canvasToAxisCoords; plot.p2c = axisToCanvasCoords; plot.getOptions = function () { return options; }; plot.highlight = highlight; plot.unhighlight = unhighlight; plot.triggerRedrawOverlay = triggerRedrawOverlay; plot.pointOffset = function(point) { return { left: parseInt(xaxes[axisNumber(point, "x") - 1].p2c(+point.x) + plotOffset.left, 10), top: parseInt(yaxes[axisNumber(point, "y") - 1].p2c(+point.y) + plotOffset.top, 10) }; }; plot.shutdown = shutdown; plot.destroy = function () { shutdown(); placeholder.removeData("plot").empty(); series = []; options = null; surface = null; overlay = null; eventHolder = null; ctx = null; octx = null; xaxes = []; yaxes = []; hooks = null; highlights = []; plot = null; }; plot.resize = function () { var width = placeholder.width(), height = placeholder.height(); surface.resize(width, height); overlay.resize(width, height); }; // public attributes plot.hooks = hooks; // initialize initPlugins(plot); parseOptions(options_); setupCanvases(); setData(data_); setupGrid(); draw(); bindEvents(); function executeHooks(hook, args) { args = [plot].concat(args); for (var i = 0; i < hook.length; ++i) hook[i].apply(this, args); } function initPlugins() { // References to key classes, allowing plugins to modify them var classes = { Canvas: Canvas }; for (var i = 0; i < plugins.length; ++i) { var p = plugins[i]; p.init(plot, classes); if (p.options) $.extend(true, options, p.options); } } function parseOptions(opts) { $.extend(true, options, opts); // $.extend merges arrays, rather than replacing them. When less // colors are provided than the size of the default palette, we // end up with those colors plus the remaining defaults, which is // not expected behavior; avoid it by replacing them here. if (opts && opts.colors) { options.colors = opts.colors; } if (options.xaxis.color == null) options.xaxis.color = $.color.parse(options.grid.color).scale('a', 0.22).toString(); if (options.yaxis.color == null) options.yaxis.color = $.color.parse(options.grid.color).scale('a', 0.22).toString(); if (options.xaxis.tickColor == null) // grid.tickColor for back-compatibility options.xaxis.tickColor = options.grid.tickColor || options.xaxis.color; if (options.yaxis.tickColor == null) // grid.tickColor for back-compatibility options.yaxis.tickColor = options.grid.tickColor || options.yaxis.color; if (options.grid.borderColor == null) options.grid.borderColor = options.grid.color; if (options.grid.tickColor == null) options.grid.tickColor = $.color.parse(options.grid.color).scale('a', 0.22).toString(); // Fill in defaults for axis options, including any unspecified // font-spec fields, if a font-spec was provided. // If no x/y axis options were provided, create one of each anyway, // since the rest of the code assumes that they exist. var i, axisOptions, axisCount, fontSize = placeholder.css("font-size"), fontSizeDefault = fontSize ? +fontSize.replace("px", "") : 13, fontDefaults = { style: placeholder.css("font-style"), size: Math.round(0.8 * fontSizeDefault), variant: placeholder.css("font-variant"), weight: placeholder.css("font-weight"), family: placeholder.css("font-family") }; axisCount = options.xaxes.length || 1; for (i = 0; i < axisCount; ++i) { axisOptions = options.xaxes[i]; if (axisOptions && !axisOptions.tickColor) { axisOptions.tickColor = axisOptions.color; } axisOptions = $.extend(true, {}, options.xaxis, axisOptions); options.xaxes[i] = axisOptions; if (axisOptions.font) { axisOptions.font = $.extend({}, fontDefaults, axisOptions.font); if (!axisOptions.font.color) { axisOptions.font.color = axisOptions.color; } if (!axisOptions.font.lineHeight) { axisOptions.font.lineHeight = Math.round(axisOptions.font.size * 1.15); } } } axisCount = options.yaxes.length || 1; for (i = 0; i < axisCount; ++i) { axisOptions = options.yaxes[i]; if (axisOptions && !axisOptions.tickColor) { axisOptions.tickColor = axisOptions.color; } axisOptions = $.extend(true, {}, options.yaxis, axisOptions); options.yaxes[i] = axisOptions; if (axisOptions.font) { axisOptions.font = $.extend({}, fontDefaults, axisOptions.font); if (!axisOptions.font.color) { axisOptions.font.color = axisOptions.color; } if (!axisOptions.font.lineHeight) { axisOptions.font.lineHeight = Math.round(axisOptions.font.size * 1.15); } } } // backwards compatibility, to be removed in future if (options.xaxis.noTicks && options.xaxis.ticks == null) options.xaxis.ticks = options.xaxis.noTicks; if (options.yaxis.noTicks && options.yaxis.ticks == null) options.yaxis.ticks = options.yaxis.noTicks; if (options.x2axis) { options.xaxes[1] = $.extend(true, {}, options.xaxis, options.x2axis); options.xaxes[1].position = "top"; // Override the inherit to allow the axis to auto-scale if (options.x2axis.min == null) { options.xaxes[1].min = null; } if (options.x2axis.max == null) { options.xaxes[1].max = null; } } if (options.y2axis) { options.yaxes[1] = $.extend(true, {}, options.yaxis, options.y2axis); options.yaxes[1].position = "right"; // Override the inherit to allow the axis to auto-scale if (options.y2axis.min == null) { options.yaxes[1].min = null; } if (options.y2axis.max == null) { options.yaxes[1].max = null; } } if (options.grid.coloredAreas) options.grid.markings = options.grid.coloredAreas; if (options.grid.coloredAreasColor) options.grid.markingsColor = options.grid.coloredAreasColor; if (options.lines) $.extend(true, options.series.lines, options.lines); if (options.points) $.extend(true, options.series.points, options.points); if (options.bars) $.extend(true, options.series.bars, options.bars); if (options.shadowSize != null) options.series.shadowSize = options.shadowSize; if (options.highlightColor != null) options.series.highlightColor = options.highlightColor; // save options on axes for future reference for (i = 0; i < options.xaxes.length; ++i) getOrCreateAxis(xaxes, i + 1).options = options.xaxes[i]; for (i = 0; i < options.yaxes.length; ++i) getOrCreateAxis(yaxes, i + 1).options = options.yaxes[i]; // add hooks from options for (var n in hooks) if (options.hooks[n] && options.hooks[n].length) hooks[n] = hooks[n].concat(options.hooks[n]); executeHooks(hooks.processOptions, [options]); } function setData(d) { series = parseData(d); fillInSeriesOptions(); processData(); } function parseData(d) { var res = []; for (var i = 0; i < d.length; ++i) { var s = $.extend(true, {}, options.series); if (d[i].data != null) { s.data = d[i].data; // move the data instead of deep-copy delete d[i].data; $.extend(true, s, d[i]); d[i].data = s.data; } else s.data = d[i]; res.push(s); } return res; } function axisNumber(obj, coord) { var a = obj[coord + "axis"]; if (typeof a == "object") // if we got a real axis, extract number a = a.n; if (typeof a != "number") a = 1; // default to first axis return a; } function allAxes() { // return flat array without annoying null entries return $.grep(xaxes.concat(yaxes), function (a) { return a; }); } function canvasToAxisCoords(pos) { // return an object with x/y corresponding to all used axes var res = {}, i, axis; for (i = 0; i < xaxes.length; ++i) { axis = xaxes[i]; if (axis && axis.used) res["x" + axis.n] = axis.c2p(pos.left); } for (i = 0; i < yaxes.length; ++i) { axis = yaxes[i]; if (axis && axis.used) res["y" + axis.n] = axis.c2p(pos.top); } if (res.x1 !== undefined) res.x = res.x1; if (res.y1 !== undefined) res.y = res.y1; return res; } function axisToCanvasCoords(pos) { // get canvas coords from the first pair of x/y found in pos var res = {}, i, axis, key; for (i = 0; i < xaxes.length; ++i) { axis = xaxes[i]; if (axis && axis.used) { key = "x" + axis.n; if (pos[key] == null && axis.n == 1) key = "x"; if (pos[key] != null) { res.left = axis.p2c(pos[key]); break; } } } for (i = 0; i < yaxes.length; ++i) { axis = yaxes[i]; if (axis && axis.used) { key = "y" + axis.n; if (pos[key] == null && axis.n == 1) key = "y"; if (pos[key] != null) { res.top = axis.p2c(pos[key]); break; } } } return res; } function getOrCreateAxis(axes, number) { if (!axes[number - 1]) axes[number - 1] = { n: number, // save the number for future reference direction: axes == xaxes ? "x" : "y", options: $.extend(true, {}, axes == xaxes ? options.xaxis : options.yaxis) }; return axes[number - 1]; } function fillInSeriesOptions() { var neededColors = series.length, maxIndex = -1, i; // Subtract the number of series that already have fixed colors or // color indexes from the number that we still need to generate. for (i = 0; i < series.length; ++i) { var sc = series[i].color; if (sc != null) { neededColors--; if (typeof sc == "number" && sc > maxIndex) { maxIndex = sc; } } } // If any of the series have fixed color indexes, then we need to // generate at least as many colors as the highest index. if (neededColors <= maxIndex) { neededColors = maxIndex + 1; } // Generate all the colors, using first the option colors and then // variations on those colors once they're exhausted. var c, colors = [], colorPool = options.colors, colorPoolSize = colorPool.length, variation = 0; for (i = 0; i < neededColors; i++) { c = $.color.parse(colorPool[i % colorPoolSize] || "#666"); // Each time we exhaust the colors in the pool we adjust // a scaling factor used to produce more variations on // those colors. The factor alternates negative/positive // to produce lighter/darker colors. // Reset the variation after every few cycles, or else // it will end up producing only white or black colors. if (i % colorPoolSize == 0 && i) { if (variation >= 0) { if (variation < 0.5) { variation = -variation - 0.2; } else variation = 0; } else variation = -variation; } colors[i] = c.scale('rgb', 1 + variation); } // Finalize the series options, filling in their colors var colori = 0, s; for (i = 0; i < series.length; ++i) { s = series[i]; // assign colors if (s.color == null) { s.color = colors[colori].toString(); ++colori; } else if (typeof s.color == "number") s.color = colors[s.color].toString(); // turn on lines automatically in case nothing is set if (s.lines.show == null) { var v, show = true; for (v in s) if (s[v] && s[v].show) { show = false; break; } if (show) s.lines.show = true; } // If nothing was provided for lines.zero, default it to match // lines.fill, since areas by default should extend to zero. if (s.lines.zero == null) { s.lines.zero = !!s.lines.fill; } // setup axes s.xaxis = getOrCreateAxis(xaxes, axisNumber(s, "x")); s.yaxis = getOrCreateAxis(yaxes, axisNumber(s, "y")); } } function processData() { var topSentry = Number.POSITIVE_INFINITY, bottomSentry = Number.NEGATIVE_INFINITY, fakeInfinity = Number.MAX_VALUE, i, j, k, m, length, s, points, ps, x, y, axis, val, f, p, data, format; function updateAxis(axis, min, max) { if (min < axis.datamin && min != -fakeInfinity) axis.datamin = min; if (max > axis.datamax && max != fakeInfinity) axis.datamax = max; } $.each(allAxes(), function (_, axis) { // init axis axis.datamin = topSentry; axis.datamax = bottomSentry; axis.used = false; }); for (i = 0; i < series.length; ++i) { s = series[i]; s.datapoints = { points: [] }; executeHooks(hooks.processRawData, [ s, s.data, s.datapoints ]); } // first pass: clean and copy data for (i = 0; i < series.length; ++i) { s = series[i]; data = s.data; format = s.datapoints.format; if (!format) { format = []; // find out how to copy format.push({ x: true, number: true, required: true }); format.push({ y: true, number: true, required: true }); if (s.bars.show || (s.lines.show && s.lines.fill)) { var autoscale = !!((s.bars.show && s.bars.zero) || (s.lines.show && s.lines.zero)); format.push({ y: true, number: true, required: false, defaultValue: 0, autoscale: autoscale }); if (s.bars.horizontal) { delete format[format.length - 1].y; format[format.length - 1].x = true; } } s.datapoints.format = format; } if (s.datapoints.pointsize != null) continue; // already filled in s.datapoints.pointsize = format.length; ps = s.datapoints.pointsize; points = s.datapoints.points; var insertSteps = s.lines.show && s.lines.steps; s.xaxis.used = s.yaxis.used = true; for (j = k = 0; j < data.length; ++j, k += ps) { p = data[j]; var nullify = p == null; if (!nullify) { for (m = 0; m < ps; ++m) { val = p[m]; f = format[m]; if (f) { if (f.number && val != null) { val = +val; // convert to number if (isNaN(val)) val = null; else if (val == Infinity) val = fakeInfinity; else if (val == -Infinity) val = -fakeInfinity; } if (val == null) { if (f.required) nullify = true; if (f.defaultValue != null) val = f.defaultValue; } } points[k + m] = val; } } if (nullify) { for (m = 0; m < ps; ++m) { val = points[k + m]; if (val != null) { f = format[m]; // extract min/max info if (f.autoscale !== false) { if (f.x) { updateAxis(s.xaxis, val, val); } if (f.y) { updateAxis(s.yaxis, val, val); } } } points[k + m] = null; } } else { // a little bit of line specific stuff that // perhaps shouldn't be here, but lacking // better means... if (insertSteps && k > 0 && points[k - ps] != null && points[k - ps] != points[k] && points[k - ps + 1] != points[k + 1]) { // copy the point to make room for a middle point for (m = 0; m < ps; ++m) points[k + ps + m] = points[k + m]; // middle point has same y points[k + 1] = points[k - ps + 1]; // we've added a point, better reflect that k += ps; } } } } // give the hooks a chance to run for (i = 0; i < series.length; ++i) { s = series[i]; executeHooks(hooks.processDatapoints, [ s, s.datapoints]); } // second pass: find datamax/datamin for auto-scaling for (i = 0; i < series.length; ++i) { s = series[i]; points = s.datapoints.points; ps = s.datapoints.pointsize; format = s.datapoints.format; var xmin = topSentry, ymin = topSentry, xmax = bottomSentry, ymax = bottomSentry; for (j = 0; j < points.length; j += ps) { if (points[j] == null) continue; for (m = 0; m < ps; ++m) { val = points[j + m]; f = format[m]; if (!f || f.autoscale === false || val == fakeInfinity || val == -fakeInfinity) continue; if (f.x) { if (val < xmin) xmin = val; if (val > xmax) xmax = val; } if (f.y) { if (val < ymin) ymin = val; if (val > ymax) ymax = val; } } } if (s.bars.show) { // make sure we got room for the bar on the dancing floor var delta; switch (s.bars.align) { case "left": delta = 0; break; case "right": delta = -s.bars.barWidth; break; default: delta = -s.bars.barWidth / 2; } if (s.bars.horizontal) { ymin += delta; ymax += delta + s.bars.barWidth; } else { xmin += delta; xmax += delta + s.bars.barWidth; } } updateAxis(s.xaxis, xmin, xmax); updateAxis(s.yaxis, ymin, ymax); } $.each(allAxes(), function (_, axis) { if (axis.datamin == topSentry) axis.datamin = null; if (axis.datamax == bottomSentry) axis.datamax = null; }); } function setupCanvases() { // Make sure the placeholder is clear of everything except canvases // from a previous plot in this container that we'll try to re-use. placeholder.css("padding", 0) // padding messes up the positioning .children().filter(function(){ return !$(this).hasClass("flot-overlay") && !$(this).hasClass('flot-base'); }).remove(); if (placeholder.css("position") == 'static') placeholder.css("position", "relative"); // for positioning labels and overlay surface = new Canvas("flot-base", placeholder); overlay = new Canvas("flot-overlay", placeholder); // overlay canvas for interactive features ctx = surface.context; octx = overlay.context; // define which element we're listening for events on eventHolder = $(overlay.element).unbind(); // If we're re-using a plot object, shut down the old one var existing = placeholder.data("plot"); if (existing) { existing.shutdown(); overlay.clear(); } // save in case we get replotted placeholder.data("plot", plot); } function bindEvents() { // bind events if (options.grid.hoverable) { eventHolder.mousemove(onMouseMove); // Use bind, rather than .mouseleave, because we officially // still support jQuery 1.2.6, which doesn't define a shortcut // for mouseenter or mouseleave. This was a bug/oversight that // was fixed somewhere around 1.3.x. We can return to using // .mouseleave when we drop support for 1.2.6. eventHolder.bind("mouseleave", onMouseLeave); } if (options.grid.clickable) eventHolder.click(onClick); executeHooks(hooks.bindEvents, [eventHolder]); } function shutdown() { if (redrawTimeout) clearTimeout(redrawTimeout); eventHolder.unbind("mousemove", onMouseMove); eventHolder.unbind("mouseleave", onMouseLeave); eventHolder.unbind("click", onClick); executeHooks(hooks.shutdown, [eventHolder]); } function setTransformationHelpers(axis) { // set helper functions on the axis, assumes plot area // has been computed already function identity(x) { return x; } var s, m, t = axis.options.transform || identity, it = axis.options.inverseTransform; // precompute how much the axis is scaling a point // in canvas space if (axis.direction == "x") { s = axis.scale = plotWidth / Math.abs(t(axis.max) - t(axis.min)); m = Math.min(t(axis.max), t(axis.min)); } else { s = axis.scale = plotHeight / Math.abs(t(axis.max) - t(axis.min)); s = -s; m = Math.max(t(axis.max), t(axis.min)); } // data point to canvas coordinate if (t == identity) // slight optimization axis.p2c = function (p) { return (p - m) * s; }; else axis.p2c = function (p) { return (t(p) - m) * s; }; // canvas coordinate to data point if (!it) axis.c2p = function (c) { return m + c / s; }; else axis.c2p = function (c) { return it(m + c / s); }; } function measureTickLabels(axis) { var opts = axis.options, ticks = axis.ticks || [], labelWidth = opts.labelWidth || 0, labelHeight = opts.labelHeight || 0, maxWidth = labelWidth || (axis.direction == "x" ? Math.floor(surface.width / (ticks.length || 1)) : null), legacyStyles = axis.direction + "Axis " + axis.direction + axis.n + "Axis", layer = "flot-" + axis.direction + "-axis flot-" + axis.direction + axis.n + "-axis " + legacyStyles, font = opts.font || "flot-tick-label tickLabel"; for (var i = 0; i < ticks.length; ++i) { var t = ticks[i]; if (!t.label) continue; var info = surface.getTextInfo(layer, t.label, font, null, maxWidth); labelWidth = Math.max(labelWidth, info.width); labelHeight = Math.max(labelHeight, info.height); } axis.labelWidth = opts.labelWidth || labelWidth; axis.labelHeight = opts.labelHeight || labelHeight; } function allocateAxisBoxFirstPhase(axis) { // find the bounding box of the axis by looking at label // widths/heights and ticks, make room by diminishing the // plotOffset; this first phase only looks at one // dimension per axis, the other dimension depends on the // other axes so will have to wait var lw = axis.labelWidth, lh = axis.labelHeight, pos = axis.options.position, isXAxis = axis.direction === "x", tickLength = axis.options.tickLength, axisMargin = options.grid.axisMargin, padding = options.grid.labelMargin, innermost = true, outermost = true, first = true, found = false; // Determine the axis's position in its direction and on its side $.each(isXAxis ? xaxes : yaxes, function(i, a) { if (a && (a.show || a.reserveSpace)) { if (a === axis) { found = true; } else if (a.options.position === pos) { if (found) { outermost = false; } else { innermost = false; } } if (!found) { first = false; } } }); // The outermost axis on each side has no margin if (outermost) { axisMargin = 0; } // The ticks for the first axis in each direction stretch across if (tickLength == null) { tickLength = first ? "full" : 5; } if (!isNaN(+tickLength)) padding += +tickLength; if (isXAxis) { lh += padding; if (pos == "bottom") { plotOffset.bottom += lh + axisMargin; axis.box = { top: surface.height - plotOffset.bottom, height: lh }; } else { axis.box = { top: plotOffset.top + axisMargin, height: lh }; plotOffset.top += lh + axisMargin; } } else { lw += padding; if (pos == "left") { axis.box = { left: plotOffset.left + axisMargin, width: lw }; plotOffset.left += lw + axisMargin; } else { plotOffset.right += lw + axisMargin; axis.box = { left: surface.width - plotOffset.right, width: lw }; } } // save for future reference axis.position = pos; axis.tickLength = tickLength; axis.box.padding = padding; axis.innermost = innermost; } function allocateAxisBoxSecondPhase(axis) { // now that all axis boxes have been placed in one // dimension, we can set the remaining dimension coordinates if (axis.direction == "x") { axis.box.left = plotOffset.left - axis.labelWidth / 2; axis.box.width = surface.width - plotOffset.left - plotOffset.right + axis.labelWidth; } else { axis.box.top = plotOffset.top - axis.labelHeight / 2; axis.box.height = surface.height - plotOffset.bottom - plotOffset.top + axis.labelHeight; } } function adjustLayoutForThingsStickingOut() { // possibly adjust plot offset to ensure everything stays // inside the canvas and isn't clipped off var minMargin = options.grid.minBorderMargin, axis, i; // check stuff from the plot (FIXME: this should just read // a value from the series, otherwise it's impossible to // customize) if (minMargin == null) { minMargin = 0; for (i = 0; i < series.length; ++i) minMargin = Math.max(minMargin, 2 * (series[i].points.radius + series[i].points.lineWidth/2)); } var margins = { left: minMargin, right: minMargin, top: minMargin, bottom: minMargin }; // check axis labels, note we don't check the actual // labels but instead use the overall width/height to not // jump as much around with replots $.each(allAxes(), function (_, axis) { if (axis.reserveSpace && axis.ticks && axis.ticks.length) { if (axis.direction === "x") { margins.left = Math.max(margins.left, axis.labelWidth / 2); margins.right = Math.max(margins.right, axis.labelWidth / 2); } else { margins.bottom = Math.max(margins.bottom, axis.labelHeight / 2); margins.top = Math.max(margins.top, axis.labelHeight / 2); } } }); plotOffset.left = Math.ceil(Math.max(margins.left, plotOffset.left)); plotOffset.right = Math.ceil(Math.max(margins.right, plotOffset.right)); plotOffset.top = Math.ceil(Math.max(margins.top, plotOffset.top)); plotOffset.bottom = Math.ceil(Math.max(margins.bottom, plotOffset.bottom)); } function setupGrid() { var i, axes = allAxes(), showGrid = options.grid.show; // Initialize the plot's offset from the edge of the canvas for (var a in plotOffset) { var margin = options.grid.margin || 0; plotOffset[a] = typeof margin == "number" ? margin : margin[a] || 0; } executeHooks(hooks.processOffset, [plotOffset]); // If the grid is visible, add its border width to the offset for (var a in plotOffset) { if(typeof(options.grid.borderWidth) == "object") { plotOffset[a] += showGrid ? options.grid.borderWidth[a] : 0; } else { plotOffset[a] += showGrid ? options.grid.borderWidth : 0; } } $.each(axes, function (_, axis) { var axisOpts = axis.options; axis.show = axisOpts.show == null ? axis.used : axisOpts.show; axis.reserveSpace = axisOpts.reserveSpace == null ? axis.show : axisOpts.reserveSpace; setRange(axis); }); if (showGrid) { var allocatedAxes = $.grep(axes, function (axis) { return axis.show || axis.reserveSpace; }); $.each(allocatedAxes, function (_, axis) { // make the ticks setupTickGeneration(axis); setTicks(axis); snapRangeToTicks(axis, axis.ticks); // find labelWidth/Height for axis measureTickLabels(axis); }); // with all dimensions calculated, we can compute the // axis bounding boxes, start from the outside // (reverse order) for (i = allocatedAxes.length - 1; i >= 0; --i) allocateAxisBoxFirstPhase(allocatedAxes[i]); // make sure we've got enough space for things that // might stick out adjustLayoutForThingsStickingOut(); $.each(allocatedAxes, function (_, axis) { allocateAxisBoxSecondPhase(axis); }); } plotWidth = surface.width - plotOffset.left - plotOffset.right; plotHeight = surface.height - plotOffset.bottom - plotOffset.top; // now we got the proper plot dimensions, we can compute the scaling $.each(axes, function (_, axis) { setTransformationHelpers(axis); }); if (showGrid) { drawAxisLabels(); } insertLegend(); } function setRange(axis) { var opts = axis.options, min = +(opts.min != null ? opts.min : axis.datamin), max = +(opts.max != null ? opts.max : axis.datamax), delta = max - min; if (delta == 0.0) { // degenerate case var widen = max == 0 ? 1 : 0.01; if (opts.min == null) min -= widen; // always widen max if we couldn't widen min to ensure we // don't fall into min == max which doesn't work if (opts.max == null || opts.min != null) max += widen; } else { // consider autoscaling var margin = opts.autoscaleMargin; if (margin != null) { if (opts.min == null) { min -= delta * margin; // make sure we don't go below zero if all values // are positive if (min < 0 && axis.datamin != null && axis.datamin >= 0) min = 0; } if (opts.max == null) { max += delta * margin; if (max > 0 && axis.datamax != null && axis.datamax <= 0) max = 0; } } } axis.min = min; axis.max = max; } function setupTickGeneration(axis) { var opts = axis.options; // estimate number of ticks var noTicks; if (typeof opts.ticks == "number" && opts.ticks > 0) noTicks = opts.ticks; else // heuristic based on the model a*sqrt(x) fitted to // some data points that seemed reasonable noTicks = 0.3 * Math.sqrt(axis.direction == "x" ? surface.width : surface.height); var delta = (axis.max - axis.min) / noTicks, dec = -Math.floor(Math.log(delta) / Math.LN10), maxDec = opts.tickDecimals; if (maxDec != null && dec > maxDec) { dec = maxDec; } var magn = Math.pow(10, -dec), norm = delta / magn, // norm is between 1.0 and 10.0 size; if (norm < 1.5) { size = 1; } else if (norm < 3) { size = 2; // special case for 2.5, requires an extra decimal if (norm > 2.25 && (maxDec == null || dec + 1 <= maxDec)) { size = 2.5; ++dec; } } else if (norm < 7.5) { size = 5; } else { size = 10; } size *= magn; if (opts.minTickSize != null && size < opts.minTickSize) { size = opts.minTickSize; } axis.delta = delta; axis.tickDecimals = Math.max(0, maxDec != null ? maxDec : dec); axis.tickSize = opts.tickSize || size; // Time mode was moved to a plug-in in 0.8, and since so many people use it // we'll add an especially friendly reminder to make sure they included it. if (opts.mode == "time" && !axis.tickGenerator) { throw new Error("Time mode requires the flot.time plugin."); } // Flot supports base-10 axes; any other mode else is handled by a plug-in, // like flot.time.js. if (!axis.tickGenerator) { axis.tickGenerator = function (axis) { var ticks = [], start = floorInBase(axis.min, axis.tickSize), i = 0, v = Number.NaN, prev; do { prev = v; v = start + i * axis.tickSize; ticks.push(v); ++i; } while (v < axis.max && v != prev); return ticks; }; axis.tickFormatter = function (value, axis) { var factor = axis.tickDecimals ? Math.pow(10, axis.tickDecimals) : 1; var formatted = "" + Math.round(value * factor) / factor; // If tickDecimals was specified, ensure that we have exactly that // much precision; otherwise default to the value's own precision. if (axis.tickDecimals != null) { var decimal = formatted.indexOf("."); var precision = decimal == -1 ? 0 : formatted.length - decimal - 1; if (precision < axis.tickDecimals) { return (precision ? formatted : formatted + ".") + ("" + factor).substr(1, axis.tickDecimals - precision); } } return formatted; }; } if ($.isFunction(opts.tickFormatter)) axis.tickFormatter = function (v, axis) { return "" + opts.tickFormatter(v, axis); }; if (opts.alignTicksWithAxis != null) { var otherAxis = (axis.direction == "x" ? xaxes : yaxes)[opts.alignTicksWithAxis - 1]; if (otherAxis && otherAxis.used && otherAxis != axis) { // consider snapping min/max to outermost nice ticks var niceTicks = axis.tickGenerator(axis); if (niceTicks.length > 0) { if (opts.min == null) axis.min = Math.min(axis.min, niceTicks[0]); if (opts.max == null && niceTicks.length > 1) axis.max = Math.max(axis.max, niceTicks[niceTicks.length - 1]); } axis.tickGenerator = function (axis) { // copy ticks, scaled to this axis var ticks = [], v, i; for (i = 0; i < otherAxis.ticks.length; ++i) { v = (otherAxis.ticks[i].v - otherAxis.min) / (otherAxis.max - otherAxis.min); v = axis.min + v * (axis.max - axis.min); ticks.push(v); } return ticks; }; // we might need an extra decimal since forced // ticks don't necessarily fit naturally if (!axis.mode && opts.tickDecimals == null) { var extraDec = Math.max(0, -Math.floor(Math.log(axis.delta) / Math.LN10) + 1), ts = axis.tickGenerator(axis); // only proceed if the tick interval rounded // with an extra decimal doesn't give us a // zero at end if (!(ts.length > 1 && /\..*0$/.test((ts[1] - ts[0]).toFixed(extraDec)))) axis.tickDecimals = extraDec; } } } } function setTicks(axis) { var oticks = axis.options.ticks, ticks = []; if (oticks == null || (typeof oticks == "number" && oticks > 0)) ticks = axis.tickGenerator(axis); else if (oticks) { if ($.isFunction(oticks)) // generate the ticks ticks = oticks(axis); else ticks = oticks; } // clean up/labelify the supplied ticks, copy them over var i, v; axis.ticks = []; for (i = 0; i < ticks.length; ++i) { var label = null; var t = ticks[i]; if (typeof t == "object") { v = +t[0]; if (t.length > 1) label = t[1]; } else v = +t; if (label == null) label = axis.tickFormatter(v, axis); if (!isNaN(v)) axis.ticks.push({ v: v, label: label }); } } function snapRangeToTicks(axis, ticks) { if (axis.options.autoscaleMargin && ticks.length > 0) { // snap to ticks if (axis.options.min == null) axis.min = Math.min(axis.min, ticks[0].v); if (axis.options.max == null && ticks.length > 1) axis.max = Math.max(axis.max, ticks[ticks.length - 1].v); } } function draw() { surface.clear(); executeHooks(hooks.drawBackground, [ctx]); var grid = options.grid; // draw background, if any if (grid.show && grid.backgroundColor) drawBackground(); if (grid.show && !grid.aboveData) { drawGrid(); } for (var i = 0; i < series.length; ++i) { executeHooks(hooks.drawSeries, [ctx, series[i]]); drawSeries(series[i]); } executeHooks(hooks.draw, [ctx]); if (grid.show && grid.aboveData) { drawGrid(); } surface.render(); // A draw implies that either the axes or data have changed, so we // should probably update the overlay highlights as well. triggerRedrawOverlay(); } function extractRange(ranges, coord) { var axis, from, to, key, axes = allAxes(); for (var i = 0; i < axes.length; ++i) { axis = axes[i]; if (axis.direction == coord) { key = coord + axis.n + "axis"; if (!ranges[key] && axis.n == 1) key = coord + "axis"; // support x1axis as xaxis if (ranges[key]) { from = ranges[key].from; to = ranges[key].to; break; } } } // backwards-compat stuff - to be removed in future if (!ranges[key]) { axis = coord == "x" ? xaxes[0] : yaxes[0]; from = ranges[coord + "1"]; to = ranges[coord + "2"]; } // auto-reverse as an added bonus if (from != null && to != null && from > to) { var tmp = from; from = to; to = tmp; } return { from: from, to: to, axis: axis }; } function drawBackground() { ctx.save(); ctx.translate(plotOffset.left, plotOffset.top); ctx.fillStyle = getColorOrGradient(options.grid.backgroundColor, plotHeight, 0, "rgba(255, 255, 255, 0)"); ctx.fillRect(0, 0, plotWidth, plotHeight); ctx.restore(); } function drawGrid() { var i, axes, bw, bc; ctx.save(); ctx.translate(plotOffset.left, plotOffset.top); // draw markings var markings = options.grid.markings; if (markings) { if ($.isFunction(markings)) { axes = plot.getAxes(); // xmin etc. is backwards compatibility, to be // removed in the future axes.xmin = axes.xaxis.min; axes.xmax = axes.xaxis.max; axes.ymin = axes.yaxis.min; axes.ymax = axes.yaxis.max; markings = markings(axes); } for (i = 0; i < markings.length; ++i) { var m = markings[i], xrange = extractRange(m, "x"), yrange = extractRange(m, "y"); // fill in missing if (xrange.from == null) xrange.from = xrange.axis.min; if (xrange.to == null) xrange.to = xrange.axis.max; if (yrange.from == null) yrange.from = yrange.axis.min; if (yrange.to == null) yrange.to = yrange.axis.max; // clip if (xrange.to < xrange.axis.min || xrange.from > xrange.axis.max || yrange.to < yrange.axis.min || yrange.from > yrange.axis.max) continue; xrange.from = Math.max(xrange.from, xrange.axis.min); xrange.to = Math.min(xrange.to, xrange.axis.max); yrange.from = Math.max(yrange.from, yrange.axis.min); yrange.to = Math.min(yrange.to, yrange.axis.max); var xequal = xrange.from === xrange.to, yequal = yrange.from === yrange.to; if (xequal && yequal) { continue; } // then draw xrange.from = Math.floor(xrange.axis.p2c(xrange.from)); xrange.to = Math.floor(xrange.axis.p2c(xrange.to)); yrange.from = Math.floor(yrange.axis.p2c(yrange.from)); yrange.to = Math.floor(yrange.axis.p2c(yrange.to)); if (xequal || yequal) { var lineWidth = m.lineWidth || options.grid.markingsLineWidth, subPixel = lineWidth % 2 ? 0.5 : 0; ctx.beginPath(); ctx.strokeStyle = m.color || options.grid.markingsColor; ctx.lineWidth = lineWidth; if (xequal) { ctx.moveTo(xrange.to + subPixel, yrange.from); ctx.lineTo(xrange.to + subPixel, yrange.to); } else { ctx.moveTo(xrange.from, yrange.to + subPixel); ctx.lineTo(xrange.to, yrange.to + subPixel); } ctx.stroke(); } else { ctx.fillStyle = m.color || options.grid.markingsColor; ctx.fillRect(xrange.from, yrange.to, xrange.to - xrange.from, yrange.from - yrange.to); } } } // draw the ticks axes = allAxes(); bw = options.grid.borderWidth; for (var j = 0; j < axes.length; ++j) { var axis = axes[j], box = axis.box, t = axis.tickLength, x, y, xoff, yoff; if (!axis.show || axis.ticks.length == 0) continue; ctx.lineWidth = 1; // find the edges if (axis.direction == "x") { x = 0; if (t == "full") y = (axis.position == "top" ? 0 : plotHeight); else y = box.top - plotOffset.top + (axis.position == "top" ? box.height : 0); } else { y = 0; if (t == "full") x = (axis.position == "left" ? 0 : plotWidth); else x = box.left - plotOffset.left + (axis.position == "left" ? box.width : 0); } // draw tick bar if (!axis.innermost) { ctx.strokeStyle = axis.options.color; ctx.beginPath(); xoff = yoff = 0; if (axis.direction == "x") xoff = plotWidth + 1; else yoff = plotHeight + 1; if (ctx.lineWidth == 1) { if (axis.direction == "x") { y = Math.floor(y) + 0.5; } else { x = Math.floor(x) + 0.5; } } ctx.moveTo(x, y); ctx.lineTo(x + xoff, y + yoff); ctx.stroke(); } // draw ticks ctx.strokeStyle = axis.options.tickColor; ctx.beginPath(); for (i = 0; i < axis.ticks.length; ++i) { var v = axis.ticks[i].v; xoff = yoff = 0; if (isNaN(v) || v < axis.min || v > axis.max // skip those lying on the axes if we got a border || (t == "full" && ((typeof bw == "object" && bw[axis.position] > 0) || bw > 0) && (v == axis.min || v == axis.max))) continue; if (axis.direction == "x") { x = axis.p2c(v); yoff = t == "full" ? -plotHeight : t; if (axis.position == "top") yoff = -yoff; } else { y = axis.p2c(v); xoff = t == "full" ? -plotWidth : t; if (axis.position == "left") xoff = -xoff; } if (ctx.lineWidth == 1) { if (axis.direction == "x") x = Math.floor(x) + 0.5; else y = Math.floor(y) + 0.5; } ctx.moveTo(x, y); ctx.lineTo(x + xoff, y + yoff); } ctx.stroke(); } // draw border if (bw) { // If either borderWidth or borderColor is an object, then draw the border // line by line instead of as one rectangle bc = options.grid.borderColor; if(typeof bw == "object" || typeof bc == "object") { if (typeof bw !== "object") { bw = {top: bw, right: bw, bottom: bw, left: bw}; } if (typeof bc !== "object") { bc = {top: bc, right: bc, bottom: bc, left: bc}; } if (bw.top > 0) { ctx.strokeStyle = bc.top; ctx.lineWidth = bw.top; ctx.beginPath(); ctx.moveTo(0 - bw.left, 0 - bw.top/2); ctx.lineTo(plotWidth, 0 - bw.top/2); ctx.stroke(); } if (bw.right > 0) { ctx.strokeStyle = bc.right; ctx.lineWidth = bw.right; ctx.beginPath(); ctx.moveTo(plotWidth + bw.right / 2, 0 - bw.top); ctx.lineTo(plotWidth + bw.right / 2, plotHeight); ctx.stroke(); } if (bw.bottom > 0) { ctx.strokeStyle = bc.bottom; ctx.lineWidth = bw.bottom; ctx.beginPath(); ctx.moveTo(plotWidth + bw.right, plotHeight + bw.bottom / 2); ctx.lineTo(0, plotHeight + bw.bottom / 2); ctx.stroke(); } if (bw.left > 0) { ctx.strokeStyle = bc.left; ctx.lineWidth = bw.left; ctx.beginPath(); ctx.moveTo(0 - bw.left/2, plotHeight + bw.bottom); ctx.lineTo(0- bw.left/2, 0); ctx.stroke(); } } else { ctx.lineWidth = bw; ctx.strokeStyle = options.grid.borderColor; ctx.strokeRect(-bw/2, -bw/2, plotWidth + bw, plotHeight + bw); } } ctx.restore(); } function drawAxisLabels() { $.each(allAxes(), function (_, axis) { var box = axis.box, legacyStyles = axis.direction + "Axis " + axis.direction + axis.n + "Axis", layer = "flot-" + axis.direction + "-axis flot-" + axis.direction + axis.n + "-axis " + legacyStyles, font = axis.options.font || "flot-tick-label tickLabel", tick, x, y, halign, valign; // Remove text before checking for axis.show and ticks.length; // otherwise plugins, like flot-tickrotor, that draw their own // tick labels will end up with both theirs and the defaults. surface.removeText(layer); if (!axis.show || axis.ticks.length == 0) return; for (var i = 0; i < axis.ticks.length; ++i) { tick = axis.ticks[i]; if (!tick.label || tick.v < axis.min || tick.v > axis.max) continue; if (axis.direction == "x") { halign = "center"; x = plotOffset.left + axis.p2c(tick.v); if (axis.position == "bottom") { y = box.top + box.padding; } else { y = box.top + box.height - box.padding; valign = "bottom"; } } else { valign = "middle"; y = plotOffset.top + axis.p2c(tick.v); if (axis.position == "left") { x = box.left + box.width - box.padding; halign = "right"; } else { x = box.left + box.padding; } } surface.addText(layer, x, y, tick.label, font, null, null, halign, valign); } }); } function drawSeries(series) { if (series.lines.show) drawSeriesLines(series); if (series.bars.show) drawSeriesBars(series); if (series.points.show) drawSeriesPoints(series); } function drawSeriesLines(series) { function plotLine(datapoints, xoffset, yoffset, axisx, axisy) { var points = datapoints.points, ps = datapoints.pointsize, prevx = null, prevy = null; ctx.beginPath(); for (var i = ps; i < points.length; i += ps) { var x1 = points[i - ps], y1 = points[i - ps + 1], x2 = points[i], y2 = points[i + 1]; if (x1 == null || x2 == null) continue; // clip with ymin if (y1 <= y2 && y1 < axisy.min) { if (y2 < axisy.min) continue; // line segment is outside // compute new intersection point x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1; y1 = axisy.min; } else if (y2 <= y1 && y2 < axisy.min) { if (y1 < axisy.min) continue; x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1; y2 = axisy.min; } // clip with ymax if (y1 >= y2 && y1 > axisy.max) { if (y2 > axisy.max) continue; x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1; y1 = axisy.max; } else if (y2 >= y1 && y2 > axisy.max) { if (y1 > axisy.max) continue; x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1; y2 = axisy.max; } // clip with xmin if (x1 <= x2 && x1 < axisx.min) { if (x2 < axisx.min) continue; y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1; x1 = axisx.min; } else if (x2 <= x1 && x2 < axisx.min) { if (x1 < axisx.min) continue; y2 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1; x2 = axisx.min; } // clip with xmax if (x1 >= x2 && x1 > axisx.max) { if (x2 > axisx.max) continue; y1 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1; x1 = axisx.max; } else if (x2 >= x1 && x2 > axisx.max) { if (x1 > axisx.max) continue; y2 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1; x2 = axisx.max; } if (x1 != prevx || y1 != prevy) ctx.moveTo(axisx.p2c(x1) + xoffset, axisy.p2c(y1) + yoffset); prevx = x2; prevy = y2; ctx.lineTo(axisx.p2c(x2) + xoffset, axisy.p2c(y2) + yoffset); } ctx.stroke(); } function plotLineArea(datapoints, axisx, axisy) { var points = datapoints.points, ps = datapoints.pointsize, bottom = Math.min(Math.max(0, axisy.min), axisy.max), i = 0, top, areaOpen = false, ypos = 1, segmentStart = 0, segmentEnd = 0; // we process each segment in two turns, first forward // direction to sketch out top, then once we hit the // end we go backwards to sketch the bottom while (true) { if (ps > 0 && i > points.length + ps) break; i += ps; // ps is negative if going backwards var x1 = points[i - ps], y1 = points[i - ps + ypos], x2 = points[i], y2 = points[i + ypos]; if (areaOpen) { if (ps > 0 && x1 != null && x2 == null) { // at turning point segmentEnd = i; ps = -ps; ypos = 2; continue; } if (ps < 0 && i == segmentStart + ps) { // done with the reverse sweep ctx.fill(); areaOpen = false; ps = -ps; ypos = 1; i = segmentStart = segmentEnd + ps; continue; } } if (x1 == null || x2 == null) continue; // clip x values // clip with xmin if (x1 <= x2 && x1 < axisx.min) { if (x2 < axisx.min) continue; y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1; x1 = axisx.min; } else if (x2 <= x1 && x2 < axisx.min) { if (x1 < axisx.min) continue; y2 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1; x2 = axisx.min; } // clip with xmax if (x1 >= x2 && x1 > axisx.max) { if (x2 > axisx.max) continue; y1 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1; x1 = axisx.max; } else if (x2 >= x1 && x2 > axisx.max) { if (x1 > axisx.max) continue; y2 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1; x2 = axisx.max; } if (!areaOpen) { // open area ctx.beginPath(); ctx.moveTo(axisx.p2c(x1), axisy.p2c(bottom)); areaOpen = true; } // now first check the case where both is outside if (y1 >= axisy.max && y2 >= axisy.max) { ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.max)); ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.max)); continue; } else if (y1 <= axisy.min && y2 <= axisy.min) { ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.min)); ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.min)); continue; } // else it's a bit more complicated, there might // be a flat maxed out rectangle first, then a // triangular cutout or reverse; to find these // keep track of the current x values var x1old = x1, x2old = x2; // clip the y values, without shortcutting, we // go through all cases in turn // clip with ymin if (y1 <= y2 && y1 < axisy.min && y2 >= axisy.min) { x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1; y1 = axisy.min; } else if (y2 <= y1 && y2 < axisy.min && y1 >= axisy.min) { x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1; y2 = axisy.min; } // clip with ymax if (y1 >= y2 && y1 > axisy.max && y2 <= axisy.max) { x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1; y1 = axisy.max; } else if (y2 >= y1 && y2 > axisy.max && y1 <= axisy.max) { x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1; y2 = axisy.max; } // if the x value was changed we got a rectangle // to fill if (x1 != x1old) { ctx.lineTo(axisx.p2c(x1old), axisy.p2c(y1)); // it goes to (x1, y1), but we fill that below } // fill triangular section, this sometimes result // in redundant points if (x1, y1) hasn't changed // from previous line to, but we just ignore that ctx.lineTo(axisx.p2c(x1), axisy.p2c(y1)); ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2)); // fill the other rectangle if it's there if (x2 != x2old) { ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2)); ctx.lineTo(axisx.p2c(x2old), axisy.p2c(y2)); } } } ctx.save(); ctx.translate(plotOffset.left, plotOffset.top); ctx.lineJoin = "round"; var lw = series.lines.lineWidth, sw = series.shadowSize; // FIXME: consider another form of shadow when filling is turned on if (lw > 0 && sw > 0) { // draw shadow as a thick and thin line with transparency ctx.lineWidth = sw; ctx.strokeStyle = "rgba(0,0,0,0.1)"; // position shadow at angle from the mid of line var angle = Math.PI/18; plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/2), Math.cos(angle) * (lw/2 + sw/2), series.xaxis, series.yaxis); ctx.lineWidth = sw/2; plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/4), Math.cos(angle) * (lw/2 + sw/4), series.xaxis, series.yaxis); } ctx.lineWidth = lw; ctx.strokeStyle = series.color; var fillStyle = getFillStyle(series.lines, series.color, 0, plotHeight); if (fillStyle) { ctx.fillStyle = fillStyle; plotLineArea(series.datapoints, series.xaxis, series.yaxis); } if (lw > 0) plotLine(series.datapoints, 0, 0, series.xaxis, series.yaxis); ctx.restore(); } function drawSeriesPoints(series) { function plotPoints(datapoints, radius, fillStyle, offset, shadow, axisx, axisy, symbol) { var points = datapoints.points, ps = datapoints.pointsize; for (var i = 0; i < points.length; i += ps) { var x = points[i], y = points[i + 1]; if (x == null || x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max) continue; ctx.beginPath(); x = axisx.p2c(x); y = axisy.p2c(y) + offset; if (symbol == "circle") ctx.arc(x, y, radius, 0, shadow ? Math.PI : Math.PI * 2, false); else symbol(ctx, x, y, radius, shadow); ctx.closePath(); if (fillStyle) { ctx.fillStyle = fillStyle; ctx.fill(); } ctx.stroke(); } } ctx.save(); ctx.translate(plotOffset.left, plotOffset.top); var lw = series.points.lineWidth, sw = series.shadowSize, radius = series.points.radius, symbol = series.points.symbol; // If the user sets the line width to 0, we change it to a very // small value. A line width of 0 seems to force the default of 1. // Doing the conditional here allows the shadow setting to still be // optional even with a lineWidth of 0. if( lw == 0 ) lw = 0.0001; if (lw > 0 && sw > 0) { // draw shadow in two steps var w = sw / 2; ctx.lineWidth = w; ctx.strokeStyle = "rgba(0,0,0,0.1)"; plotPoints(series.datapoints, radius, null, w + w/2, true, series.xaxis, series.yaxis, symbol); ctx.strokeStyle = "rgba(0,0,0,0.2)"; plotPoints(series.datapoints, radius, null, w/2, true, series.xaxis, series.yaxis, symbol); } ctx.lineWidth = lw; ctx.strokeStyle = series.color; plotPoints(series.datapoints, radius, getFillStyle(series.points, series.color), 0, false, series.xaxis, series.yaxis, symbol); ctx.restore(); } function drawBar(x, y, b, barLeft, barRight, fillStyleCallback, axisx, axisy, c, horizontal, lineWidth) { var left, right, bottom, top, drawLeft, drawRight, drawTop, drawBottom, tmp; // in horizontal mode, we start the bar from the left // instead of from the bottom so it appears to be // horizontal rather than vertical if (horizontal) { drawBottom = drawRight = drawTop = true; drawLeft = false; left = b; right = x; top = y + barLeft; bottom = y + barRight; // account for negative bars if (right < left) { tmp = right; right = left; left = tmp; drawLeft = true; drawRight = false; } } else { drawLeft = drawRight = drawTop = true; drawBottom = false; left = x + barLeft; right = x + barRight; bottom = b; top = y; // account for negative bars if (top < bottom) { tmp = top; top = bottom; bottom = tmp; drawBottom = true; drawTop = false; } } // clip if (right < axisx.min || left > axisx.max || top < axisy.min || bottom > axisy.max) return; if (left < axisx.min) { left = axisx.min; drawLeft = false; } if (right > axisx.max) { right = axisx.max; drawRight = false; } if (bottom < axisy.min) { bottom = axisy.min; drawBottom = false; } if (top > axisy.max) { top = axisy.max; drawTop = false; } left = axisx.p2c(left); bottom = axisy.p2c(bottom); right = axisx.p2c(right); top = axisy.p2c(top); // fill the bar if (fillStyleCallback) { c.fillStyle = fillStyleCallback(bottom, top); c.fillRect(left, top, right - left, bottom - top) } // draw outline if (lineWidth > 0 && (drawLeft || drawRight || drawTop || drawBottom)) { c.beginPath(); // FIXME: inline moveTo is buggy with excanvas c.moveTo(left, bottom); if (drawLeft) c.lineTo(left, top); else c.moveTo(left, top); if (drawTop) c.lineTo(right, top); else c.moveTo(right, top); if (drawRight) c.lineTo(right, bottom); else c.moveTo(right, bottom); if (drawBottom) c.lineTo(left, bottom); else c.moveTo(left, bottom); c.stroke(); } } function drawSeriesBars(series) { function plotBars(datapoints, barLeft, barRight, fillStyleCallback, axisx, axisy) { var points = datapoints.points, ps = datapoints.pointsize; for (var i = 0; i < points.length; i += ps) { if (points[i] == null) continue; drawBar(points[i], points[i + 1], points[i + 2], barLeft, barRight, fillStyleCallback, axisx, axisy, ctx, series.bars.horizontal, series.bars.lineWidth); } } ctx.save(); ctx.translate(plotOffset.left, plotOffset.top); // FIXME: figure out a way to add shadows (for instance along the right edge) ctx.lineWidth = series.bars.lineWidth; ctx.strokeStyle = series.color; var barLeft; switch (series.bars.align) { case "left": barLeft = 0; break; case "right": barLeft = -series.bars.barWidth; break; default: barLeft = -series.bars.barWidth / 2; } var fillStyleCallback = series.bars.fill ? function (bottom, top) { return getFillStyle(series.bars, series.color, bottom, top); } : null; plotBars(series.datapoints, barLeft, barLeft + series.bars.barWidth, fillStyleCallback, series.xaxis, series.yaxis); ctx.restore(); } function getFillStyle(filloptions, seriesColor, bottom, top) { var fill = filloptions.fill; if (!fill) return null; if (filloptions.fillColor) return getColorOrGradient(filloptions.fillColor, bottom, top, seriesColor); var c = $.color.parse(seriesColor); c.a = typeof fill == "number" ? fill : 0.4; c.normalize(); return c.toString(); } function insertLegend() { if (options.legend.container != null) { $(options.legend.container).html(""); } else { placeholder.find(".legend").remove(); } if (!options.legend.show) { return; } var fragments = [], entries = [], rowStarted = false, lf = options.legend.labelFormatter, s, label; // Build a list of legend entries, with each having a label and a color for (var i = 0; i < series.length; ++i) { s = series[i]; if (s.label) { label = lf ? lf(s.label, s) : s.label; if (label) { entries.push({ label: label, color: s.color }); } } } // Sort the legend using either the default or a custom comparator if (options.legend.sorted) { if ($.isFunction(options.legend.sorted)) { entries.sort(options.legend.sorted); } else if (options.legend.sorted == "reverse") { entries.reverse(); } else { var ascending = options.legend.sorted != "descending"; entries.sort(function(a, b) { return a.label == b.label ? 0 : ( (a.label < b.label) != ascending ? 1 : -1 // Logical XOR ); }); } } // Generate markup for the list of entries, in their final order for (var i = 0; i < entries.length; ++i) { var entry = entries[i]; if (i % options.legend.noColumns == 0) { if (rowStarted) fragments.push('</tr>'); fragments.push('<tr>'); rowStarted = true; } fragments.push( '<td class="legendColorBox"><div style="border:1px solid ' + options.legend.labelBoxBorderColor + ';padding:1px"><div style="width:4px;height:0;border:5px solid ' + entry.color + ';overflow:hidden"></div></div></td>' + '<td class="legendLabel">' + entry.label + '</td>' ); } if (rowStarted) fragments.push('</tr>'); if (fragments.length == 0) return; var table = '<table style="font-size:smaller;color:' + options.grid.color + '">' + fragments.join("") + '</table>'; if (options.legend.container != null) $(options.legend.container).html(table); else { var pos = "", p = options.legend.position, m = options.legend.margin; if (m[0] == null) m = [m, m]; if (p.charAt(0) == "n") pos += 'top:' + (m[1] + plotOffset.top) + 'px;'; else if (p.charAt(0) == "s") pos += 'bottom:' + (m[1] + plotOffset.bottom) + 'px;'; if (p.charAt(1) == "e") pos += 'right:' + (m[0] + plotOffset.right) + 'px;'; else if (p.charAt(1) == "w") pos += 'left:' + (m[0] + plotOffset.left) + 'px;'; var legend = $('<div class="legend">' + table.replace('style="', 'style="position:absolute;' + pos +';') + '</div>').appendTo(placeholder); if (options.legend.backgroundOpacity != 0.0) { // put in the transparent background // separately to avoid blended labels and // label boxes var c = options.legend.backgroundColor; if (c == null) { c = options.grid.backgroundColor; if (c && typeof c == "string") c = $.color.parse(c); else c = $.color.extract(legend, 'background-color'); c.a = 1; c = c.toString(); } var div = legend.children(); $('<div style="position:absolute;width:' + div.width() + 'px;height:' + div.height() + 'px;' + pos +'background-color:' + c + ';"> </div>').prependTo(legend).css('opacity', options.legend.backgroundOpacity); } } } // interactive features var highlights = [], redrawTimeout = null; // returns the data item the mouse is over, or null if none is found function findNearbyItem(mouseX, mouseY, seriesFilter) { var maxDistance = options.grid.mouseActiveRadius, smallestDistance = maxDistance * maxDistance + 1, item = null, foundPoint = false, i, j, ps; for (i = series.length - 1; i >= 0; --i) { if (!seriesFilter(series[i])) continue; var s = series[i], axisx = s.xaxis, axisy = s.yaxis, points = s.datapoints.points, mx = axisx.c2p(mouseX), // precompute some stuff to make the loop faster my = axisy.c2p(mouseY), maxx = maxDistance / axisx.scale, maxy = maxDistance / axisy.scale; ps = s.datapoints.pointsize; // with inverse transforms, we can't use the maxx/maxy // optimization, sadly if (axisx.options.inverseTransform) maxx = Number.MAX_VALUE; if (axisy.options.inverseTransform) maxy = Number.MAX_VALUE; if (s.lines.show || s.points.show) { for (j = 0; j < points.length; j += ps) { var x = points[j], y = points[j + 1]; if (x == null) continue; // For points and lines, the cursor must be within a // certain distance to the data point if (x - mx > maxx || x - mx < -maxx || y - my > maxy || y - my < -maxy) continue; // We have to calculate distances in pixels, not in // data units, because the scales of the axes may be different var dx = Math.abs(axisx.p2c(x) - mouseX), dy = Math.abs(axisy.p2c(y) - mouseY), dist = dx * dx + dy * dy; // we save the sqrt // use <= to ensure last point takes precedence // (last generally means on top of) if (dist < smallestDistance) { smallestDistance = dist; item = [i, j / ps]; } } } if (s.bars.show && !item) { // no other point can be nearby var barLeft, barRight; switch (s.bars.align) { case "left": barLeft = 0; break; case "right": barLeft = -s.bars.barWidth; break; default: barLeft = -s.bars.barWidth / 2; } barRight = barLeft + s.bars.barWidth; for (j = 0; j < points.length; j += ps) { var x = points[j], y = points[j + 1], b = points[j + 2]; if (x == null) continue; // for a bar graph, the cursor must be inside the bar if (series[i].bars.horizontal ? (mx <= Math.max(b, x) && mx >= Math.min(b, x) && my >= y + barLeft && my <= y + barRight) : (mx >= x + barLeft && mx <= x + barRight && my >= Math.min(b, y) && my <= Math.max(b, y))) item = [i, j / ps]; } } } if (item) { i = item[0]; j = item[1]; ps = series[i].datapoints.pointsize; return { datapoint: series[i].datapoints.points.slice(j * ps, (j + 1) * ps), dataIndex: j, series: series[i], seriesIndex: i }; } return null; } function onMouseMove(e) { if (options.grid.hoverable) triggerClickHoverEvent("plothover", e, function (s) { return s["hoverable"] != false; }); } function onMouseLeave(e) { if (options.grid.hoverable) triggerClickHoverEvent("plothover", e, function (s) { return false; }); } function onClick(e) { triggerClickHoverEvent("plotclick", e, function (s) { return s["clickable"] != false; }); } // trigger click or hover event (they send the same parameters // so we share their code) function triggerClickHoverEvent(eventname, event, seriesFilter) { var offset = eventHolder.offset(), canvasX = event.pageX - offset.left - plotOffset.left, canvasY = event.pageY - offset.top - plotOffset.top, pos = canvasToAxisCoords({ left: canvasX, top: canvasY }); pos.pageX = event.pageX; pos.pageY = event.pageY; var item = findNearbyItem(canvasX, canvasY, seriesFilter); if (item) { // fill in mouse pos for any listeners out there item.pageX = parseInt(item.series.xaxis.p2c(item.datapoint[0]) + offset.left + plotOffset.left, 10); item.pageY = parseInt(item.series.yaxis.p2c(item.datapoint[1]) + offset.top + plotOffset.top, 10); } if (options.grid.autoHighlight) { // clear auto-highlights for (var i = 0; i < highlights.length; ++i) { var h = highlights[i]; if (h.auto == eventname && !(item && h.series == item.series && h.point[0] == item.datapoint[0] && h.point[1] == item.datapoint[1])) unhighlight(h.series, h.point); } if (item) highlight(item.series, item.datapoint, eventname); } placeholder.trigger(eventname, [ pos, item ]); } function triggerRedrawOverlay() { var t = options.interaction.redrawOverlayInterval; if (t == -1) { // skip event queue drawOverlay(); return; } if (!redrawTimeout) redrawTimeout = setTimeout(drawOverlay, t); } function drawOverlay() { redrawTimeout = null; // draw highlights octx.save(); overlay.clear(); octx.translate(plotOffset.left, plotOffset.top); var i, hi; for (i = 0; i < highlights.length; ++i) { hi = highlights[i]; if (hi.series.bars.show) drawBarHighlight(hi.series, hi.point); else drawPointHighlight(hi.series, hi.point); } octx.restore(); executeHooks(hooks.drawOverlay, [octx]); } function highlight(s, point, auto) { if (typeof s == "number") s = series[s]; if (typeof point == "number") { var ps = s.datapoints.pointsize; point = s.datapoints.points.slice(ps * point, ps * (point + 1)); } var i = indexOfHighlight(s, point); if (i == -1) { highlights.push({ series: s, point: point, auto: auto }); triggerRedrawOverlay(); } else if (!auto) highlights[i].auto = false; } function unhighlight(s, point) { if (s == null && point == null) { highlights = []; triggerRedrawOverlay(); return; } if (typeof s == "number") s = series[s]; if (typeof point == "number") { var ps = s.datapoints.pointsize; point = s.datapoints.points.slice(ps * point, ps * (point + 1)); } var i = indexOfHighlight(s, point); if (i != -1) { highlights.splice(i, 1); triggerRedrawOverlay(); } } function indexOfHighlight(s, p) { for (var i = 0; i < highlights.length; ++i) { var h = highlights[i]; if (h.series == s && h.point[0] == p[0] && h.point[1] == p[1]) return i; } return -1; } function drawPointHighlight(series, point) { var x = point[0], y = point[1], axisx = series.xaxis, axisy = series.yaxis, highlightColor = (typeof series.highlightColor === "string") ? series.highlightColor : $.color.parse(series.color).scale('a', 0.5).toString(); if (x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max) return; var pointRadius = series.points.radius + series.points.lineWidth / 2; octx.lineWidth = pointRadius; octx.strokeStyle = highlightColor; var radius = 1.5 * pointRadius; x = axisx.p2c(x); y = axisy.p2c(y); octx.beginPath(); if (series.points.symbol == "circle") octx.arc(x, y, radius, 0, 2 * Math.PI, false); else series.points.symbol(octx, x, y, radius, false); octx.closePath(); octx.stroke(); } function drawBarHighlight(series, point) { var highlightColor = (typeof series.highlightColor === "string") ? series.highlightColor : $.color.parse(series.color).scale('a', 0.5).toString(), fillStyle = highlightColor, barLeft; switch (series.bars.align) { case "left": barLeft = 0; break; case "right": barLeft = -series.bars.barWidth; break; default: barLeft = -series.bars.barWidth / 2; } octx.lineWidth = series.bars.lineWidth; octx.strokeStyle = highlightColor; drawBar(point[0], point[1], point[2] || 0, barLeft, barLeft + series.bars.barWidth, function () { return fillStyle; }, series.xaxis, series.yaxis, octx, series.bars.horizontal, series.bars.lineWidth); } function getColorOrGradient(spec, bottom, top, defaultColor) { if (typeof spec == "string") return spec; else { // assume this is a gradient spec; IE currently only // supports a simple vertical gradient properly, so that's // what we support too var gradient = ctx.createLinearGradient(0, top, 0, bottom); for (var i = 0, l = spec.colors.length; i < l; ++i) { var c = spec.colors[i]; if (typeof c != "string") { var co = $.color.parse(defaultColor); if (c.brightness != null) co = co.scale('rgb', c.brightness); if (c.opacity != null) co.a *= c.opacity; c = co.toString(); } gradient.addColorStop(i / (l - 1), c); } return gradient; } } } // Add the plot function to the top level of the jQuery object $.plot = function(placeholder, data, options) { //var t0 = new Date(); var plot = new Plot($(placeholder), data, options, $.plot.plugins); //(window.console ? console.log : alert)("time used (msecs): " + ((new Date()).getTime() - t0.getTime())); return plot; }; $.plot.version = "0.8.3"; $.plot.plugins = []; // Also add the plot function as a chainable property $.fn.plot = function(data, options) { return this.each(function() { $.plot(this, data, options); }); }; // round to nearby lower multiple of base function floorInBase(n, base) { return base * Math.floor(n / base); } })(jQuery); /* Flot plugin for rendering pie charts. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. The plugin assumes that each series has a single data value, and that each value is a positive integer or zero. Negative numbers don't make sense for a pie chart, and have unpredictable results. The values do NOT need to be passed in as percentages; the plugin will calculate the total and per-slice percentages internally. * Created by Brian Medendorp * Updated with contributions from btburnett3, Anthony Aragues and Xavi Ivars The plugin supports these options: series: { pie: { show: true/false radius: 0-1 for percentage of fullsize, or a specified pixel length, or 'auto' innerRadius: 0-1 for percentage of fullsize or a specified pixel length, for creating a donut effect startAngle: 0-2 factor of PI used for starting angle (in radians) i.e 3/2 starts at the top, 0 and 2 have the same result tilt: 0-1 for percentage to tilt the pie, where 1 is no tilt, and 0 is completely flat (nothing will show) offset: { top: integer value to move the pie up or down left: integer value to move the pie left or right, or 'auto' }, stroke: { color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#FFF') width: integer pixel width of the stroke }, label: { show: true/false, or 'auto' formatter: a user-defined function that modifies the text/style of the label text radius: 0-1 for percentage of fullsize, or a specified pixel length background: { color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#000') opacity: 0-1 }, threshold: 0-1 for the percentage value at which to hide labels (if they're too small) }, combine: { threshold: 0-1 for the percentage value at which to combine slices (if they're too small) color: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#CCC'), if null, the plugin will automatically use the color of the first slice to be combined label: any text value of what the combined slice should be labeled } highlight: { opacity: 0-1 } } } More detail and specific examples can be found in the included HTML file. */ (function($) { // Maximum redraw attempts when fitting labels within the plot var REDRAW_ATTEMPTS = 10; // Factor by which to shrink the pie when fitting labels within the plot var REDRAW_SHRINK = 0.95; function init(plot) { var canvas = null, target = null, options = null, maxRadius = null, centerLeft = null, centerTop = null, processed = false, ctx = null; // interactive variables var highlights = []; // add hook to determine if pie plugin in enabled, and then perform necessary operations plot.hooks.processOptions.push(function(plot, options) { if (options.series.pie.show) { options.grid.show = false; // set labels.show if (options.series.pie.label.show == "auto") { if (options.legend.show) { options.series.pie.label.show = false; } else { options.series.pie.label.show = true; } } // set radius if (options.series.pie.radius == "auto") { if (options.series.pie.label.show) { options.series.pie.radius = 3/4; } else { options.series.pie.radius = 1; } } // ensure sane tilt if (options.series.pie.tilt > 1) { options.series.pie.tilt = 1; } else if (options.series.pie.tilt < 0) { options.series.pie.tilt = 0; } } }); plot.hooks.bindEvents.push(function(plot, eventHolder) { var options = plot.getOptions(); if (options.series.pie.show) { if (options.grid.hoverable) { eventHolder.unbind("mousemove").mousemove(onMouseMove); } if (options.grid.clickable) { eventHolder.unbind("click").click(onClick); } } }); plot.hooks.processDatapoints.push(function(plot, series, data, datapoints) { var options = plot.getOptions(); if (options.series.pie.show) { processDatapoints(plot, series, data, datapoints); } }); plot.hooks.drawOverlay.push(function(plot, octx) { var options = plot.getOptions(); if (options.series.pie.show) { drawOverlay(plot, octx); } }); plot.hooks.draw.push(function(plot, newCtx) { var options = plot.getOptions(); if (options.series.pie.show) { draw(plot, newCtx); } }); function processDatapoints(plot, series, datapoints) { if (!processed) { processed = true; canvas = plot.getCanvas(); target = $(canvas).parent(); options = plot.getOptions(); plot.setData(combine(plot.getData())); } } function combine(data) { var total = 0, combined = 0, numCombined = 0, color = options.series.pie.combine.color, newdata = []; // Fix up the raw data from Flot, ensuring the data is numeric for (var i = 0; i < data.length; ++i) { var value = data[i].data; // If the data is an array, we'll assume that it's a standard // Flot x-y pair, and are concerned only with the second value. // Note how we use the original array, rather than creating a // new one; this is more efficient and preserves any extra data // that the user may have stored in higher indexes. if ($.isArray(value) && value.length == 1) { value = value[0]; } if ($.isArray(value)) { // Equivalent to $.isNumeric() but compatible with jQuery < 1.7 if (!isNaN(parseFloat(value[1])) && isFinite(value[1])) { value[1] = +value[1]; } else { value[1] = 0; } } else if (!isNaN(parseFloat(value)) && isFinite(value)) { value = [1, +value]; } else { value = [1, 0]; } data[i].data = [value]; } // Sum up all the slices, so we can calculate percentages for each for (var i = 0; i < data.length; ++i) { total += data[i].data[0][1]; } // Count the number of slices with percentages below the combine // threshold; if it turns out to be just one, we won't combine. for (var i = 0; i < data.length; ++i) { var value = data[i].data[0][1]; if (value / total <= options.series.pie.combine.threshold) { combined += value; numCombined++; if (!color) { color = data[i].color; } } } for (var i = 0; i < data.length; ++i) { var value = data[i].data[0][1]; if (numCombined < 2 || value / total > options.series.pie.combine.threshold) { newdata.push( $.extend(data[i], { /* extend to allow keeping all other original data values and using them e.g. in labelFormatter. */ data: [[1, value]], color: data[i].color, label: data[i].label, angle: value * Math.PI * 2 / total, percent: value / (total / 100) }) ); } } if (numCombined > 1) { newdata.push({ data: [[1, combined]], color: color, label: options.series.pie.combine.label, angle: combined * Math.PI * 2 / total, percent: combined / (total / 100) }); } return newdata; } function draw(plot, newCtx) { if (!target) { return; // if no series were passed } var canvasWidth = plot.getPlaceholder().width(), canvasHeight = plot.getPlaceholder().height(), legendWidth = target.children().filter(".legend").children().width() || 0; ctx = newCtx; // WARNING: HACK! REWRITE THIS CODE AS SOON AS POSSIBLE! // When combining smaller slices into an 'other' slice, we need to // add a new series. Since Flot gives plugins no way to modify the // list of series, the pie plugin uses a hack where the first call // to processDatapoints results in a call to setData with the new // list of series, then subsequent processDatapoints do nothing. // The plugin-global 'processed' flag is used to control this hack; // it starts out false, and is set to true after the first call to // processDatapoints. // Unfortunately this turns future setData calls into no-ops; they // call processDatapoints, the flag is true, and nothing happens. // To fix this we'll set the flag back to false here in draw, when // all series have been processed, so the next sequence of calls to // processDatapoints once again starts out with a slice-combine. // This is really a hack; in 0.9 we need to give plugins a proper // way to modify series before any processing begins. processed = false; // calculate maximum radius and center point maxRadius = Math.min(canvasWidth, canvasHeight / options.series.pie.tilt) / 2; centerTop = canvasHeight / 2 + options.series.pie.offset.top; centerLeft = canvasWidth / 2; if (options.series.pie.offset.left == "auto") { if (options.legend.position.match("w")) { centerLeft += legendWidth / 2; } else { centerLeft -= legendWidth / 2; } if (centerLeft < maxRadius) { centerLeft = maxRadius; } else if (centerLeft > canvasWidth - maxRadius) { centerLeft = canvasWidth - maxRadius; } } else { centerLeft += options.series.pie.offset.left; } var slices = plot.getData(), attempts = 0; // Keep shrinking the pie's radius until drawPie returns true, // indicating that all the labels fit, or we try too many times. do { if (attempts > 0) { maxRadius *= REDRAW_SHRINK; } attempts += 1; clear(); if (options.series.pie.tilt <= 0.8) { drawShadow(); } } while (!drawPie() && attempts < REDRAW_ATTEMPTS) if (attempts >= REDRAW_ATTEMPTS) { clear(); target.prepend("<div class='error'>Could not draw pie with labels contained inside canvas</div>"); } if (plot.setSeries && plot.insertLegend) { plot.setSeries(slices); plot.insertLegend(); } // we're actually done at this point, just defining internal functions at this point function clear() { ctx.clearRect(0, 0, canvasWidth, canvasHeight); target.children().filter(".pieLabel, .pieLabelBackground").remove(); } function drawShadow() { var shadowLeft = options.series.pie.shadow.left; var shadowTop = options.series.pie.shadow.top; var edge = 10; var alpha = options.series.pie.shadow.alpha; var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius; if (radius >= canvasWidth / 2 - shadowLeft || radius * options.series.pie.tilt >= canvasHeight / 2 - shadowTop || radius <= edge) { return; // shadow would be outside canvas, so don't draw it } ctx.save(); ctx.translate(shadowLeft,shadowTop); ctx.globalAlpha = alpha; ctx.fillStyle = "#000"; // center and rotate to starting position ctx.translate(centerLeft,centerTop); ctx.scale(1, options.series.pie.tilt); //radius -= edge; for (var i = 1; i <= edge; i++) { ctx.beginPath(); ctx.arc(0, 0, radius, 0, Math.PI * 2, false); ctx.fill(); radius -= i; } ctx.restore(); } function drawPie() { var startAngle = Math.PI * options.series.pie.startAngle; var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius; // center and rotate to starting position ctx.save(); ctx.translate(centerLeft,centerTop); ctx.scale(1, options.series.pie.tilt); //ctx.rotate(startAngle); // start at top; -- This doesn't work properly in Opera // draw slices ctx.save(); var currentAngle = startAngle; for (var i = 0; i < slices.length; ++i) { slices[i].startAngle = currentAngle; drawSlice(slices[i].angle, slices[i].color, true); } ctx.restore(); // draw slice outlines if (options.series.pie.stroke.width > 0) { ctx.save(); ctx.lineWidth = options.series.pie.stroke.width; currentAngle = startAngle; for (var i = 0; i < slices.length; ++i) { drawSlice(slices[i].angle, options.series.pie.stroke.color, false); } ctx.restore(); } // draw donut hole drawDonutHole(ctx); ctx.restore(); // Draw the labels, returning true if they fit within the plot if (options.series.pie.label.show) { return drawLabels(); } else return true; function drawSlice(angle, color, fill) { if (angle <= 0 || isNaN(angle)) { return; } if (fill) { ctx.fillStyle = color; } else { ctx.strokeStyle = color; ctx.lineJoin = "round"; } ctx.beginPath(); if (Math.abs(angle - Math.PI * 2) > 0.000000001) { ctx.moveTo(0, 0); // Center of the pie } //ctx.arc(0, 0, radius, 0, angle, false); // This doesn't work properly in Opera ctx.arc(0, 0, radius,currentAngle, currentAngle + angle / 2, false); ctx.arc(0, 0, radius,currentAngle + angle / 2, currentAngle + angle, false); ctx.closePath(); //ctx.rotate(angle); // This doesn't work properly in Opera currentAngle += angle; if (fill) { ctx.fill(); } else { ctx.stroke(); } } function drawLabels() { var currentAngle = startAngle; var radius = options.series.pie.label.radius > 1 ? options.series.pie.label.radius : maxRadius * options.series.pie.label.radius; for (var i = 0; i < slices.length; ++i) { if (slices[i].percent >= options.series.pie.label.threshold * 100) { if (!drawLabel(slices[i], currentAngle, i)) { return false; } } currentAngle += slices[i].angle; } return true; function drawLabel(slice, startAngle, index) { if (slice.data[0][1] == 0) { return true; } // format label text var lf = options.legend.labelFormatter, text, plf = options.series.pie.label.formatter; if (lf) { text = lf(slice.label, slice); } else { text = slice.label; } if (plf) { text = plf(text, slice); } var halfAngle = ((startAngle + slice.angle) + startAngle) / 2; var x = centerLeft + Math.round(Math.cos(halfAngle) * radius); var y = centerTop + Math.round(Math.sin(halfAngle) * radius) * options.series.pie.tilt; var html = "<span class='pieLabel' id='pieLabel" + index + "' style='position:absolute;top:" + y + "px;left:" + x + "px;'>" + text + "</span>"; target.append(html); var label = target.children("#pieLabel" + index); var labelTop = (y - label.height() / 2); var labelLeft = (x - label.width() / 2); label.css("top", labelTop); label.css("left", labelLeft); // check to make sure that the label is not outside the canvas if (0 - labelTop > 0 || 0 - labelLeft > 0 || canvasHeight - (labelTop + label.height()) < 0 || canvasWidth - (labelLeft + label.width()) < 0) { return false; } if (options.series.pie.label.background.opacity != 0) { // put in the transparent background separately to avoid blended labels and label boxes var c = options.series.pie.label.background.color; if (c == null) { c = slice.color; } var pos = "top:" + labelTop + "px;left:" + labelLeft + "px;"; $("<div class='pieLabelBackground' style='position:absolute;width:" + label.width() + "px;height:" + label.height() + "px;" + pos + "background-color:" + c + ";'></div>") .css("opacity", options.series.pie.label.background.opacity) .insertBefore(label); } return true; } // end individual label function } // end drawLabels function } // end drawPie function } // end draw function // Placed here because it needs to be accessed from multiple locations function drawDonutHole(layer) { if (options.series.pie.innerRadius > 0) { // subtract the center layer.save(); var innerRadius = options.series.pie.innerRadius > 1 ? options.series.pie.innerRadius : maxRadius * options.series.pie.innerRadius; layer.globalCompositeOperation = "destination-out"; // this does not work with excanvas, but it will fall back to using the stroke color layer.beginPath(); layer.fillStyle = options.series.pie.stroke.color; layer.arc(0, 0, innerRadius, 0, Math.PI * 2, false); layer.fill(); layer.closePath(); layer.restore(); // add inner stroke layer.save(); layer.beginPath(); layer.strokeStyle = options.series.pie.stroke.color; layer.arc(0, 0, innerRadius, 0, Math.PI * 2, false); layer.stroke(); layer.closePath(); layer.restore(); // TODO: add extra shadow inside hole (with a mask) if the pie is tilted. } } //-- Additional Interactive related functions -- function isPointInPoly(poly, pt) { for(var c = false, i = -1, l = poly.length, j = l - 1; ++i < l; j = i) ((poly[i][1] <= pt[1] && pt[1] < poly[j][1]) || (poly[j][1] <= pt[1] && pt[1]< poly[i][1])) && (pt[0] < (poly[j][0] - poly[i][0]) * (pt[1] - poly[i][1]) / (poly[j][1] - poly[i][1]) + poly[i][0]) && (c = !c); return c; } function findNearbySlice(mouseX, mouseY) { var slices = plot.getData(), options = plot.getOptions(), radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius, x, y; for (var i = 0; i < slices.length; ++i) { var s = slices[i]; if (s.pie.show) { ctx.save(); ctx.beginPath(); ctx.moveTo(0, 0); // Center of the pie //ctx.scale(1, options.series.pie.tilt); // this actually seems to break everything when here. ctx.arc(0, 0, radius, s.startAngle, s.startAngle + s.angle / 2, false); ctx.arc(0, 0, radius, s.startAngle + s.angle / 2, s.startAngle + s.angle, false); ctx.closePath(); x = mouseX - centerLeft; y = mouseY - centerTop; if (ctx.isPointInPath) { if (ctx.isPointInPath(mouseX - centerLeft, mouseY - centerTop)) { ctx.restore(); return { datapoint: [s.percent, s.data], dataIndex: 0, series: s, seriesIndex: i }; } } else { // excanvas for IE doesn;t support isPointInPath, this is a workaround. var p1X = radius * Math.cos(s.startAngle), p1Y = radius * Math.sin(s.startAngle), p2X = radius * Math.cos(s.startAngle + s.angle / 4), p2Y = radius * Math.sin(s.startAngle + s.angle / 4), p3X = radius * Math.cos(s.startAngle + s.angle / 2), p3Y = radius * Math.sin(s.startAngle + s.angle / 2), p4X = radius * Math.cos(s.startAngle + s.angle / 1.5), p4Y = radius * Math.sin(s.startAngle + s.angle / 1.5), p5X = radius * Math.cos(s.startAngle + s.angle), p5Y = radius * Math.sin(s.startAngle + s.angle), arrPoly = [[0, 0], [p1X, p1Y], [p2X, p2Y], [p3X, p3Y], [p4X, p4Y], [p5X, p5Y]], arrPoint = [x, y]; // TODO: perhaps do some mathmatical trickery here with the Y-coordinate to compensate for pie tilt? if (isPointInPoly(arrPoly, arrPoint)) { ctx.restore(); return { datapoint: [s.percent, s.data], dataIndex: 0, series: s, seriesIndex: i }; } } ctx.restore(); } } return null; } function onMouseMove(e) { triggerClickHoverEvent("plothover", e); } function onClick(e) { triggerClickHoverEvent("plotclick", e); } // trigger click or hover event (they send the same parameters so we share their code) function triggerClickHoverEvent(eventname, e) { var offset = plot.offset(); var canvasX = parseInt(e.pageX - offset.left); var canvasY = parseInt(e.pageY - offset.top); var item = findNearbySlice(canvasX, canvasY); if (options.grid.autoHighlight) { // clear auto-highlights for (var i = 0; i < highlights.length; ++i) { var h = highlights[i]; if (h.auto == eventname && !(item && h.series == item.series)) { unhighlight(h.series); } } } // highlight the slice if (item) { highlight(item.series, eventname); } // trigger any hover bind events var pos = { pageX: e.pageX, pageY: e.pageY }; target.trigger(eventname, [pos, item]); } function highlight(s, auto) { //if (typeof s == "number") { // s = series[s]; //} var i = indexOfHighlight(s); if (i == -1) { highlights.push({ series: s, auto: auto }); plot.triggerRedrawOverlay(); } else if (!auto) { highlights[i].auto = false; } } function unhighlight(s) { if (s == null) { highlights = []; plot.triggerRedrawOverlay(); } //if (typeof s == "number") { // s = series[s]; //} var i = indexOfHighlight(s); if (i != -1) { highlights.splice(i, 1); plot.triggerRedrawOverlay(); } } function indexOfHighlight(s) { for (var i = 0; i < highlights.length; ++i) { var h = highlights[i]; if (h.series == s) return i; } return -1; } function drawOverlay(plot, octx) { var options = plot.getOptions(); var radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius; octx.save(); octx.translate(centerLeft, centerTop); octx.scale(1, options.series.pie.tilt); for (var i = 0; i < highlights.length; ++i) { drawHighlight(highlights[i].series); } drawDonutHole(octx); octx.restore(); function drawHighlight(series) { if (series.angle <= 0 || isNaN(series.angle)) { return; } //octx.fillStyle = parseColor(options.series.pie.highlight.color).scale(null, null, null, options.series.pie.highlight.opacity).toString(); octx.fillStyle = "rgba(255, 255, 255, " + options.series.pie.highlight.opacity + ")"; // this is temporary until we have access to parseColor octx.beginPath(); if (Math.abs(series.angle - Math.PI * 2) > 0.000000001) { octx.moveTo(0, 0); // Center of the pie } octx.arc(0, 0, radius, series.startAngle, series.startAngle + series.angle / 2, false); octx.arc(0, 0, radius, series.startAngle + series.angle / 2, series.startAngle + series.angle, false); octx.closePath(); octx.fill(); } } } // end init (plugin body) // define pie specific options and their default values var options = { series: { pie: { show: false, radius: "auto", // actual radius of the visible pie (based on full calculated radius if <=1, or hard pixel value) innerRadius: 0, /* for donut */ startAngle: 3/2, tilt: 1, shadow: { left: 5, // shadow left offset top: 15, // shadow top offset alpha: 0.02 // shadow alpha }, offset: { top: 0, left: "auto" }, stroke: { color: "#fff", width: 1 }, label: { show: "auto", formatter: function(label, slice) { return "<div style='font-size:x-small;text-align:center;padding:2px;color:" + slice.color + ";'>" + label + "<br/>" + Math.round(slice.percent) + "%</div>"; }, // formatter function radius: 1, // radius at which to place the labels (based on full calculated radius if <=1, or hard pixel value) background: { color: null, opacity: 0 }, threshold: 0 // percentage at which to hide the label (i.e. the slice is too narrow) }, combine: { threshold: -1, // percentage at which to combine little slices into one larger slice color: null, // color to give the new slice (auto-generated if null) label: "Other" // label to give the new slice }, highlight: { //color: "#fff", // will add this functionality once parseColor is available opacity: 0.5 } } } }; $.plot.plugins.push({ init: init, options: options, name: "pie", version: "1.1" }); })(jQuery); /* Flot plugin for automatically redrawing plots as the placeholder resizes. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. It works by listening for changes on the placeholder div (through the jQuery resize event plugin) - if the size changes, it will redraw the plot. There are no options. If you need to disable the plugin for some plots, you can just fix the size of their placeholders. */ /* Inline dependency: * jQuery resize event - v1.1 - 3/14/2010 * http://benalman.com/projects/jquery-resize-plugin/ * * Copyright (c) 2010 "Cowboy" Ben Alman * Dual licensed under the MIT and GPL licenses. * http://benalman.com/about/license/ */ (function($,e,t){"$:nomunge";var i=[],n=$.resize=$.extend($.resize,{}),a,r=false,s="setTimeout",u="resize",m=u+"-special-event",o="pendingDelay",l="activeDelay",f="throttleWindow";n[o]=200;n[l]=20;n[f]=true;$.event.special[u]={setup:function(){if(!n[f]&&this[s]){return false}var e=$(this);i.push(this);e.data(m,{w:e.width(),h:e.height()});if(i.length===1){a=t;h()}},teardown:function(){if(!n[f]&&this[s]){return false}var e=$(this);for(var t=i.length-1;t>=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(":visible")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this); (function ($) { var options = { }; // no options function init(plot) { function onResize() { var placeholder = plot.getPlaceholder(); // somebody might have hidden us and we can't plot // when we don't have the dimensions if (placeholder.width() == 0 || placeholder.height() == 0) return; plot.resize(); plot.setupGrid(); plot.draw(); } function bindEvents(plot, eventHolder) { plot.getPlaceholder().resize(onResize); } function shutdown(plot, eventHolder) { plot.getPlaceholder().unbind("resize", onResize); } plot.hooks.bindEvents.push(bindEvents); plot.hooks.shutdown.push(shutdown); } $.plot.plugins.push({ init: init, options: options, name: 'resize', version: '1.0' }); })(jQuery); /* Pretty handling of time axes. Copyright (c) 2007-2014 IOLA and Ole Laursen. Licensed under the MIT license. Set axis.mode to "time" to enable. See the section "Time series data" in API.txt for details. */ (function($) { var options = { xaxis: { timezone: null, // "browser" for local to the client or timezone for timezone-js timeformat: null, // format string to use twelveHourClock: false, // 12 or 24 time in time mode monthNames: null // list of names of months } }; // round to nearby lower multiple of base function floorInBase(n, base) { return base * Math.floor(n / base); } // Returns a string with the date d formatted according to fmt. // A subset of the Open Group's strftime format is supported. function formatDate(d, fmt, monthNames, dayNames) { if (typeof d.strftime == "function") { return d.strftime(fmt); } var leftPad = function(n, pad) { n = "" + n; pad = "" + (pad == null ? "0" : pad); return n.length == 1 ? pad + n : n; }; var r = []; var escape = false; var hours = d.getHours(); var isAM = hours < 12; if (monthNames == null) { monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; } if (dayNames == null) { dayNames = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; } var hours12; if (hours > 12) { hours12 = hours - 12; } else if (hours == 0) { hours12 = 12; } else { hours12 = hours; } for (var i = 0; i < fmt.length; ++i) { var c = fmt.charAt(i); if (escape) { switch (c) { case 'a': c = "" + dayNames[d.getDay()]; break; case 'b': c = "" + monthNames[d.getMonth()]; break; case 'd': c = leftPad(d.getDate()); break; case 'e': c = leftPad(d.getDate(), " "); break; case 'h': // For back-compat with 0.7; remove in 1.0 case 'H': c = leftPad(hours); break; case 'I': c = leftPad(hours12); break; case 'l': c = leftPad(hours12, " "); break; case 'm': c = leftPad(d.getMonth() + 1); break; case 'M': c = leftPad(d.getMinutes()); break; // quarters not in Open Group's strftime specification case 'q': c = "" + (Math.floor(d.getMonth() / 3) + 1); break; case 'S': c = leftPad(d.getSeconds()); break; case 'y': c = leftPad(d.getFullYear() % 100); break; case 'Y': c = "" + d.getFullYear(); break; case 'p': c = (isAM) ? ("" + "am") : ("" + "pm"); break; case 'P': c = (isAM) ? ("" + "AM") : ("" + "PM"); break; case 'w': c = "" + d.getDay(); break; } r.push(c); escape = false; } else { if (c == "%") { escape = true; } else { r.push(c); } } } return r.join(""); } // To have a consistent view of time-based data independent of which time // zone the client happens to be in we need a date-like object independent // of time zones. This is done through a wrapper that only calls the UTC // versions of the accessor methods. function makeUtcWrapper(d) { function addProxyMethod(sourceObj, sourceMethod, targetObj, targetMethod) { sourceObj[sourceMethod] = function() { return targetObj[targetMethod].apply(targetObj, arguments); }; }; var utc = { date: d }; // support strftime, if found if (d.strftime != undefined) { addProxyMethod(utc, "strftime", d, "strftime"); } addProxyMethod(utc, "getTime", d, "getTime"); addProxyMethod(utc, "setTime", d, "setTime"); var props = ["Date", "Day", "FullYear", "Hours", "Milliseconds", "Minutes", "Month", "Seconds"]; for (var p = 0; p < props.length; p++) { addProxyMethod(utc, "get" + props[p], d, "getUTC" + props[p]); addProxyMethod(utc, "set" + props[p], d, "setUTC" + props[p]); } return utc; }; // select time zone strategy. This returns a date-like object tied to the // desired timezone function dateGenerator(ts, opts) { if (opts.timezone == "browser") { return new Date(ts); } else if (!opts.timezone || opts.timezone == "utc") { return makeUtcWrapper(new Date(ts)); } else if (typeof timezoneJS != "undefined" && typeof timezoneJS.Date != "undefined") { var d = new timezoneJS.Date(); // timezone-js is fickle, so be sure to set the time zone before // setting the time. d.setTimezone(opts.timezone); d.setTime(ts); return d; } else { return makeUtcWrapper(new Date(ts)); } } // map of app. size of time units in milliseconds var timeUnitSize = { "second": 1000, "minute": 60 * 1000, "hour": 60 * 60 * 1000, "day": 24 * 60 * 60 * 1000, "month": 30 * 24 * 60 * 60 * 1000, "quarter": 3 * 30 * 24 * 60 * 60 * 1000, "year": 365.2425 * 24 * 60 * 60 * 1000 }; // the allowed tick sizes, after 1 year we use // an integer algorithm var baseSpec = [ [1, "second"], [2, "second"], [5, "second"], [10, "second"], [30, "second"], [1, "minute"], [2, "minute"], [5, "minute"], [10, "minute"], [30, "minute"], [1, "hour"], [2, "hour"], [4, "hour"], [8, "hour"], [12, "hour"], [1, "day"], [2, "day"], [3, "day"], [0.25, "month"], [0.5, "month"], [1, "month"], [2, "month"] ]; // we don't know which variant(s) we'll need yet, but generating both is // cheap var specMonths = baseSpec.concat([[3, "month"], [6, "month"], [1, "year"]]); var specQuarters = baseSpec.concat([[1, "quarter"], [2, "quarter"], [1, "year"]]); function init(plot) { plot.hooks.processOptions.push(function (plot, options) { $.each(plot.getAxes(), function(axisName, axis) { var opts = axis.options; if (opts.mode == "time") { axis.tickGenerator = function(axis) { var ticks = []; var d = dateGenerator(axis.min, opts); var minSize = 0; // make quarter use a possibility if quarters are // mentioned in either of these options var spec = (opts.tickSize && opts.tickSize[1] === "quarter") || (opts.minTickSize && opts.minTickSize[1] === "quarter") ? specQuarters : specMonths; if (opts.minTickSize != null) { if (typeof opts.tickSize == "number") { minSize = opts.tickSize; } else { minSize = opts.minTickSize[0] * timeUnitSize[opts.minTickSize[1]]; } } for (var i = 0; i < spec.length - 1; ++i) { if (axis.delta < (spec[i][0] * timeUnitSize[spec[i][1]] + spec[i + 1][0] * timeUnitSize[spec[i + 1][1]]) / 2 && spec[i][0] * timeUnitSize[spec[i][1]] >= minSize) { break; } } var size = spec[i][0]; var unit = spec[i][1]; // special-case the possibility of several years if (unit == "year") { // if given a minTickSize in years, just use it, // ensuring that it's an integer if (opts.minTickSize != null && opts.minTickSize[1] == "year") { size = Math.floor(opts.minTickSize[0]); } else { var magn = Math.pow(10, Math.floor(Math.log(axis.delta / timeUnitSize.year) / Math.LN10)); var norm = (axis.delta / timeUnitSize.year) / magn; if (norm < 1.5) { size = 1; } else if (norm < 3) { size = 2; } else if (norm < 7.5) { size = 5; } else { size = 10; } size *= magn; } // minimum size for years is 1 if (size < 1) { size = 1; } } axis.tickSize = opts.tickSize || [size, unit]; var tickSize = axis.tickSize[0]; unit = axis.tickSize[1]; var step = tickSize * timeUnitSize[unit]; if (unit == "second") { d.setSeconds(floorInBase(d.getSeconds(), tickSize)); } else if (unit == "minute") { d.setMinutes(floorInBase(d.getMinutes(), tickSize)); } else if (unit == "hour") { d.setHours(floorInBase(d.getHours(), tickSize)); } else if (unit == "month") { d.setMonth(floorInBase(d.getMonth(), tickSize)); } else if (unit == "quarter") { d.setMonth(3 * floorInBase(d.getMonth() / 3, tickSize)); } else if (unit == "year") { d.setFullYear(floorInBase(d.getFullYear(), tickSize)); } // reset smaller components d.setMilliseconds(0); if (step >= timeUnitSize.minute) { d.setSeconds(0); } if (step >= timeUnitSize.hour) { d.setMinutes(0); } if (step >= timeUnitSize.day) { d.setHours(0); } if (step >= timeUnitSize.day * 4) { d.setDate(1); } if (step >= timeUnitSize.month * 2) { d.setMonth(floorInBase(d.getMonth(), 3)); } if (step >= timeUnitSize.quarter * 2) { d.setMonth(floorInBase(d.getMonth(), 6)); } if (step >= timeUnitSize.year) { d.setMonth(0); } var carry = 0; var v = Number.NaN; var prev; do { prev = v; v = d.getTime(); ticks.push(v); if (unit == "month" || unit == "quarter") { if (tickSize < 1) { // a bit complicated - we'll divide the // month/quarter up but we need to take // care of fractions so we don't end up in // the middle of a day d.setDate(1); var start = d.getTime(); d.setMonth(d.getMonth() + (unit == "quarter" ? 3 : 1)); var end = d.getTime(); d.setTime(v + carry * timeUnitSize.hour + (end - start) * tickSize); carry = d.getHours(); d.setHours(0); } else { d.setMonth(d.getMonth() + tickSize * (unit == "quarter" ? 3 : 1)); } } else if (unit == "year") { d.setFullYear(d.getFullYear() + tickSize); } else { d.setTime(v + step); } } while (v < axis.max && v != prev); return ticks; }; axis.tickFormatter = function (v, axis) { var d = dateGenerator(v, axis.options); // first check global format if (opts.timeformat != null) { return formatDate(d, opts.timeformat, opts.monthNames, opts.dayNames); } // possibly use quarters if quarters are mentioned in // any of these places var useQuarters = (axis.options.tickSize && axis.options.tickSize[1] == "quarter") || (axis.options.minTickSize && axis.options.minTickSize[1] == "quarter"); var t = axis.tickSize[0] * timeUnitSize[axis.tickSize[1]]; var span = axis.max - axis.min; var suffix = (opts.twelveHourClock) ? " %p" : ""; var hourCode = (opts.twelveHourClock) ? "%I" : "%H"; var fmt; if (t < timeUnitSize.minute) { fmt = hourCode + ":%M:%S" + suffix; } else if (t < timeUnitSize.day) { if (span < 2 * timeUnitSize.day) { fmt = hourCode + ":%M" + suffix; } else { fmt = "%b %d " + hourCode + ":%M" + suffix; } } else if (t < timeUnitSize.month) { fmt = "%b %d"; } else if ((useQuarters && t < timeUnitSize.quarter) || (!useQuarters && t < timeUnitSize.year)) { if (span < timeUnitSize.year) { fmt = "%b"; } else { fmt = "%b %Y"; } } else if (useQuarters && t < timeUnitSize.year) { if (span < timeUnitSize.year) { fmt = "Q%q"; } else { fmt = "Q%q %Y"; } } else { fmt = "%Y"; } var rt = formatDate(d, fmt, opts.monthNames, opts.dayNames); return rt; }; } }); }); } $.plot.plugins.push({ init: init, options: options, name: 'time', version: '1.0' }); // Time-axis support used to be in Flot core, which exposed the // formatDate function on the plot object. Various plugins depend // on the function, so we need to re-expose it here. $.plot.formatDate = formatDate; $.plot.dateGenerator = dateGenerator; })(jQuery); /* * jquery.flot.tooltip * * description: easy-to-use tooltips for Flot charts * version: 0.8.5 * authors: Krzysztof Urbas @krzysu [myviews.pl],Evan Steinkerchner @Roundaround * website: https://github.com/krzysu/flot.tooltip * * build on 2015-05-11 * released under MIT License, 2012 */ !function(a){var b={tooltip:{show:!1,cssClass:"flotTip",content:"%s | X: %x | Y: %y",xDateFormat:null,yDateFormat:null,monthNames:null,dayNames:null,shifts:{x:10,y:20},defaultTheme:!0,lines:!1,onHover:function(a,b){},$compat:!1}};b.tooltipOpts=b.tooltip;var c=function(a){this.tipPosition={x:0,y:0},this.init(a)};c.prototype.init=function(b){function c(a){var c={};c.x=a.pageX,c.y=a.pageY,b.setTooltipPosition(c)}function d(c,d,f){var g=function(a,b,c,d){return Math.sqrt((c-a)*(c-a)+(d-b)*(d-b))},h=function(a,b,c,d,e,f,h){if(!h||(h=function(a,b,c,d,e,f){if("undefined"!=typeof c)return{x:c,y:b};if("undefined"!=typeof d)return{x:a,y:d};var g,h=-1/((f-d)/(e-c));return{x:g=(e*(a*h-b+d)+c*(a*-h+b-f))/(h*(e-c)+d-f),y:h*g-h*a+b}}(a,b,c,d,e,f),h.x>=Math.min(c,e)&&h.x<=Math.max(c,e)&&h.y>=Math.min(d,f)&&h.y<=Math.max(d,f))){var i=d-f,j=e-c,k=c*f-d*e;return Math.abs(i*a+j*b+k)/Math.sqrt(i*i+j*j)}var l=g(a,b,c,d),m=g(a,b,e,f);return l>m?m:l};if(f)b.showTooltip(f,d);else if(e.plotOptions.series.lines.show&&e.tooltipOptions.lines===!0){var i=e.plotOptions.grid.mouseActiveRadius,j={distance:i+1};a.each(b.getData(),function(a,c){for(var e=0,f=-1,i=1;i<c.data.length;i++)c.data[i-1][0]<=d.x&&c.data[i][0]>=d.x&&(e=i-1,f=i);if(-1===f)return void b.hideTooltip();var k={x:c.data[e][0],y:c.data[e][1]},l={x:c.data[f][0],y:c.data[f][1]},m=h(c.xaxis.p2c(d.x),c.yaxis.p2c(d.y),c.xaxis.p2c(k.x),c.yaxis.p2c(k.y),c.xaxis.p2c(l.x),c.yaxis.p2c(l.y),!1);if(m<j.distance){var n=g(k.x,k.y,d.x,d.y)<g(d.x,d.y,l.x,l.y)?e:f,o=(c.datapoints.pointsize,[d.x,k.y+(l.y-k.y)*((d.x-k.x)/(l.x-k.x))]),p={datapoint:o,dataIndex:n,series:c,seriesIndex:a};j={distance:m,item:p}}}),j.distance<i+1?b.showTooltip(j.item,d):b.hideTooltip()}else b.hideTooltip()}var e=this,f=a.plot.plugins.length;if(this.plotPlugins=[],f)for(var g=0;f>g;g++)this.plotPlugins.push(a.plot.plugins[g].name);b.hooks.bindEvents.push(function(b,f){if(e.plotOptions=b.getOptions(),"boolean"==typeof e.plotOptions.tooltip&&(e.plotOptions.tooltipOpts.show=e.plotOptions.tooltip,e.plotOptions.tooltip=e.plotOptions.tooltipOpts,delete e.plotOptions.tooltipOpts),e.plotOptions.tooltip.show!==!1&&"undefined"!=typeof e.plotOptions.tooltip.show){e.tooltipOptions=e.plotOptions.tooltip,e.tooltipOptions.$compat?(e.wfunc="width",e.hfunc="height"):(e.wfunc="innerWidth",e.hfunc="innerHeight");e.getDomElement();a(b.getPlaceholder()).bind("plothover",d),a(f).bind("mousemove",c)}}),b.hooks.shutdown.push(function(b,e){a(b.getPlaceholder()).unbind("plothover",d),a(e).unbind("mousemove",c)}),b.setTooltipPosition=function(b){var c=e.getDomElement(),d=c.outerWidth()+e.tooltipOptions.shifts.x,f=c.outerHeight()+e.tooltipOptions.shifts.y;b.x-a(window).scrollLeft()>a(window)[e.wfunc]()-d&&(b.x-=d),b.y-a(window).scrollTop()>a(window)[e.hfunc]()-f&&(b.y-=f),e.tipPosition.x=b.x,e.tipPosition.y=b.y},b.showTooltip=function(a,c){var d=e.getDomElement(),f=e.stringFormat(e.tooltipOptions.content,a);""!==f&&(d.html(f),b.setTooltipPosition({x:c.pageX,y:c.pageY}),d.css({left:e.tipPosition.x+e.tooltipOptions.shifts.x,top:e.tipPosition.y+e.tooltipOptions.shifts.y}).show(),"function"==typeof e.tooltipOptions.onHover&&e.tooltipOptions.onHover(a,d))},b.hideTooltip=function(){e.getDomElement().hide().html("")}},c.prototype.getDomElement=function(){var b=a("."+this.tooltipOptions.cssClass);return 0===b.length&&(b=a("<div />").addClass(this.tooltipOptions.cssClass),b.appendTo("body").hide().css({position:"absolute"}),this.tooltipOptions.defaultTheme&&b.css({background:"#fff","z-index":"1040",padding:"0.4em 0.6em","border-radius":"0.5em","font-size":"0.8em",border:"1px solid #111",display:"none","white-space":"nowrap"})),b},c.prototype.stringFormat=function(a,b){var c,d,e,f,g=/%p\.{0,1}(\d{0,})/,h=/%s/,i=/%c/,j=/%lx/,k=/%ly/,l=/%x\.{0,1}(\d{0,})/,m=/%y\.{0,1}(\d{0,})/,n="%x",o="%y",p="%ct";if("undefined"!=typeof b.series.threshold?(c=b.datapoint[0],d=b.datapoint[1],e=b.datapoint[2]):"undefined"!=typeof b.series.lines&&b.series.lines.steps?(c=b.series.datapoints.points[2*b.dataIndex],d=b.series.datapoints.points[2*b.dataIndex+1],e=""):(c=b.series.data[b.dataIndex][0],d=b.series.data[b.dataIndex][1],e=b.series.data[b.dataIndex][2]),null===b.series.label&&b.series.originSeries&&(b.series.label=b.series.originSeries.label),"function"==typeof a&&(a=a(b.series.label,c,d,b)),"boolean"==typeof a&&!a)return"";if("undefined"!=typeof b.series.percent?f=b.series.percent:"undefined"!=typeof b.series.percents&&(f=b.series.percents[b.dataIndex]),"number"==typeof f&&(a=this.adjustValPrecision(g,a,f)),a="undefined"!=typeof b.series.label?a.replace(h,b.series.label):a.replace(h,""),a="undefined"!=typeof b.series.color?a.replace(i,b.series.color):a.replace(i,""),a=this.hasAxisLabel("xaxis",b)?a.replace(j,b.series.xaxis.options.axisLabel):a.replace(j,""),a=this.hasAxisLabel("yaxis",b)?a.replace(k,b.series.yaxis.options.axisLabel):a.replace(k,""),this.isTimeMode("xaxis",b)&&this.isXDateFormat(b)&&(a=a.replace(l,this.timestampToDate(c,this.tooltipOptions.xDateFormat,b.series.xaxis.options))),this.isTimeMode("yaxis",b)&&this.isYDateFormat(b)&&(a=a.replace(m,this.timestampToDate(d,this.tooltipOptions.yDateFormat,b.series.yaxis.options))),"number"==typeof c&&(a=this.adjustValPrecision(l,a,c)),"number"==typeof d&&(a=this.adjustValPrecision(m,a,d)),"undefined"!=typeof b.series.xaxis.ticks){var q;q=this.hasRotatedXAxisTicks(b)?"rotatedTicks":"ticks";var r=b.dataIndex+b.seriesIndex;for(var s in b.series.xaxis[q])if(b.series.xaxis[q].hasOwnProperty(r)&&!this.isTimeMode("xaxis",b)){var t=this.isCategoriesMode("xaxis",b)?b.series.xaxis[q][r].label:b.series.xaxis[q][r].v;t===c&&(a=a.replace(l,b.series.xaxis[q][r].label))}}if("undefined"!=typeof b.series.yaxis.ticks)for(var s in b.series.yaxis.ticks)if(b.series.yaxis.ticks.hasOwnProperty(s)){var u=this.isCategoriesMode("yaxis",b)?b.series.yaxis.ticks[s].label:b.series.yaxis.ticks[s].v;u===d&&(a=a.replace(m,b.series.yaxis.ticks[s].label))}return"undefined"!=typeof b.series.xaxis.tickFormatter&&(a=a.replace(n,b.series.xaxis.tickFormatter(c,b.series.xaxis).replace(/\$/g,"$$"))),"undefined"!=typeof b.series.yaxis.tickFormatter&&(a=a.replace(o,b.series.yaxis.tickFormatter(d,b.series.yaxis).replace(/\$/g,"$$"))),e&&(a=a.replace(p,e)),a},c.prototype.isTimeMode=function(a,b){return"undefined"!=typeof b.series[a].options.mode&&"time"===b.series[a].options.mode},c.prototype.isXDateFormat=function(a){return"undefined"!=typeof this.tooltipOptions.xDateFormat&&null!==this.tooltipOptions.xDateFormat},c.prototype.isYDateFormat=function(a){return"undefined"!=typeof this.tooltipOptions.yDateFormat&&null!==this.tooltipOptions.yDateFormat},c.prototype.isCategoriesMode=function(a,b){return"undefined"!=typeof b.series[a].options.mode&&"categories"===b.series[a].options.mode},c.prototype.timestampToDate=function(b,c,d){var e=a.plot.dateGenerator(b,d);return a.plot.formatDate(e,c,this.tooltipOptions.monthNames,this.tooltipOptions.dayNames)},c.prototype.adjustValPrecision=function(a,b,c){var d,e=b.match(a);return null!==e&&""!==RegExp.$1&&(d=RegExp.$1,c=c.toFixed(d),b=b.replace(a,c)),b},c.prototype.hasAxisLabel=function(b,c){return-1!==a.inArray(this.plotPlugins,"axisLabels")&&"undefined"!=typeof c.series[b].options.axisLabel&&c.series[b].options.axisLabel.length>0},c.prototype.hasRotatedXAxisTicks=function(b){return-1!==a.inArray(this.plotPlugins,"tickRotor")&&"undefined"!=typeof b.series.xaxis.rotatedTicks};var d=function(a){new c(a)};a.plot.plugins.push({init:d,options:b,name:"tooltip",version:"0.8.5"})}(jQuery); $(function() { $('#side-menu').metisMenu(); }); // Loads the correct sidebar on window load, // collapses the sidebar on window resize. // Sets the min-height of #page-wrapper to window size $(function() { $(window).bind("load resize", function() { topOffset = 50; width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width; if (width < 768) { $('div.navbar-collapse').addClass('collapse'); topOffset = 100; // 2-row-menu } else { $('div.navbar-collapse').removeClass('collapse'); } height = ((this.window.innerHeight > 0) ? this.window.innerHeight : this.screen.height) - 1; height = height - topOffset; if (height < 1) height = 1; if (height > topOffset) { $("#page-wrapper").css("min-height", (height) + "px"); } }); var url = window.location; var element = $('ul.nav a').filter(function() { return this.href == url; }).addClass('active').parents('ul').addClass('in'); if (element.is('li')) { element.addClass('active'); } }); // This is a manifest file that'll be compiled into bootstrap_sb_admin_base_v2.js, which will include all the files // listed below. // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. // // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the // compiled file. // // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details // about supported directives. // ; $(document).ready(function () { attachRunListeners(); var wkHeader; }); function attachRunListeners() { setRunDataUrl(); editWorkout(); showWorkoutHeader(); } function Run(id, type, drills, duration, workout){ this.id = id; this.type = type; this.drills = {}; this.duration = duration; this.workout = workout } function setRunDataUrl() { $("#end-run").on('click',function (e) { var url = $(this).data("href"), data = { "run" : { "duration" : duration_seconds, "oneoff_name": wkHeader, "drills_attributes" : currentRun.drills } }; createRun(url, data); }) } function createRun(url, data) { $.ajax({ type: 'POST', url: url, data: data, dataType: 'json', success: function (data) { window.location.pathname = 'users/'+data.user_id+'/runs/'+data.id; }, error: function() { console.log($.makeArray(arguments)); } }); } function editWorkout() { $("#workout-run-input").hide(); $("#save-workout-name").hide(); wkHeader = $("#workout-header").text(); $("#edit-workout-name").on('click', function () { $("#workout-header").hide(); $("#edit-workout-name").hide(); $("#workout-run-input").show(); $("#save-workout-name").show(); $("#workout-run-input").val(wkHeader); }); } function showWorkoutHeader() { $("#save-workout-name").on('click', function () { var wkInput = $("#workout-run-input").val(); wkHeader = wkInput; $("#workout-run-input").hide(); $("#workout-header").text(wkInput); $("#workout-header").show(); $("#edit-workout-name").show(); $("#save-workout-name").hide(); }) } ; 'use strict'; var runs; $(function () { recentRuns(); }); function recentRuns() { var user_id =$("#see-all-ran").attr("href") if (user_id) { user_id = user_id.match(/\d+/)[0] $.get('/users/'+user_id+'/runs.json',function (response) { runs = response; addRunsToWelcome(runs); }); } } function Run(id, exercise, drills, duration, run_date, currentWorkout, oneOffName, target_muscles) { this.exercise = exercise; this.id = id; this.drills = drills; this.duration = duration; this.runDate = run_date; this.workout = currentWorkout; this.oneoff_name = oneOffName; this.target_muscles = target_muscles; } Run.prototype.avgWeight = function () { var weights = this.drills.map(function(drill){ return drill.weight }).reduce(add, 0); var avg; avg = weights/this.drills.length; return avg }; function addRunsToWelcome(runs) { runs.forEach(function (run_data) { var run = new Run(run_data.id, run_data.exercise, run_data.drills, run_data.duration, run_data.run_date, run_data.workout, run_data.oneoff_name, run_data.target_muscles); displayRun(run); }); } function add(a, b) { return a + b; } function tmList(runTargetMuscles) { var muscles = [] for(var tm in runTargetMuscles){ muscles.push(runTargetMuscles[tm].name); } return muscles.join(", ") } function displayRun(run) { var target_muscles = tmList(run.target_muscles), mins = Math.round(run.duration/60), secs = run.duration % 60; secs = secs < 10 ? "0" + secs : secs $("#recent-runs").append("<tr id="+run.id+"><td><a href="+'runs/'+run.id+">"+run.oneoff_name+"</a><td>"+target_muscles+"</td></td><td>"+run.runDate+"</td><td>"+mins+":"+secs+"</td><td><a href="+'runs/'+run.id+" data-method='delete'>X</a></td></tr>") } ; $(document).ready(function () { attachRunListners(); }) var workout; var currentExercise; var exerciseIndex; var exercises; function attachRunListners() { loadWorkout(); startExercise(); endSet(); hideRestTimer(); hideNewExerciseFields(); } function hideRestTimer() { $("#rest-timer-all").hide(); } function hideNewExerciseFields() { $('#new-exercise-button').hide() $("#new-exercise-run-table").hide() $('#start-new-exercise-button').hide() $('#cancel-new-exercise').hide() } function toggleNewExerciseButton() { var set = parseInt($("#current-set").text()); if (currentExercise.sets == set && workout.one_off === true) { $("#new-exercise-button").show(); toggleNewExerciseTable(); } else { $("#new-exercise-button").hide(); } } function toggleNewExerciseTable() { $("#new-exercise-button").on('click', function () { if ($("#new-exercise-run-table").is(":hidden")){ $("#new-exercise-run-table").show(); $('#start-new-exercise-button').show() $('#cancel-new-exercise').show() startNewExerciseListener(); $("#new-exercise-button").hide() } }) $("#cancel-new-exercise").on('click', function () { $('#new-exercise-run-table').hide(); $('#start-new-exercise-button').hide(); $('#cancel-new-exercise').hide(); $('#new-exercise-button').show(); }) } function startExercise() { $("#start-run").on('click', function functionName() { durationTimer(); currentRun = new Run('','', {}, 0,''); $("#drill-fields").removeClass("drill-fields-pause") $("#drill-fields").toggleClass("drill-fields") $("#start-run").addClass("cant-click"); }); } function startNewSet() { $("#new-set").on('click', function () { currentExercise.sets += 1 startRestTimer(); event.preventDefault(); }); } function captureNewExercise(){ newExerciseName = $('#new-exercise-name').val() newExerciseSets = $('#new-exercise-sets').val(); newExerciseRest = $('#new-exercise-rest').val(); tmIdsNode = $('.new-ex-tms:checkbox:checked'); newExerciseTmIds = []; tmIdsNode.each(function( i ) { newExerciseTmIds.push(parseInt(tmIdsNode[i].value)) }); } function emptyNewExercise() { $('#new-exercise-name').val(''); $('#new-exercise-sets').val(''); $('#new-exercise-rest').val(''); } function startNewExerciseListener() { $('#start-new-exercise-button').on('click', function () { captureNewExercise(); emptyNewExercise(); exercise = new Exercise('', newExerciseName, newExerciseSets, '', '', newExerciseRest, true, newExerciseTmIds); console.log('New Exercise') workout.exercises.push(exercise); rest_seconds = 0; hideNewExerciseFields(); $('#start-new-exercise-button').off() }); } function endSet() { $("#end-set").on('click', function (event) { toggleNewExerciseButton(); startRestTimer(); captureSetData(); event.preventDefault(); }); } function startRestTimer() { restTimer(); add15Secs(); shorten15Secs(); } function recordLastSet() { captureRestData(); fillStatus(); $("#drill-fields").toggleClass("drill-fields-pause"); addDrillToRun(); actualRestTime = 0; } function incrementSet() { var set = parseInt($("#current-set").text()) if (set >= currentExercise.sets) { if (workout.exercises.length > exerciseIndex + 1){ set = 1; incrementExercise(); $("#weight-input").val("") $("#rep-input").val("") }else{ recordLastSet(); $('#end-run').trigger('click'); } } else { $("#current-set").text(set + 1) $("#weight-input").val("") $("#rep-input").val("") } } // add new set feature // function addSet(set) { // if (currentExercise.sets == set) // toggleNewSetButton(); // } // function toggleNewSetButton() { // if (currentExercise.one_off === true) { // $("#new-set-button").show(); // } else { // $("#new-set-button").hide(); // } // } function incrementExercise(){ exerciseIndex += 1; console.log('IncrementExercise') currentExercise = workout.exercises[exerciseIndex]; displayExercise(); } function captureSetData() { exerciseName = $("#set-exercise-name").text(); setNumber = $("#current-set").text(); weightInput = $("#weight-input").val(); repInput = $("#rep-input").val(); targetMuscleIds = currentExercise.target_muscle_ids; } function captureRestData() { restInput = actualRestTime; } function fillStatus() { $("#exercise-status-table tbody").append("<tr><td>"+exerciseName+"</td><td>"+setNumber+"</td><td>"+weightInput+"</td><td>"+repInput+"</td><td>"+restInput+"</td><td></td></tr>") } function Workout(id = '', name = '', description = '', exercises = [], one_off = false){ this.id = id; this.name = name; this.description = description; this.exercises = exercises; this.one_off = one_off; } function loadWorkout() { var url = $("html")[0].baseURI, url = url.split("workouts/"); pickWorkoutType(url); } function pickWorkoutType(url) { var oneOffUrl = url[0] if (url.length > 1){ getWorkout(url); } else if ( oneOffUrl.includes('runs/new') ) { workout = new Workout( ' ', "untitled"); workout.one_off = true; currentWorkout = workout; exerciseIndex = 0; loadExercise(workout, oneOffUrl); } } function loadExercise(workout, oneOffUrl) { var exerciseUrl = oneOffUrl.split('/exercises'), exercise_id = exerciseUrl[1].match(/\d+/)[0]; $.get("/exercises/" +exercise_id+ ".json", function ( data ) { var tmOldIds = data.target_muscles.map(function (e) { return e.id }) exercise = new Exercise(data.id, data.name, data.sets, data.reps, data.weight, data.rest_period, one_off = false, tmOldIds); currentExercise = exercise; workout.exercises.push(exercise) }); } function getWorkout(url) { var workout_id = url[1].match(/\d+/)[0]; $.get("/workouts/" +workout_id+ ".json", function ( data ) { workout = new Workout(data.id, data.name, data.description, data.exercises) currentRun.workout = workout; exerciseIndex = 0; currentExercise = workout.exercises[exerciseIndex]; }); } function Exercise(id, name, sets = 1, reps, weight, rest_period, one_off, tmIds) { this.id = id; this.name = name; this.sets = sets; this.reps = reps; this.weight = weight; this.rest_period = rest_period; this.one_off = one_off; this.target_muscle_ids = tmIds; } function Drill(set_number, weight, reps, rest_period, exercise_name, target_muscle_ids) { this.set_number = set_number; this.weight = weight; this.reps = reps; this.rest_period = rest_period; this.exercise_name = exercise_name; this.target_muscle_ids = target_muscle_ids; } function displayExercise() { $("#set-exercise-name").text(currentExercise.name); $("#current-set").text(1); } function addDrillToRun(event) { console.log('addDrillToRun:'+ currentExercise.target_muscle_ids) drill = new Drill(setNumber, weightInput, repInput, restInput, exerciseName, targetMuscleIds); drillNum = Object.keys(currentRun.drills).length + 1; currentRun.drills[drillNum] = drill; } var rest_seconds, duration_seconds, countUp, countDown, setRestTimer, setNumber, weightInput, repInput, restInput, actualRestTime = 0, restBeep = new Audio('/assets/Beep.mp3'), startBeep = new Audio ('/assets/start-bell.mp3'); function durationTimer() { duration_seconds = 0; setInterval('countUp()', 1000); } function swapTimerSet() { if ($("#rest-timer-all").is(":hidden")) { $("#rest-timer-all").show(); $("#run-main").hide(); } else if($("#run-main").is(":hidden")) { $("#rest-timer-all").hide(); $("#run-main").show(); startBeep.play(); removeRestLisners(); } } function removeRestLisners() { $('#shorten-rest').off(); $('#add-15-secs').off(); } function restTimer() { swapTimerSet(); rest_seconds = currentExercise.rest_period; setRestTimer= setInterval('countDown()', 1000); } function countUp() { var minutes = Math.round((duration_seconds - 30)/60), remainingSeconds = duration_seconds % 60; if (remainingSeconds < 10) { remainingSeconds = "0" + remainingSeconds; } $('#duration-timer').html(minutes + ":" + remainingSeconds); duration_seconds++; } // rest_timer - pull time from exercise, grab id from url. function countDown() { var minutes = Math.round((rest_seconds - 30)/60), remainingSeconds = rest_seconds % 60; if (remainingSeconds < 10) { remainingSeconds = "0" + remainingSeconds; } if (rest_seconds < 0) { if ($('#start-new-exercise-button').is(":visible")) { $('#start-new-exercise-button').trigger("click") } swapTimerSet(); incrementSet(); clearInterval(setRestTimer); recordLastSet(); $("#drill-fields").removeClass("drill-fields-pause"); } else { $('#rest-timer').html(minutes + ":" + remainingSeconds); actualRestTime++; if (rest_seconds < 5){ if(restBeep.duration > 0 && !restBeep.paused){ restBeep.pause(); restBeep.currentTime = 0; restBeep.play(); }else{ restBeep.play(); } } rest_seconds--; } } // add 15 secs to rest timer function add15Secs () { $('#add-15-secs').on('click',function () { rest_seconds += 15; }) } function shorten15Secs () { $('#shorten-rest').on('click',function () { rest_seconds -= 15; }) } function setTimerVars(seconds) { var minutes = Math.round((seconds - 30)/60), remainingSeconds = seconds % 60; if (remainingSeconds < 10) { remainingSeconds = "0" + remainingSeconds; } } // start on Go ; $(document).ready(function () { attachListners(); }) function attachListners() { displayInputText(); displayMuscleGroup(); displayExercises(); displayFocusOut(); displayNewExercises(); removeNewExercise(); } function displayInputText() { $(".workout_fields").on('keypress', function (e) { var key = e.which; if(key === 13){ $("#form-wo-name").text($("#workout_name").val()); $("#form-wo-desc").text($("#workout_description").val()); e.preventDefault(); } }); } function displayFocusOut() { $(".workout_fields").on('focusout', function () { $("#form-wo-name").text($("#workout_name").val()); $("#form-wo-desc").text($("#workout_description").val()); }); } function displayMuscleGroup() { $('[id^="workout_muscle_group_ids"]').on('click',function(event) { var fmg = $("#form-muscle-group").text() var idValue = ($("label[for="+ event.currentTarget.id + "]").text()) removeMg(event); if(fmg.indexOf(idValue) < 0){ $("#form-muscle-group").append($("label[for="+ event.currentTarget.id + "]").text()) } }); } function removeMg(event) { $("#"+event.currentTarget.id).on('change',function () { if(this.checked === false) var labelText = $("label[for="+ event.currentTarget.id + "]").text() $("#form-muscle-group").text($("#form-muscle-group").text().split(labelText).join("")) }); } function displayExercises() { $('#exercise-table').on('click','[id^="workout_exercise_ids"]',function(event) { var exercise_id = $(this).val(), form_exer = $("#form-exercises").html(); if(event.currentTarget.checked === false){ removeExercise(event); } else { $.get("/exercises/"+exercise_id+".json", function( data ) { var exercise = new Exercise(data.id, data.name, data.sets, data.reps, data.rating, data.weight, data.rest_period) $("#form-exercises").append("<tr id=exer-row-"+exercise_id+"><td>"+exercise.name+"</td><td>"+exercise.rating+"</td><td>"+exercise.sets+"</td><td>"+exercise.weight+"</td><td>"+exercise.reps+"</td><td>"+exercise.rest_period+"</td></tr>") }); } }) } function removeExercise(event) { $("#exer-row-" + event.currentTarget.value).remove(); } function displayNewExercises() { $(".add-exercise-fields").on('focusout','[id^="workout_exercises_attributes"]', function (event) { var exercise_id = parseInt(this.id.match(/\d+/g)[0]), exercise = "workout_exercises_attributes_", exJquery = "#"+exercise+exercise_id, form_exer = $("#form-exercises").html(); if (form_exer.indexOf("exer-row-"+exercise_id) < 0) { $("#form-exercises").append("<tr id=exer-row-"+exercise_id+"><td>"+$(exJquery+"_name").val()+"</td><td></td><td>"+$(exJquery+"_sets").val()+"</td><td>"+$(exJquery+"_weight").val()+"</td><td>"+$(exJquery+"_reps").val()+"</td><td>"+$(exJquery+"_rest_period").val()+"</td></tr>") } else { $("#exer-row-"+exercise_id).html("<td>"+$(exJquery+"_name").val()+"</td><td></td><td>"+$(exJquery+"_sets").val()+"</td><td>"+$(exJquery+"_weight").val()+"</td><td>"+$(exJquery+"_reps").val()+"</td><td>"+$(exJquery+"_rest_period").val()+"</td></tr>") } }); } function removeNewExercise() { $(".add-exercise-fields").on('click','.remove_nested_fields', function (event) { var exercise_id = parseInt(event.target.previousElementSibling.id.match(/\d+/g)[0]), exercise = "workout_exercises_attributes_", exJquery = "#"+exercise+exercise_id; $("#exer-row-"+exercise_id).remove(); }); } ; $(function () { $("#exercises").on("click", ".pagination a", function(){ $(".pagination").html("Page is loading..."); $.getScript(this.href,function () { displayExercises(); }); return false; }); }); // This is a manifest file that'll be compiled into application.js, which will include all the files // listed below. // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path. // // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the // compiled file. // // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details // about supported directives. // ;
41.639214
32,182
0.600599
73a662f423f44a7b50f1b8bcda1912388cd5e90f
41
js
JavaScript
components/Sidebar/index.js
klaasel/irma_mobile
4e739caec89ab2dae4ca4dc391ba62f225dd6910
[ "Apache-2.0" ]
22
2018-05-18T13:55:58.000Z
2020-06-02T09:29:47.000Z
components/Sidebar/index.js
klaasel/irma_mobile
4e739caec89ab2dae4ca4dc391ba62f225dd6910
[ "Apache-2.0" ]
66
2017-12-02T23:25:07.000Z
2020-05-05T16:51:31.000Z
components/Sidebar/index.js
klaasel/irma_mobile
4e739caec89ab2dae4ca4dc391ba62f225dd6910
[ "Apache-2.0" ]
10
2018-02-28T09:58:40.000Z
2020-04-30T03:52:30.000Z
export default from './SidebarContainer';
41
41
0.804878
73a6674387e3a7e776e0869aa8b7bc7a32c1d7c8
762
js
JavaScript
offline/3.38/dojo/cldr/nls/sk/currency.js
shreepaulnsg/MociPortal_staging_final
82ad837975ef244de4b7f81f1c53f05bd14bcee2
[ "Apache-2.0" ]
null
null
null
offline/3.38/dojo/cldr/nls/sk/currency.js
shreepaulnsg/MociPortal_staging_final
82ad837975ef244de4b7f81f1c53f05bd14bcee2
[ "Apache-2.0" ]
null
null
null
offline/3.38/dojo/cldr/nls/sk/currency.js
shreepaulnsg/MociPortal_staging_final
82ad837975ef244de4b7f81f1c53f05bd14bcee2
[ "Apache-2.0" ]
null
null
null
/* Copyright (c) 2004-2016, The JS Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ //>>built define("dojo/cldr/nls/sk/currency",{AUD_displayName:"austr\u00e1lsky dol\u00e1r",AUD_symbol:"AUD",CAD_displayName:"kanadsk\u00fd dol\u00e1r",CAD_symbol:"CAD",CHF_displayName:"\u0161vaj\u010diarsky frank",CHF_symbol:"CHF",CNY_displayName:"\u010d\u00ednsky j\u00fcan",CNY_symbol:"CNY",EUR_displayName:"euro",EUR_symbol:"\u20ac",GBP_displayName:"britsk\u00e1 libra",GBP_symbol:"GBP",HKD_displayName:"hongkonsk\u00fd dol\u00e1r",HKD_symbol:"HKD",JPY_displayName:"japonsk\u00fd jen",JPY_symbol:"JPY",USD_displayName:"americk\u00fd dol\u00e1r", USD_symbol:"USD"});
84.666667
538
0.786089
73a67d56dac7cd28c884664dcb0195ab7e73820b
16,278
js
JavaScript
addons/TinyShop-Uni/dist/build/h5/static/js/pages-order-order.cb7ab544.js
tesren73/liu
78b80733304d6837864e739e5715b8a563d2b94c
[ "Apache-2.0" ]
2
2020-04-11T10:18:56.000Z
2021-05-16T16:08:48.000Z
dist/build/h5/static/js/pages-order-order.cb7ab544.js
xlturing/TinyShop-UniApp
1e53de6e9d0ce99feada3a17f23376243966c417
[ "Apache-2.0" ]
5
2021-03-10T15:59:40.000Z
2022-02-27T03:34:55.000Z
dist/build/h5/static/js/pages-order-order.cb7ab544.js
xlturing/TinyShop-UniApp
1e53de6e9d0ce99feada3a17f23376243966c417
[ "Apache-2.0" ]
null
null
null
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-order-order"],{"0e1a":function(e,t,a){var i=a("24fb");t=i(!1),t.push([e.i,'.content[data-v-ce1da0e6],uni-page-body[data-v-ce1da0e6]{background:#f8f8f8;height:100%}.swiper-box[data-v-ce1da0e6]{height:calc(100% - 40px)}.list-scroll-content[data-v-ce1da0e6]{height:100%}.uni-swiper-item[data-v-ce1da0e6]{height:auto}.order-item[data-v-ce1da0e6]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding:0 %?30?%;background:#fff;margin-top:%?16?%}.order-item .i-top[data-v-ce1da0e6]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:%?80?%;padding-right:%?30?%;font-size:%?28?%;color:#303133;position:relative}.order-item .i-top .time[data-v-ce1da0e6]{-webkit-box-flex:1;-webkit-flex:1;flex:1}.order-item .i-top .state[data-v-ce1da0e6]{color:#fa436a}.order-item .i-top .del-btn[data-v-ce1da0e6]{padding:%?10?% 0 %?10?% %?36?%;font-size:%?32?%;color:#909399;position:relative}.order-item .i-top .del-btn[data-v-ce1da0e6]:after{content:"";width:0;height:%?30?%;border-left:1px solid #dcdfe6;position:absolute;left:%?20?%;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.order-item .goods-box[data-v-ce1da0e6]{padding-top:%?10?%;height:%?220?%}.order-item .goods-box .goods-item[data-v-ce1da0e6]{overflow:hidden;height:100%;width:%?160?%;margin-right:%?16?%;display:inline-block}.order-item .goods-box .goods-item .goods-img[data-v-ce1da0e6]{display:block;width:100%;height:%?140?%}.order-item .goods-box .goods-item .goods-title[data-v-ce1da0e6]{font-size:%?22?%;line-height:%?32?%}.order-item .goods-box-single[data-v-ce1da0e6]{display:-webkit-box;display:-webkit-flex;display:flex;margin:%?10?% 0;border-bottom:1px solid rgba(0,0,0,.05);box-shadow:0 1px 5px rgba(0,0,0,.02)}.order-item .goods-box-single .goods-img[data-v-ce1da0e6]{display:block;width:%?180?%;height:%?140?%}.order-item .goods-box-single .red[data-v-ce1da0e6]{color:#fa436a;margin:0 %?10?% 0 0;font-size:%?24?%}.order-item .goods-box-single .red[data-v-ce1da0e6]:before{content:"¥";font-size:%?26?%;margin:0 0 0 %?2?%}.order-item .goods-box-single .point[data-v-ce1da0e6]{color:#fa436a;margin:0 %?10?% 0 0;font-size:%?26?%}.order-item .goods-box-single .right[data-v-ce1da0e6]{-webkit-box-flex:1;-webkit-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding:0 %?30?% 0 %?24?%;overflow:hidden}.order-item .goods-box-single .right .title[data-v-ce1da0e6]{font-size:%?24?%;line-height:%?32?%;height:%?60?%;color:#303133}.order-item .goods-box-single .right .attr-box[data-v-ce1da0e6]{font-size:%?24?%;color:#909399}.order-item .goods-box-single .right .price[data-v-ce1da0e6]{font-size:%?24?%;color:#303133}.order-item .price-box[data-v-ce1da0e6]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline;padding:%?15?% %?30?%;font-size:%?26?%;color:#909399}.order-item .price-box .num[data-v-ce1da0e6]{margin:0 %?8?%;color:#303133}.order-item .price-box .price[data-v-ce1da0e6]{font-size:%?32?%;color:#303133}.order-item .price-box .price[data-v-ce1da0e6]:before{content:"¥";font-size:%?24?%;margin:0 %?2?% 0 %?8?%}.order-item .action-box[data-v-ce1da0e6]{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:%?100?%;position:relative;padding-right:%?30?%}.order-item .action-btn[data-v-ce1da0e6]{width:%?160?%;height:%?60?%;margin:0;margin-left:%?24?%;padding:0;text-align:center;line-height:%?60?%;font-size:%?26?%;color:#303133;background:#fff;border-radius:100px;border:1px solid rgba(0,0,0,.05)}.order-item .action-btn[data-v-ce1da0e6]:after{border-radius:100px}.order-item .action-btn.recom[data-v-ce1da0e6]{background:#fff9f9;color:#fa436a}.order-item .action-btn.recom[data-v-ce1da0e6]:after{border-color:#f7bcc8}.load1[data-v-ce1da0e6],.load2[data-v-ce1da0e6],.load3[data-v-ce1da0e6]{height:24px;width:24px}.load2[data-v-ce1da0e6]{-webkit-transform:rotate(30deg);transform:rotate(30deg)}.load3[data-v-ce1da0e6]{-webkit-transform:rotate(60deg);transform:rotate(60deg)}.load1 uni-view[data-v-ce1da0e6]:first-child{-webkit-animation-delay:0s;animation-delay:0s}.load2 uni-view[data-v-ce1da0e6]:first-child{-webkit-animation-delay:.13s;animation-delay:.13s}.load3 uni-view[data-v-ce1da0e6]:first-child{-webkit-animation-delay:.26s;animation-delay:.26s}.load1 uni-view[data-v-ce1da0e6]:nth-child(2){-webkit-animation-delay:.39s;animation-delay:.39s}.load2 uni-view[data-v-ce1da0e6]:nth-child(2){-webkit-animation-delay:.52s;animation-delay:.52s}.load3 uni-view[data-v-ce1da0e6]:nth-child(2){-webkit-animation-delay:.65s;animation-delay:.65s}.load1 uni-view[data-v-ce1da0e6]:nth-child(3){-webkit-animation-delay:.78s;animation-delay:.78s}.load2 uni-view[data-v-ce1da0e6]:nth-child(3){-webkit-animation-delay:.91s;animation-delay:.91s}.load3 uni-view[data-v-ce1da0e6]:nth-child(3){-webkit-animation-delay:1.04s;animation-delay:1.04s}.load1 uni-view[data-v-ce1da0e6]:nth-child(4){-webkit-animation-delay:1.17s;animation-delay:1.17s}.load2 uni-view[data-v-ce1da0e6]:nth-child(4){-webkit-animation-delay:1.3s;animation-delay:1.3s}.load3 uni-view[data-v-ce1da0e6]:nth-child(4){-webkit-animation-delay:1.43s;animation-delay:1.43s}@-webkit-keyframes load-data-v-ce1da0e6{0%{opacity:1}to{opacity:.2}}body.?%PAGE?%[data-v-ce1da0e6]{background:#f8f8f8}',""]),e.exports=t},"21e5":function(e,t,a){"use strict";var i=a("26d0"),n=a.n(i);n.a},"26d0":function(e,t,a){var i=a("0e1a");"string"===typeof i&&(i=[[e.i,i,""]]),i.locals&&(e.exports=i.locals);var n=a("4f06").default;n("40523e7c",i,!0,{sourceMap:!1,shadowMode:!1})},e79f:function(e,t,a){"use strict";var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"content"},[a("v-uni-view",{staticClass:"navbar"},e._l(e.navList,(function(t,i){return a("v-uni-view",{key:i,staticClass:"nav-item",class:{current:e.tabCurrentIndex===i},on:{click:function(t){t=e.$handleEvent(t),e.tabClick(i)}}},[e._v(e._s(t.text))])})),1),a("v-uni-swiper",{staticClass:"swiper-box",attrs:{current:e.tabCurrentIndex,duration:"300"},on:{change:function(t){t=e.$handleEvent(t),e.changeTab(t)}}},e._l(e.navList,(function(t,i){return a("v-uni-swiper-item",{key:i,staticClass:"tab-content"},[a("v-uni-scroll-view",{staticClass:"list-scroll-content",attrs:{"scroll-y":""},on:{scrolltolower:function(t){t=e.$handleEvent(t),e.getMoreOrderList(t)}}},[e._l(e.orderList,(function(t,i){return a("v-uni-view",{key:i,staticClass:"order-item"},[a("v-uni-view",{staticClass:"i-top b-b"},[a("v-uni-text",{staticClass:"time in1line"},[e._v("订单号:"+e._s(t.order_sn))]),0!==parseInt(t.order_status,10)?a("v-uni-text",{staticClass:"state"},[e._v(e._s(e._f("orderStatusFilter")(t.order_status)))]):a("v-uni-view",{staticClass:"example-body"},[a("rf-count-down",{attrs:{"show-day":!1,second:e.second(t.created_at),color:"#FFFFFF","background-color":"#fa436a","border-color":"#fa436a"},on:{timeup:function(a){a=e.$handleEvent(a),e.timeUp(t)}}})],1)],1),e._l(t.product,(function(i,n){return a("v-uni-view",{key:n,staticClass:"goods-box-single",on:{click:function(t){t.stopPropagation(),t=e.$handleEvent(t),e.navTo("/pages/product/product?id="+i.product_id)}}},[a("v-uni-image",{staticClass:"goods-img",attrs:{src:i.product_picture,mode:"aspectFill"}}),a("v-uni-view",{staticClass:"right"},[a("v-uni-text",{staticClass:"title in2line"},[e._v(e._s(i.product_name))]),a("v-uni-text",{staticClass:"attr-box"},[e._v(e._s(i.sku_name||"基础版"))]),2==i.point_exchange_type||4==i.point_exchange_type?a("v-uni-text",[a("v-uni-text",{staticClass:"point"},[e._v(e._s(t.point)+"积分")]),e._v("* "+e._s(i.num))],1):a("v-uni-text",{staticClass:"price"},[a("v-uni-text",{staticClass:"red"},[e._v(e._s(i.product_money)),0===i.pngt_flag?a("v-uni-text",[e._v("+ "+e._s(t.point+"积分"||!1))]):e._e()],1),e._v("* "+e._s(i.num))],1)],1)],1)})),a("v-uni-view",{staticClass:"price-box"},[e._v("共"),a("v-uni-text",{staticClass:"num"},[e._v(e._s(t.product_count))]),e._v("件商品 实付款"),a("v-uni-text",{staticClass:"price"},[e._v(e._s(t.pay_money))])],1),a("v-uni-view",{staticClass:"action-box b-t"},[0==t.order_status?a("v-uni-button",{staticClass:"action-btn",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"close")}}},[e._v("取消订单")]):e._e(),a("v-uni-button",{staticClass:"action-btn",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"detail")}}},[e._v("订单详情")]),0==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handlePayment(t)}}},[e._v("立即支付")]):e._e(),1==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"refund",1)}}},[e._v("申请退款")]):e._e(),4==t.order_status||2==t.order_status?a("v-uni-button",{staticClass:"action-btn",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"shipping")}}},[e._v("查看物流")]):e._e(),4==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"refund",3)}}},[e._v("订单售后")]):e._e(),2==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"refund",2)}}},[e._v("申请退货")]):e._e(),2==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"delivery")}}},[e._v("确认收货")]):e._e(),4==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"evaluation")}}},[e._v("我要评价")]):e._e(),-4==t.order_status?a("v-uni-button",{staticClass:"action-btn recom",on:{click:function(a){a=e.$handleEvent(a),e.handleOrderOperation(t,"delete")}}},[e._v("删除订单")]):e._e()],1)],2)})),e.orderList.length>0?a("rf-load-more",{attrs:{status:e.loadingType}}):e._e(),0!==e.orderList.length||e.loading?e._e():a("rf-empty",{attrs:{info:"暂无工单"}})],2)],1)})),1),e.loading?a("rf-loading"):e._e()],1)},n=[];a.d(t,"a",(function(){return i})),a.d(t,"b",(function(){return n}))},e8b3:function(e,t,a){"use strict";a.r(t);var i=a("f6aa"),n=a.n(i);for(var r in i)"default"!==r&&function(e){a.d(t,e,(function(){return i[e]}))}(r);t["default"]=n.a},ebc4:function(e,t,a){"use strict";a.r(t);var i=a("e79f"),n=a("e8b3");for(var r in n)"default"!==r&&function(e){a.d(t,e,(function(){return n[e]}))}(r);a("21e5");var o=a("2877"),d=Object(o["a"])(n["default"],i["a"],i["b"],!1,null,"ce1da0e6",null);t["default"]=d.exports},f6aa:function(e,t,a){"use strict";var i=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,a("8e6e"),a("ac6a"),a("456d");var n=i(a("75fc")),r=i(a("bd86"));a("96cf");var o=i(a("3b8d")),d=i(a("f97d")),s=i(a("8f09")),c=a("802d"),l=i(a("71e5")),u=a("c4c8");function f(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,i)}return a}function v(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?f(Object(a),!0).forEach((function(t){(0,r.default)(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):f(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var h={components:{rfLoadMore:d.default,rfCountDown:l.default},data:function(){return{tabCurrentIndex:0,loadingType:"more",navList:[{state:void 0,text:"全部"},{state:0,text:"待付款"},{state:1,text:"待发货"},{state:2,text:"待收货"},{state:3,text:"评价"}],orderList:[],page:1,loading:!0}},computed:{second:function(){return function(e){return Math.floor(900-(new Date/1e3-e))}}},filters:{time:function(e){return(0,s.default)(1e3*e).format("YYYY-MM-DD HH:mm:ss")},orderStatusFilter:function(e){var t=null,a=[{key:0,value:"待付款"},{key:1,value:"待发货"},{key:2,value:"已发货"},{key:3,value:"已收货"},{key:4,value:"待评价"},{key:-1,value:"退货申请"},{key:-2,value:"退款中"},{key:-3,value:"退款完成"},{key:-4,value:"已关闭"},{key:-5,value:"撤销申请"}];return a.forEach((function(a){a.key==e&&(t=a.value)})),t}},onShow:function(){this.page=1,this.orderList.length=0,this.initData()},onLoad:function(e){this.tabCurrentIndex=+e.state+1},onPullDownRefresh:function(){this.page=1,this.orderList.length=0,this.getOrderList("refresh")},onReachBottom:function(){this.page++,this.getOrderList()},methods:{timeUp:function(e){this.handleOrderClose(e.id)},handleOrderOperation:function(e,t,a){switch(t){case"detail":this.navTo("/pages/order/detail?id=".concat(e.id));break;case"evaluation":this.handleOrderEvaluation(e,"evaluation");break;case"close":this.handleOrderClose(e.id);break;case"delete":this.handleOrderDelete(e.id);break;case"shipping":this.navTo("/pages/order/shipping/shipping?id=".concat(e.id));break;case"refund":this.handleOrderEvaluation(e,"refund",a);break;case"delivery":this.handleOrderTakeDelivery(e.id);break}},handleOrderEvaluation:function(e,t,a){uni.navigateTo({url:"/pages/order/item?id=".concat(e.id)})},navTo:function(e){uni.navigateTo({url:e})},handleOrderClose:function(){var e=(0,o.default)(regeneratorRuntime.mark((function e(t){var a=this;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,this.$get("".concat(u.orderClose),{id:t}).then((function(){a.page=1,a.orderList.length=0,a.getOrderList()}));case 2:case"end":return e.stop()}}),e,this)})));function t(t){return e.apply(this,arguments)}return t}(),handleOrderDelete:function(){var e=(0,o.default)(regeneratorRuntime.mark((function e(t){var a=this;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,this.$del("".concat(c.orderDelete,"?id=").concat(t),{}).then((function(){a.$api.msg("订单删除成功"),setTimeout((function(){a.page=1,a.orderList.length=0,a.getOrderList()}),500)}));case 2:case"end":return e.stop()}}),e,this)})));function t(t){return e.apply(this,arguments)}return t}(),handleOrderTakeDelivery:function(){var e=(0,o.default)(regeneratorRuntime.mark((function e(t){var a=this;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return e.next=2,this.$get("".concat(c.orderTakeDelivery),{id:t}).then((function(){a.page=1,a.orderList.length=0,a.getOrderList()}));case 2:case"end":return e.stop()}}),e,this)})));function t(t){return e.apply(this,arguments)}return t}(),handlePayment:function(){var e=(0,o.default)(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:uni.navigateTo({url:"/pages/user/money/pay?id=".concat(t.id)});case 1:case"end":return e.stop()}}),e)})));function t(t){return e.apply(this,arguments)}return t}(),initData:function(){this.getOrderList()},getOrderList:function(){var e=(0,o.default)(regeneratorRuntime.mark((function e(t){var a,i,r,o=this;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:return a=this.tabCurrentIndex,i=this.navList[a],r={},(i.state||0===i.state)&&(r.synthesize_status=i.state),r.page=this.page,e.next=7,this.$get("".concat(c.orderList),v({},r)).then((function(e){o.loading=!1,"refresh"===t&&uni.stopPullDownRefresh(),o.loadingType=10===e.data.length?"more":"nomore",o.orderList=[].concat((0,n.default)(o.orderList),(0,n.default)(e.data))})).catch((function(){o.loading=!1,"refresh"===t&&uni.stopPullDownRefresh()}));case 7:case"end":return e.stop()}}),e,this)})));function t(t){return e.apply(this,arguments)}return t}(),changeTab:function(e){this.page=1,this.orderList.length=0,this.tabCurrentIndex=e.target.current,this.loading=!0,this.getOrderList()},tabClick:function(e){this.page=1,this.orderList.length=0,this.loading=!0,this.tabCurrentIndex=e},getMoreOrderList:function(){this.page++,this.getOrderList()}}};t.default=h}}]);
16,278
16,278
0.713908
73a736ddbee021ec361bfc190e2ac0ae59ae643a
1,181
js
JavaScript
example/group-call/browser/socket.js
orlandoaleman/SFMediaStream
845df06a635f41e2ba8656967ea79b71ffcffe54
[ "MIT" ]
87
2018-11-26T06:05:59.000Z
2022-03-21T18:48:20.000Z
example/group-call/browser/socket.js
mellofordev/SFMediaStream
5934628d343aeed3601cffde23e2b0fa21311118
[ "MIT" ]
23
2018-12-30T05:35:38.000Z
2021-09-12T13:30:41.000Z
example/group-call/browser/socket.js
mellofordev/SFMediaStream
5934628d343aeed3601cffde23e2b0fa21311118
[ "MIT" ]
30
2018-11-27T02:42:09.000Z
2022-01-29T13:47:38.000Z
var socket = io("/", {transports:['websocket']}); socket.on('welcome', function(){ app.id = socket.id; app.debug("Connected to the server!"); }); // Handle BufferHeader request/response socket.on('bufferHeader', function(data){ app.debug("Buffer header ("+data.type+") by", data.fromID); // Is request from Streamer? if(data.type === 'request') presenter.requestBufferHeader(data.fromID); // Is response from Presenter? else if(data.type === 'received') streamer.setBufferHeader(data.fromID, data.packet); }); // Handle buffer stream from the presenter to streaming instance socket.on('bufferStream', function(data){ // From = data.presenterID streamer.receiveBuffer(data.presenterID, data.packet); }); // Handle disconnected streamer socket.on('streamerGone', function(id){ var i = app.presenter.listener.indexOf(id); if(i !== -1){ app.presenter.listener.splice(i, 1); app.debug("Listener with ID:", id, "was removed"); } }); // Handle disconnected presenter socket.on('presenterGone', function(id){ if(app.streamer.listening[id] !== undefined){ sf.Obj.delete(app.streamer.listening, id); app.debug("Listener with ID:", id, "was removed"); } });
26.840909
64
0.699407
73aa610db676ce9f874ebe773a335e86f42a57e9
4,235
js
JavaScript
install/js/germes/multibasket/app/cart_table/dist/script.bundle.js
AndreyChursin/germes.multibasket
d2537c449b66df89fc8a2a8f74d28529a2157042
[ "MIT" ]
null
null
null
install/js/germes/multibasket/app/cart_table/dist/script.bundle.js
AndreyChursin/germes.multibasket
d2537c449b66df89fc8a2a8f74d28529a2157042
[ "MIT" ]
null
null
null
install/js/germes/multibasket/app/cart_table/dist/script.bundle.js
AndreyChursin/germes.multibasket
d2537c449b66df89fc8a2a8f74d28529a2157042
[ "MIT" ]
null
null
null
(function (exports,main_core,ui_vue,main_popup,currency_currencyCore,germes_multibasket_entity) { 'use strict'; /* //ES6 import { CartTableComponent } from 'germes.multibasket.components.cart'; const cartTableComponent = new CartTableComponent({cartNode}); */ var GermesCartTableComponent = function GermesCartTableComponent(params) { var _this$cartNode; babelHelpers.classCallCheck(this, GermesCartTableComponent); babelHelpers.defineProperty(this, "vueApp", null); babelHelpers.defineProperty(this, "cartNode", null); babelHelpers.defineProperty(this, "cartId", null); babelHelpers.defineProperty(this, "cart", null); (_this$cartNode = this.cartNode) !== null && _this$cartNode !== void 0 ? _this$cartNode : this.cartNode = params === null || params === void 0 ? void 0 : params.cartNode; if (!!this.cartNode) { if (!main_core.Type.isDomNode(this.cartNode) && main_core.Type.isString(params.cartNode)) { this.cartNode = BX(params.cartNode); } if (main_core.Type.isDomNode(this.cartNode)) { var _params$cartId, _this$cartNode2, _this$cartNode2$datas; var cartId = (_params$cartId = params.cartId) !== null && _params$cartId !== void 0 ? _params$cartId : params.cartId = (_this$cartNode2 = this.cartNode) === null || _this$cartNode2 === void 0 ? void 0 : (_this$cartNode2$datas = _this$cartNode2.dataset) === null || _this$cartNode2$datas === void 0 ? void 0 : _this$cartNode2$datas.cartId; this.vueApp = ui_vue.BitrixVue.createApp({ el: this.cartNode, store: userStore, data: function data() { return { Cart: params.cart, cartId: cartId, stepCounter: 1, basketError: {} }; }, props: {}, computed: { stepNumber: { get: function get() { return this.stepCounter; }, set: function set(value) { this.stepCounter = value; } }, // либо работаем с тем, что передали, либо с активной корзиной componentCartId: function componentCartId(state) { var _state$cartId; return (_state$cartId = state.cartId) !== null && _state$cartId !== void 0 ? _state$cartId : state.$store.getters['basket/getCurrentBasketId']; }, componentCart: function componentCart(state) { var _state$Cart; return (_state$Cart = state.Cart) !== null && _state$Cart !== void 0 ? _state$Cart : state.$store.getters['basket/getCart'](state.componentCartId); }, cartExtComponentList: function cartExtComponentList(state) { return state.extComponentList; } }, beforeCreate: function beforeCreate() {}, mounted: function mounted() {}, created: function created() { var _this = this, _cartNode$dataset; this.$root.$on('componentError', BX.proxy(function (errorObj) { if (errorObj.text == null || !errorObj.text) { ui_vue.BitrixVue["delete"](_this.basketError, errorObj.id); } else { ui_vue.BitrixVue.set(_this.basketError, errorObj.id, errorObj.text); } }, this)); // Рисуем товары корзины var basketTableNode = BX(this.componentUid + '_table'), cartNode = BX(this.componentUid), cartId = cartNode !== null && cartNode !== void 0 && (_cartNode$dataset = cartNode.dataset) !== null && _cartNode$dataset !== void 0 && _cartNode$dataset.cartId ? parseInt(cartNode.dataset.cartId) : null; //event?.data.catalogProduct }, destroy: function destroy() { debugger; } }); } } }; exports.GermesCartTableComponent = GermesCartTableComponent; }((this.window = this.window || {}),BX,BX,BX,BX,window)); //# sourceMappingURL=script.bundle.js.map
43.659794
348
0.570956
73ab29977366d60c6b155cece499935ffa794a76
2,234
js
JavaScript
src/pages/404.js
allpavel/moderna2
78b6a5050b327e06cb35ac75a54cd79bc6167631
[ "0BSD" ]
null
null
null
src/pages/404.js
allpavel/moderna2
78b6a5050b327e06cb35ac75a54cd79bc6167631
[ "0BSD" ]
null
null
null
src/pages/404.js
allpavel/moderna2
78b6a5050b327e06cb35ac75a54cd79bc6167631
[ "0BSD" ]
null
null
null
import React from "react"; import { Link } from "gatsby"; import { StaticImage } from "gatsby-plugin-image"; import Layout from "../components/Layout/Layout"; import Seo from "../components/SEO/SEO"; import styled from "styled-components"; const Wrapper = styled.section` padding: 3.75rem 0; height: calc(100vh - (3.75rem * 2)); @media screen and (max-width: 575px) { padding: 3rem 0 2rem; } `; const Text = styled.div` grid-area: text; padding: 0 10px; h2 { color: var(--main-color); margin: 0; } p { font-size: 3rem; font-weight: bold; } `; const ImageItem = styled.div` grid-area: image; padding: 0 10px; `; const Container = styled.div` max-width: var(--max-width-desktop); height: 100%; margin: 0 auto; display: grid; place-items: center; grid-template-columns: 50% 50%; grid-template-areas: "text image"; @media screen and (max-width: 992px) { margin: 0 1rem; grid-template-columns: 1fr; grid-template-rows: auto auto; grid-template-areas: "image" "text"; } `; const ErrorPage = () => { return ( <Layout> <Seo title="Error" description="This is The Error Page" /> <Wrapper> <Container> <Text> <h2>404</h2> <p>Whoops! This is not what you were looking for</p> <span> But you just found the sock we'd lost, thanks. <br /> Try your luck by going back to the <Link to="/">home page</Link>. </span> </Text> <ImageItem> <StaticImage src="../images/404.png" placeholder="blurred" width={600} height={600} alt="error image" /> </ImageItem> </Container> </Wrapper> </Layout> ); }; export default ErrorPage;
25.678161
93
0.466428
73ac5b7a58fc19312f65e46084c9185635147410
319
js
JavaScript
front-end/src/components/Header/index.js
bognarjunior/PWA-React
ba78cd39abcb9b2e5b8fa26e3316dc640e2e27bd
[ "MIT" ]
4
2018-12-18T10:48:55.000Z
2021-05-13T18:26:55.000Z
front-end/src/components/Header/index.js
bognarjunior/PWA-React
ba78cd39abcb9b2e5b8fa26e3316dc640e2e27bd
[ "MIT" ]
null
null
null
front-end/src/components/Header/index.js
bognarjunior/PWA-React
ba78cd39abcb9b2e5b8fa26e3316dc640e2e27bd
[ "MIT" ]
2
2020-06-25T05:29:23.000Z
2020-08-13T21:31:03.000Z
import React from 'react' import './index.css' export default function Header() { return ( <div className="header pure-menu pure-menu-horizontal pure-menu-fixed"> <a href="/"><img alt="Logo" className="logo" src="img/logo.png" /></a> <h4 className="label">Agenda de Gentilezas</h4> </div> ); }
26.583333
76
0.642633
73acbc838c73cb3a5f865adb3fe3c704eef3cc88
1,118
js
JavaScript
src/components/Merch/merch.js
Tiffolin/ZzzMerch
c7422593e9c75ad94f2a7f1d0e10c060c144c150
[ "MIT" ]
null
null
null
src/components/Merch/merch.js
Tiffolin/ZzzMerch
c7422593e9c75ad94f2a7f1d0e10c060c144c150
[ "MIT" ]
null
null
null
src/components/Merch/merch.js
Tiffolin/ZzzMerch
c7422593e9c75ad94f2a7f1d0e10c060c144c150
[ "MIT" ]
null
null
null
<div id="footer" className="container-fluid row justify-content-md-center"> <div id="snsContainer" class="container-fluid"> <span><a href="#"><i className="sns fa fa-facebook-square"></i></a></span> <span><a href="#"><i className="sns fa fa-instagram"></i></a></span> <span><a href="#"><i className="sns fa fa-envelope"></i></a></span> </div> <div id="copyright"> <a href="https://www.tiffolin.com"><div id="developer">© 2020, images & web designed by TiffoLin</div></a> </div> </div> </div> <div className="clearfix w-100 d-md-none pb-3"> <div className="col-md-3 mb-md-0 mb-3"> <h5 className="text-uppercase">Links</h5> <ul className="list-unstyled"> <li> <a href="#!">Link 1</a> </li> <li> <a href="#!">Link 2</a> </li> <li> <a href="#!">Link 3</a> </li> <li> <a href="#!">Link 4</a> </li> </ul> </div> </div> </div>
29.421053
110
0.452594
73acbd298a7c9a67e9a3f803bf5c7a82cbb87fb6
2,363
js
JavaScript
routes/websiteAdminPlace.js
meme-ppm/very-small-church
ebd59642caf171c82dc31b7d3000a850b0b29db5
[ "Apache-2.0" ]
null
null
null
routes/websiteAdminPlace.js
meme-ppm/very-small-church
ebd59642caf171c82dc31b7d3000a850b0b29db5
[ "Apache-2.0" ]
null
null
null
routes/websiteAdminPlace.js
meme-ppm/very-small-church
ebd59642caf171c82dc31b7d3000a850b0b29db5
[ "Apache-2.0" ]
null
null
null
'use strict'; var serviceParish = require('../services/parish'); var servicePlace = require('../services/place'); var _ = require("underscore"); module.exports = [ { method: ['GET'], path: '/admin/parish/{parishId}/place', handler:function(request, reply){ serviceParish.findOne(request.params.parishId, function(error, parish){ if(parish.places == null || parish.places.length === 0){ reply.view('admin/parish/placeCreate', {parish:parish, payload:{}, currentMenu:'place'}) }else{ reply.view('admin/parish/place', {parish:parish, currentMenu:'place'}); } }) } }, { method: ['POST'], path: '/admin/parish/{parishId}/place', handler:function(request, reply){ if(request.payload.id){ servicePlace.update(request.payload, function(error, place){ reply.redirect('/admin/parish/'+request.params.parishId+'/place'); }); }else{ servicePlace.create(request.payload, function(error, place){ reply.redirect('/admin/parish/'+request.params.parishId+'/place'); }); } }, }, { method: ['get'], path: '/admin/parish/{parishId}/place/{placeId}', handler:function(request, reply){ serviceParish.findOne(request.params.parishId, function(error, parish){ var placeId = parseInt(request.params.placeId); var place = _.find(parish.places, function(item){ console.log(">>place: ", item) return item.id === placeId; }); console.log("placeId ", request.params.placeId) console.log("place ", place) reply.view('admin/parish/placeCreate', {payload:place, parish: parish, currentMenu:'place'}) }); } }, { method: ['GET'], path: '/admin/parish/{parishId}/place/create', handler:function(request, reply) { serviceParish.findOne(request.params.parishId, function(error, parish){ reply.view('admin/parish/placeCreate', {parish:parish, payload:{}, currentMenu:'place'}); }) } } ]
39.383333
108
0.530681
73ad7a5562d8a099aea20fb37d8a6f584734fada
240
js
JavaScript
starters/bootstrap-4/src/js/js-in-template/template/content/content.js
blogspot-template-development/bloggerpack
8290a23c57ea476ce329f3b518ed668ff1ce3b22
[ "MIT" ]
47
2020-05-19T10:15:45.000Z
2022-03-30T04:00:07.000Z
starters/bootstrap-4/src/js/js-in-template/template/content/content.js
blogspot-template-development/bloggerpack
8290a23c57ea476ce329f3b518ed668ff1ce3b22
[ "MIT" ]
14
2020-05-16T19:34:07.000Z
2022-03-30T06:55:50.000Z
starters/bootstrap-4/src/js/js-in-template/template/content/content.js
blogspot-template-development/bloggerpack
8290a23c57ea476ce329f3b518ed668ff1ce3b22
[ "MIT" ]
22
2020-05-22T23:27:22.000Z
2022-03-23T09:53:35.000Z
/* // ------------------------------------------------------------------------ // Template path: src/template/content/content.xml // ------------------------------------------------------------------------ */ /* JS-in-Template is empty */
30
75
0.245833
73adf5eed140ca5f4720abdec584f312c4482c70
1,129
js
JavaScript
app/components/codex/index.js
peppertom/mage-kit-client
f311d683a33bb6a87c4cf8e2ac51dff6064198f7
[ "MIT" ]
null
null
null
app/components/codex/index.js
peppertom/mage-kit-client
f311d683a33bb6a87c4cf8e2ac51dff6064198f7
[ "MIT" ]
null
null
null
app/components/codex/index.js
peppertom/mage-kit-client
f311d683a33bb6a87c4cf8e2ac51dff6064198f7
[ "MIT" ]
null
null
null
"use strict" import React from "react" import { connect } from 'react-redux' import { bindActionCreators } from 'redux' import CodexList from './codex-list' import actionCreator from '../../redux/actions/action-creator' const CodexSearchResultLimit = 10 class Codex extends React.Component { constructor(props){ super(props) this.handleCodexSearch = this.handleCodexSearch.bind(this) } componentDidMount() { this.props.actions.initCodexDataRequest({ limit: CodexSearchResultLimit, searchText: '' }) } handleCodexSearch(searchText) { this.props.actions.searchCodexRequest({ limit: CodexSearchResultLimit, searchText: searchText }) } render (){ return <CodexList items={this.props.codex.codexList} onSearch={this.handleCodexSearch} /> } } function mapStateToProps(state) { return state.toJS() } function mapDispatchToProps(dispatch) { return { actions: bindActionCreators(actionCreator(), dispatch) } } export default connect(mapStateToProps, mapDispatchToProps)(Codex)
24.021277
66
0.676705
73ae81b06fcc878e1877f6e1277723c7b37a71ca
1,307
js
JavaScript
front-end/public/demo/js/dialogflow.js
michael-chi/helpdesk-dialogflow-and-cloudsearch
b17f6d870aaae197d02ecebf0ae1e773e0027cd4
[ "Apache-2.0" ]
1
2021-08-28T08:28:41.000Z
2021-08-28T08:28:41.000Z
front-end/public/demo/js/dialogflow.js
michael-chi/helpdesk-dialogflow-and-cloudsearch
b17f6d870aaae197d02ecebf0ae1e773e0027cd4
[ "Apache-2.0" ]
null
null
null
front-end/public/demo/js/dialogflow.js
michael-chi/helpdesk-dialogflow-and-cloudsearch
b17f6d870aaae197d02ecebf0ae1e773e0027cd4
[ "Apache-2.0" ]
null
null
null
const defaultOptions = { languageCode: navigator.language, location: 'asia-northeast1', userId: 'Happy FrontEnd Day!', chatTitle: 'Helpdesk - Chatbot', agentId: '915e4461-eb43-43a3-8b33-6fb3c7436b3b', }; const DIALOGFLOW_ID = 'dialogflow-messenger'; function renderMessenger(options = defaultOptions) { const { languageCode, agentId, chatTitle, userId, location, } = { ...defaultOptions, ...options }; if (!document.querySelector(`#${DIALOGFLOW_ID} df-messenger`)) { const dfMessenger = document.createElement('df-messenger'); dfMessenger.setAttribute('df-cx', true); dfMessenger.setAttribute('location', location); dfMessenger.setAttribute('chat-title', chatTitle); dfMessenger.setAttribute('agent-id', agentId); dfMessenger.setAttribute('language-code', languageCode); dfMessenger.setAttribute('user-id', userId); dfMessenger.setAttribute('intent', 'WELCOME'); document.getElementById(DIALOGFLOW_ID).append(dfMessenger); } } function teardownMessenger() { if (document.querySelector(`#${DIALOGFLOW_ID} df-messenger`)) { console.log('TEARDOWN') document.getElementById(DIALOGFLOW_ID).innerHTML = ''; } }
29.704545
68
0.651109
73aeb11cb4b698385bd71e9e32069a86251eb792
217
js
JavaScript
icons/48px/action/gavel.js
hermeslin/material-design-icons-module
1b7090f24315b97041c939e5af14439191ad70fb
[ "MIT" ]
null
null
null
icons/48px/action/gavel.js
hermeslin/material-design-icons-module
1b7090f24315b97041c939e5af14439191ad70fb
[ "MIT" ]
null
null
null
icons/48px/action/gavel.js
hermeslin/material-design-icons-module
1b7090f24315b97041c939e5af14439191ad70fb
[ "MIT" ]
null
null
null
module.exports = [{"name":"path","attribs":{"d":"M2 42h24v4H2zm8.49-25.858l5.658-5.657L44.432 38.77l-5.657 5.656zM24.627 2.006L35.94 13.32l-5.656 5.656L18.97 7.663zm-16.97 16.97L18.97 30.29l-5.656 5.657L2 24.633z"}}];
217
217
0.700461
73aeee6d4a8f7a595505dc8e0f3f18a8a43153cc
485
js
JavaScript
openmdao/visualization/n2_viewer/src/main.js
friedenhe/OpenMDAO
db1d7e22a8bf9f66afa82ec3544b7244d5545f6d
[ "Apache-2.0" ]
null
null
null
openmdao/visualization/n2_viewer/src/main.js
friedenhe/OpenMDAO
db1d7e22a8bf9f66afa82ec3544b7244d5545f6d
[ "Apache-2.0" ]
null
null
null
openmdao/visualization/n2_viewer/src/main.js
friedenhe/OpenMDAO
db1d7e22a8bf9f66afa82ec3544b7244d5545f6d
[ "Apache-2.0" ]
null
null
null
// <<hpp_insert src/OmModelData.js>> // <<hpp_insert src/OmDiagram.js>> var sharedTransition = null; var enterIndex = 0; var exitIndex = 0; // The modelData object is generated and populated by n2_viewer.py let modelData = OmModelData.uncompressModel(compressedModel); delete compressedModel; var n2MouseFuncs = null; function n2main() { const n2Diag = new OmDiagram(modelData); n2MouseFuncs = n2Diag.getMouseFuncs(); n2Diag.update(false); } // wintest(); n2main();
20.208333
66
0.729897
73af26196ba365344bc6f022229f1332e7fa8337
46
js
JavaScript
example/docs/.vuepress/enhanceApp.js
meHimanshu/vue-advanced-cropper
aee5e8b673ec17a1a76f8c0ef1cc610afde593b2
[ "MIT" ]
531
2019-07-03T12:48:30.000Z
2022-03-22T07:51:29.000Z
example/docs/.vuepress/enhanceApp.js
meHimanshu/vue-advanced-cropper
aee5e8b673ec17a1a76f8c0ef1cc610afde593b2
[ "MIT" ]
179
2019-07-07T20:38:39.000Z
2022-03-27T09:03:51.000Z
example/docs/.vuepress/enhanceApp.js
meHimanshu/vue-advanced-cropper
aee5e8b673ec17a1a76f8c0ef1cc610afde593b2
[ "MIT" ]
90
2019-07-03T15:12:44.000Z
2022-03-22T07:51:32.000Z
import 'vue-advanced-cropper/dist/style.css';
23
45
0.782609
73af53256ffb38bcc044cb3aa6f52b7f00e2038f
2,683
js
JavaScript
src/components/Text/Base.js
blyzniuk/aurora
f592e481fb67d6dc731503da964807cea23c79a6
[ "MIT" ]
null
null
null
src/components/Text/Base.js
blyzniuk/aurora
f592e481fb67d6dc731503da964807cea23c79a6
[ "MIT" ]
null
null
null
src/components/Text/Base.js
blyzniuk/aurora
f592e481fb67d6dc731503da964807cea23c79a6
[ "MIT" ]
null
null
null
import React from "react"; import PropTypes from "prop-types"; import classnames from "classnames"; import StyledTextBase from "./Base.styles"; const AVAILABLE_TAGS = ["div", "span", "p", "h3", "h4", "h5", "h6"]; const textTags = AVAILABLE_TAGS.reduce((acc, tag) => { acc[tag] = StyledTextBase.withComponent(tag); return acc; }, {}); const TextBase = ({ tag, variant, accent, primary, secondary, disabled, size, responsiveSize, weight, className, allCaps, children, ...props }) => { const Text = textTags[tag]; const classes = classnames({ text: true, [`text--${variant}`]: !!variant, [`text--${accent}`]: variant === "accent", "text--primary": !!primary || (!secondary && !disabled && !accent), "text--secondary": !!secondary, "text--disabled": !!disabled, [className]: !!className }); return ( <Text className={classes} size={{ small: responsiveSize.small || size, medium: responsiveSize.medium || responsiveSize.small || size, large: responsiveSize.large || responsiveSize.medium || responsiveSize.small || size }} weight={weight} variant={variant} accent={accent} primary={primary} secondary={secondary} disabled={disabled} allCaps={allCaps} {...props} > {children} </Text> ); }; TextBase.propTypes = { tag: PropTypes.oneOf(AVAILABLE_TAGS), variant: PropTypes.oneOf(["accent", "dark", "light"]), accent: PropTypes.oneOf([ "", "aquamarine", "azure", "alert", "caution", "cruz", "heliotrope", "positive", "summerSky", "turquoise" ]), size: PropTypes.oneOf(["mini", "uno", "hecto", "kilo", "giga", "tera"]), responsiveSize: PropTypes.shape({ small: PropTypes.oneOf(["mini", "uno", "hecto", "kilo", "giga", "tera"]), medium: PropTypes.oneOf(["mini", "uno", "hecto", "kilo", "giga", "tera"]), large: PropTypes.oneOf(["mini", "uno", "hecto", "kilo", "giga", "tera"]) }), weight: PropTypes.oneOf(["regular", "semiBold"]), className: PropTypes.string, primary: PropTypes.bool, secondary: PropTypes.bool, disabled: PropTypes.bool, children: PropTypes.node.isRequired, allCaps: PropTypes.bool, monospace: PropTypes.bool }; TextBase.defaultProps = { tag: "div", variant: "dark", accent: "", size: "hecto", responsiveSize: { small: null, medium: null, large: null }, weight: "regular", className: "", primary: false, secondary: false, disabled: false, allCaps: false, monospace: false }; TextBase.displayName = "Text"; export default TextBase;
22.173554
78
0.600447
73aff2d3a0f5dce1b1e1fb18d3eed99f2f1d76e1
2,314
js
JavaScript
Chess-Game/script/pieceAlgorithms/pawn/movePawn.js
manucasares/Gaming-Central
1a661c9b85c6790e9f18c495360896dd5389fee4
[ "MIT" ]
1
2021-05-28T01:26:09.000Z
2021-05-28T01:26:09.000Z
Chess-Game/script/pieceAlgorithms/pawn/movePawn.js
manucasares/Gaming-Central
1a661c9b85c6790e9f18c495360896dd5389fee4
[ "MIT" ]
null
null
null
Chess-Game/script/pieceAlgorithms/pawn/movePawn.js
manucasares/Gaming-Central
1a661c9b85c6790e9f18c495360896dd5389fee4
[ "MIT" ]
null
null
null
import { letters, squares } from '../../main.js'; // onlyDiagonals nos sirve para chekear por safeSquares en checkForCheckmate.js export const movePawn = ( position, color, onlyDiagonals ) => { const possibleMoves = []; const initialFile = ( color === 'white' ) ? '2' : '7'; const signChanger = ( color === 'white' ) ? 1 : -1; let letterPosition = position[0]; let numberPosition = position[1]; const letterIndex = letters.findIndex( letter => letter === letterPosition ); let diagonalLeft; let diagonalRight; let forwardSquareOccupied = false; const forwardPosition = `${ letterPosition }${ +numberPosition + signChanger }`; const forwardSquare = squares.find( ({dataset}) => dataset.square === forwardPosition ); // definimos diagonales diagonalLeft = `${ letters[ letterIndex - 1 ] }${ +numberPosition + signChanger }`; diagonalRight = `${ letters[ letterIndex + 1 ] }${ +numberPosition + signChanger }`; // un paso // si la casilla de adelante no tiene hijos, puede mover adelante if ( forwardSquare && !forwardSquare.children[0] && !onlyDiagonals ) { possibleMoves.push( `${ letterPosition }${ +numberPosition + signChanger }` ); } else { forwardSquareOccupied = true; } const diagonals = [ diagonalLeft, diagonalRight ]; diagonals.forEach( diagonal => { const diagonalSquare = squares.find( ({dataset}) => dataset.square === diagonal ); if ( !diagonalSquare ) { return; } // si hay una pieza significa que puede comer en diagonal if ( diagonalSquare.children[0] || onlyDiagonals ) { possibleMoves.push( diagonal ); } }); // dos pasos if ( !forwardSquareOccupied && numberPosition === initialFile && !onlyDiagonals ) { const twoStepsPosition = `${ letterPosition }${ +numberPosition + ( signChanger * 2 ) }`; const twoStepsSquare = squares.find( ({dataset}) => dataset.square === twoStepsPosition ); // si la casilla de 2 pasos adelante no esta ocupada if ( !twoStepsSquare.children[0] ) { possibleMoves.push( `${ letterPosition }${ +numberPosition + ( signChanger * 2 ) }` ); } } return possibleMoves; }
32.591549
107
0.614088
73b3661df1bfdd09b76cbe0ddc35ea77235ebb7e
672
js
JavaScript
App.js
Gringox/react-native-boilerplate
a2e1c0e2ab038a9ae208f21ac9dc42d95c089626
[ "Unlicense" ]
null
null
null
App.js
Gringox/react-native-boilerplate
a2e1c0e2ab038a9ae208f21ac9dc42d95c089626
[ "Unlicense" ]
null
null
null
App.js
Gringox/react-native-boilerplate
a2e1c0e2ab038a9ae208f21ac9dc42d95c089626
[ "Unlicense" ]
null
null
null
import React, { Component } from 'react'; import { View } from 'react-native'; import { IS_ANDROID, BELLBANK_COLOR } from './src/utilities/Defaults'; import Router from './src/router/Router'; import BBKStatusBar from './src/components/BBKStatusBar/BBKStatusBar'; export default class App extends Component { renderCustomStatusBar() { if (!IS_ANDROID) { return <View />; } return ( <BBKStatusBar backgroundColor={BELLBANK_COLOR} barStyle="light-content" /> ); } render() { return ( <View style={{ flex: 1 }}> { this.renderCustomStatusBar() } <Router /> </View> ); } }
21
70
0.604167
73b50b7f9660c3b9aaf0bdf6e21dd0e22761b95a
285
js
JavaScript
src/utils/errors.js
elenatorro/worchspace
963adef69cac1902c6f774085a953692d4cdea04
[ "MIT" ]
null
null
null
src/utils/errors.js
elenatorro/worchspace
963adef69cac1902c6f774085a953692d4cdea04
[ "MIT" ]
null
null
null
src/utils/errors.js
elenatorro/worchspace
963adef69cac1902c6f774085a953692d4cdea04
[ "MIT" ]
null
null
null
const log = require('./log'); module.exports = { command(error) { log.wrong(); if (error.cmd) { log.warning(error.cmd); } if (error.stderr) { log.error(error.stderr); } if (!error.stderr && !error.cmd) { log.error(error); } } }
15
38
0.508772
73b545ded1a060db536fcd1f3f4298a15a60dab8
606
js
JavaScript
src/js/presentation/footer-presentation/index.js
lodqa/lodqa
cb978b556968123504e033a30b22c0f15743170b
[ "MIT" ]
17
2015-03-22T08:53:08.000Z
2020-03-29T18:45:57.000Z
src/js/presentation/footer-presentation/index.js
lodqa/lodqa
cb978b556968123504e033a30b22c0f15743170b
[ "MIT" ]
26
2016-11-21T09:39:35.000Z
2022-03-30T21:56:20.000Z
src/js/presentation/footer-presentation/index.js
lodqa/lodqa
cb978b556968123504e033a30b22c0f15743170b
[ "MIT" ]
6
2016-01-15T11:32:06.000Z
2017-12-19T09:13:35.000Z
const updateDomTree = require('../update-dom-tree') module.exports = class { constructor(dom, model) { model.on('footer_update_event', () => render(dom, model)) } } function render(dom, model) { const html = template(model.state) updateDomTree(dom, html) } function template(state) { return ` <div class="footer ${state}"> <div class="footer-upper"> The LODQA service is provided by Database Center for Life Science.<br> </div> <div class="footer-lower"> Comments &amp; suggestions are welcome. Please contact to : support AT dbcls DOT rois DOT ac DOT jp </div> </div> ` }
23.307692
103
0.679868
73b68face75403fee363182ce365c3bf1fad9965
1,736
js
JavaScript
app/actions/user.js
Bonagora/team-pulse
196dffbaf7704cab60d971dabcd19c7c78f480ae
[ "MIT" ]
1
2018-03-28T21:55:30.000Z
2018-03-28T21:55:30.000Z
app/actions/user.js
Bonagora/team-pulse
196dffbaf7704cab60d971dabcd19c7c78f480ae
[ "MIT" ]
null
null
null
app/actions/user.js
Bonagora/team-pulse
196dffbaf7704cab60d971dabcd19c7c78f480ae
[ "MIT" ]
null
null
null
// @flow import * as firebase from 'firebase'; import 'firebase/storage-node'; export const userActionTypes = { TOGGLE_DEFAULT_ANONYMOUS_SUCCESS: 'TOGGLE_DEFAULT_ANONYMOUS_SUCCESS', TOGGLE_DEFAULT_ANONYMOUS_ERROR: 'TOGGLE_DEFAULT_ANONYMOUS_ERROR', UPDATE_USER_PHOTO_URL: 'UPDATE_USER_PHOTO_URL' }; export const toggleDefaultAnonymousSuccess = () => ({ type: userActionTypes.TOGGLE_DEFAULT_ANONYMOUS_SUCCESS }); export const toggleDefaultAnonymousError = () => ({ type: userActionTypes.TOGGLE_DEFAULT_ANONYMOUS_ERROR }); export const updateUserPhotoUrl = (user: {}) => ({ type: userActionTypes.UPDATE_USER_PHOTO_URL, user }); // eslint-disable-next-line flowtype/no-weak-types export const toggleDefaultAnonymous = (uid: string, toggle: boolean) => (dispatch: Function) => { const userRef = firebase.database().ref(`users/${uid}`); userRef.update({ anonymous: toggle }) .then(() => dispatch(toggleDefaultAnonymousSuccess())) .catch(error => dispatch(toggleDefaultAnonymousError(error))); }; // eslint-disable-next-line flowtype/no-weak-types export const uploadAvatar = (uid: string, image: File) => (dispatch: Function) => { const avatarRef = firebase.storage().ref(`avatars/${uid}`); const metadata = { contentType: image.type }; avatarRef.put(image, metadata) .then(snapshot => { // Avatar image has been successfully saved to Firebase storage, // Now update the photo URL in user's profile const user = firebase.auth().currentUser; return user.updateProfile({ photoURL: snapshot.downloadURL }) .then( () => dispatch(updateUserPhotoUrl(user)), error => console.error(error) ); }) .catch(error => console.error(error)); };
34.039216
97
0.710253
73b6cd3ac8ee7f988c8da425fd73c8f1feaa3292
1,328
js
JavaScript
src/index.js
thealmarques/lightningjs-mouse-events
fa829216c0362510c84ba4d6bc90cc538978a199
[ "MIT" ]
1
2022-02-20T05:59:34.000Z
2022-02-20T05:59:34.000Z
src/index.js
thealmarques/lightningjs-mouse-events
fa829216c0362510c84ba4d6bc90cc538978a199
[ "MIT" ]
null
null
null
src/index.js
thealmarques/lightningjs-mouse-events
fa829216c0362510c84ba4d6bc90cc538978a199
[ "MIT" ]
null
null
null
export class MouseEvents { static findXPos(element) { if (!element) { return 0; } return element.x + this.findXPos(element.parent); } static findYPos(element) { if (!element) { return 0; } return element.y + this.findYPos(element.parent); } static listen(tag, type, callback) { const isIn = (node, event) => { let initialX = this.findXPos(node); let initialY = this.findYPos(node); if ( event.pageX >= initialX && node.finalW + initialX >= event.pageX && event.pageY >= initialY && node.finalH + initialY >= event.pageY ) { return true; } return false; } const searchElement = (element, event) => { if (isIn(element, event)) { return element; } if (element.children) { for(const child of element.children) { const res = searchElement(child, event); if (res) { return res; } } } }; const handler = (event) => { const element = searchElement(tag, event); callback(element, event); }; window.addEventListener(type, handler); } static getBoundingClientRect(tag) { const x = this.findXPos(tag); const y = this.findYPos(tag); return {x, y}; } }
20.430769
53
0.545181
73b7def031e7cd3525e0c33687eb986677cb7a1f
118
js
JavaScript
config/default.js
poo-particle/website
3ae1e46b9d1914220bfadf96d9d78c48fa2ad152
[ "MIT" ]
null
null
null
config/default.js
poo-particle/website
3ae1e46b9d1914220bfadf96d9d78c48fa2ad152
[ "MIT" ]
null
null
null
config/default.js
poo-particle/website
3ae1e46b9d1914220bfadf96d9d78c48fa2ad152
[ "MIT" ]
null
null
null
module.exports = { server: { host: '0.0.0.0', port: 3000, }, auth: { pub: '', priv: '', }, };
10.727273
20
0.389831
73b8992d4fbf9a417c98315ed71c9522a4ea2885
765
js
JavaScript
node_modules/path-source/dist/path-source.min.js
dalimunthe/InfligthPlan
5f3cdaae0037f38ee33874fe7da0445e95e2dc1b
[ "CC0-1.0" ]
null
null
null
node_modules/path-source/dist/path-source.min.js
dalimunthe/InfligthPlan
5f3cdaae0037f38ee33874fe7da0445e95e2dc1b
[ "CC0-1.0" ]
null
null
null
node_modules/path-source/dist/path-source.min.js
dalimunthe/InfligthPlan
5f3cdaae0037f38ee33874fe7da0445e95e2dc1b
[ "CC0-1.0" ]
null
null
null
// https://github.com/mbostock/path-source Version 0.1.2. Copyright 2016 Mike Bostock. !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n(require("array-source")):"function"==typeof define&&define.amd?define(["array-source"],n):(e.sources=e.sources||{},e.sources.path=n(e.sources.array))}(this,function(e){"use strict";function n(n){return fetch(n).then(function(n){return n.body&&n.body.getReader?n.body.getReader():n.arrayBuffer().then(e)})}function r(n){return new Promise(function(r,t){var o=new XMLHttpRequest;o.responseType="arraybuffer",o.onload=function(){r(e(o.response))},o.onerror=t,o.ontimeout=t,o.open("GET",n,!0),o.send()})}function t(e){return("function"==typeof fetch?n:r)(e)}return e="default"in e?e.default:e,t});
382.5
678
0.728105
73b89e8acca85dbd7e852655a8adcd28356f1b32
1,890
js
JavaScript
packages/component-submission/client/graphql/mutations.js
elifesciences/elife-xpub
bccea1e199bd213eef8ad03fca33d66727e34ccd
[ "MIT" ]
27
2017-10-13T13:45:10.000Z
2021-01-25T20:18:36.000Z
packages/component-submission/client/graphql/mutations.js
elifesciences/elife-xpub
bccea1e199bd213eef8ad03fca33d66727e34ccd
[ "MIT" ]
1,844
2017-10-13T10:08:28.000Z
2020-10-10T03:19:15.000Z
packages/component-submission/client/graphql/mutations.js
elifesciences/elife-xpub
bccea1e199bd213eef8ad03fca33d66727e34ccd
[ "MIT" ]
7
2018-07-12T09:51:02.000Z
2022-01-29T19:28:45.000Z
import gql from 'graphql-tag' import { manuscriptFragment } from './fragments' export const updateSubmission = gql` mutation updateSubmission($data: ManuscriptInput!) { updateSubmission(data: $data) { ...WholeManuscript } } ${manuscriptFragment} ` export const SUBMIT_MANUSCRIPT = gql` mutation SubmitManuscript($data: ManuscriptInput!) { submitManuscript(data: $data) { ...WholeManuscript } } ${manuscriptFragment} ` export const UPLOAD_MANUSCRIPT_FILE = gql` mutation UploadFile($id: ID!, $file: Upload!, $fileSize: Int!) { uploadManuscript(id: $id, file: $file, fileSize: $fileSize) { id meta { title } files { downloadLink filename type status id } fileStatus suggestions { fieldName suggestions { value score updated method } } } } ` export const UPLOAD_SUPPORTING_FILE = gql` mutation UploadFile($id: ID!, $file: Upload!) { uploadSupportingFile(id: $id, file: $file) { id meta { title } files { downloadLink filename type status id } fileStatus } } ` export const DELETE_MANUSCRIPT_FILE = gql` mutation UploadFile($id: ID!) { removeUploadedManuscript(id: $id) { id files { downloadLink filename type status id } } } ` export const DELETE_SUPPORTING_FILES = gql` mutation UploadFile($id: ID!) { removeSupportingFiles(id: $id) { id files { downloadLink filename type status id } } } ` export const submitSurveyResponse = gql` mutation SubmitSurveyResponse($data: SurveySubmission!) { submitSurveyResponse(data: $data) } `
18
66
0.567196
73b9fe237641c5804859106cd692e541bde4a5c1
6,817
js
JavaScript
bookmark-browser/src/services/DataService.js
thisiscmt/BookmarkBrowser
793257d720aa2d4a6b9ad419eb5eff5b52c4cf57
[ "MIT" ]
5
2017-02-18T02:05:17.000Z
2020-08-03T07:05:14.000Z
bookmark-browser/src/services/DataService.js
thisiscmt/BookmarkBrowser
793257d720aa2d4a6b9ad419eb5eff5b52c4cf57
[ "MIT" ]
null
null
null
bookmark-browser/src/services/DataService.js
thisiscmt/BookmarkBrowser
793257d720aa2d4a6b9ad419eb5eff5b52c4cf57
[ "MIT" ]
2
2015-06-22T18:21:43.000Z
2017-05-04T23:19:46.000Z
import Axios from 'axios'; import WebStorage from 'webStorage'; class DataService { constructor() { this.appData = WebStorage.createInstance({ driver: localStorage, name: 'bmb', keySeparator: '_' }); this.sessionData = WebStorage.createInstance({ driver: sessionStorage, name: 'bmb', keySeparator: '_' }); } setApplicationData = (key, value) => { this.appData.setItem(key, value); }; getApplicationData = (key) => { return this.appData.getItem(key); }; removeApplicationData = (key) => { this.appData.removeItem(key); }; setSessionData = (key, value) => { this.sessionData.setItem(key, value); }; getSessionData = (key) => { return this.sessionData.getItem(key); }; removeSessionData = (key) => { this.sessionData.removeItem(key); }; getNode = (items, path) => { let directory; let bookmark = null; if (path) { // If the first directory in the path is 'Root', take it out since it doesn't represent a real bookmark and would cause the search // to fail if (path[0] === 'Root') { path.shift(); } directory = path.shift(); for (let i = 0; i < items.length; i++) { if (items[i].title === directory && items[i].type === 'Directory') { // We know to stop when we've found the final directory in the node's path if (path.length === 0) { bookmark = items[i]; break; } else { bookmark = this.getNode(items[i].children, path); break; } } } } return bookmark; }; getCurrentBookmarks = (currentNavigation) => { const bookmarkData = this.getApplicationData('BookmarkData'); const showLastDir = this.getApplicationData('LastKnownDirectoryOnStartup'); const currentDirectory = this.getSessionData('CurrentDirectory'); let currentBookmarks = { bookmarkToolbar: [], bookmarkMenu: [], topLevel: true }; let node = null; let directory = ''; if (bookmarkData) { if (currentNavigation.action === 'GoToPriorLevel' && currentNavigation.node) { let path = currentNavigation.node.path.split("\\"); if (path.length <= 3) { currentBookmarks.bookmarkToolbar = bookmarkData.children[0].children; currentBookmarks.bookmarkMenu = bookmarkData.children[1].children; } else { path.splice(path.length - 1, 1); path.splice(0, 1); node = this.getNode(bookmarkData.children, path); directory = node.path; currentBookmarks.bookmarkToolbar = node.children; currentBookmarks.topLevel = false; } } else if (currentNavigation.action === 'GoToTop') { currentBookmarks.bookmarkToolbar = bookmarkData.children[0].children; currentBookmarks.bookmarkMenu = bookmarkData.children[1].children; } else if (currentNavigation.action === 'GoToDirectory' && currentNavigation.node) { currentBookmarks.bookmarkToolbar = currentNavigation.node.children; currentBookmarks.topLevel = false; node = currentNavigation.node; directory = currentNavigation.directory; } else { // Here we assume the current navigation action is 'GoToDirectory', which represents the user drilling down into their bookmark // hierarchy if (showLastDir) { if (currentDirectory) { node = this.getNode(bookmarkData.children, currentDirectory.split('\\')); if (node) { currentBookmarks.bookmarkToolbar = node.children; currentBookmarks.topLevel = false; directory = node.path; } } else { directory = this.getApplicationData('CurrentDirectory'); if (directory) { node = this.getNode(bookmarkData.children, directory.split('\\')); if (node) { currentBookmarks.bookmarkToolbar = node.children; currentBookmarks.topLevel = false; directory = node.path; } } else { currentBookmarks.bookmarkToolbar = bookmarkData.children[0].children; currentBookmarks.bookmarkMenu = bookmarkData.children[1].children; } } } else { if (currentDirectory) { node = this.getNode(bookmarkData.children, currentDirectory.split('\\')); if (node) { currentBookmarks.bookmarkToolbar = node.children; currentBookmarks.topLevel = false; directory = node.path; } } else { currentBookmarks.bookmarkToolbar = bookmarkData.children[0].children; currentBookmarks.bookmarkMenu = bookmarkData.children[1].children; } } } } this.setSessionData('CurrentNode', node); this.setSessionData('CurrentDirectory', directory); this.setApplicationData('CurrentDirectory', directory); return currentBookmarks; }; uploadBookmarkData = (bookmarkData, authHeader) => { const config = { headers: { 'Content-Type': 'application/json', 'Authorization': authHeader } }; const data = { bookmarkData, uploadTimestamp: new Date().getTime() } return Axios.post(process.env.REACT_APP_API_URL + '/bookmark', data, config) }; downloadBookmarkData = (authHeader) => { const config = { headers: { 'Authorization': authHeader } }; return Axios.get(process.env.REACT_APP_API_URL + '/bookmark', config) } } export default DataService;
35.321244
143
0.501687
73ba5777b136f7e11b5af9cc2bc245cb4afd47fc
202
js
JavaScript
packages/webpack-config/example/webpack.dev.js
DanielJDufour/client-modules
18dbe3f8ee863908116023c0ed68cfa82ccfe396
[ "MIT" ]
null
null
null
packages/webpack-config/example/webpack.dev.js
DanielJDufour/client-modules
18dbe3f8ee863908116023c0ed68cfa82ccfe396
[ "MIT" ]
null
null
null
packages/webpack-config/example/webpack.dev.js
DanielJDufour/client-modules
18dbe3f8ee863908116023c0ed68cfa82ccfe396
[ "MIT" ]
null
null
null
const { createConfig } = require('../src'); module.exports = createConfig() .common({ context: __dirname, env: 'development', }) .css() .devServer({ port: 4102, }) .toConfig();
15.538462
43
0.574257
73bb32626bf9ada5f2e0d2c16803732a5b63bcb6
2,402
js
JavaScript
assets/javascript/app.js
SpeedHunterSam/TriviaGame
a8eced5a2d80e42499eed6002c9f58f81a5d0311
[ "MIT" ]
null
null
null
assets/javascript/app.js
SpeedHunterSam/TriviaGame
a8eced5a2d80e42499eed6002c9f58f81a5d0311
[ "MIT" ]
null
null
null
assets/javascript/app.js
SpeedHunterSam/TriviaGame
a8eced5a2d80e42499eed6002c9f58f81a5d0311
[ "MIT" ]
null
null
null
let timer = 5; // set timer to 5 seconds let timerRunning = true; ///checks and balances variable to track if functions have terminated let answer1 = ""; // variable to save the shotgun/quick answer function startGame() { document.getElementById("revealQuestion").style.color = "black"; //reveal the question to the user immediately after clicking the start button document.getElementById("gameContainer").innerHTML = timer + " Seconds left"; //display starting timer const fullStop = setInterval(updateCountdown, 1000); //set interval to run countdown function console.log("Game Function Running"); //a check to get status of timer in console console.log(timerRunning); function gameOver() { //game over function will inform user that game is over, stop the timer and display the score console.log(timerRunning) //a double check to make sure everything stops console.log("Game has Stopped") clearInterval(fullStop); //getting the values of all of the radio buttons let ele = document.getElementsByName("question1"); for(let i = 0; i < ele.length; i++) { if(ele[i].checked){ answer1 = ele[i].value; } } console.log(answer1); //double checking the console for the correct string aka answer if(answer1 === "Black Panther"){ //checking to see if the answer received was correct document.getElementById("gameContainer").innerHTML = "Game Over... Congratulations " + answer1 + " is correct. Thanos has spared you."; } else{ document.getElementById("gameContainer").innerHTML = "Game Over..." + answer1 + " is not correct. You have been sacrificed by Thanos for the greater good."; } } function updateCountdown() { //this function displays time remaining to the viewport document.getElementById("gameContainer").innerHTML = timer + " Seconds left"; if (timer <= 0) { timerRunning = false; console.log(timerRunning); //a check to make sure everything stops gameOver(); //run end of game function and display result } else { timer--; } } } document.getElementById("goToGame").addEventListener("click", startGame); //listen for initialization click to start the game
35.323529
169
0.647794
73bb9b26f09f870087620256f0827fb617745f23
3,331
js
JavaScript
public/js/chunk-a2c2a964.99c7538f.js
coral3012/mus-api
3d4b73f3ca6929357f108490af92b06a719e3b54
[ "MIT" ]
null
null
null
public/js/chunk-a2c2a964.99c7538f.js
coral3012/mus-api
3d4b73f3ca6929357f108490af92b06a719e3b54
[ "MIT" ]
null
null
null
public/js/chunk-a2c2a964.99c7538f.js
coral3012/mus-api
3d4b73f3ca6929357f108490af92b06a719e3b54
[ "MIT" ]
null
null
null
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-a2c2a964"],{5377:function(t,n,e){var a=e("83ab"),o=e("9bf2"),s=e("ad6d"),c=e("9f7f").UNSUPPORTED_Y;a&&("g"!=/./g.flags||c)&&o.f(RegExp.prototype,"flags",{configurable:!0,get:s})},"79ce":function(t,n,e){"use strict";e.r(n);var a=function(){var t=this,n=t.$createElement,e=t._self._c||n;return e("div",{staticClass:"search"},[e("div",{staticClass:"search_head"},[e("div",{staticClass:"header"},[e("van-icon",{attrs:{name:"arrow-left"},on:{click:t.back}}),e("van-search",{attrs:{"show-action":"",placeholder:"请输入搜索关键词"},on:{search:t.onSearch,change:function(n){return t.saveSaerch()}},scopedSlots:t._u([{key:"action",fn:function(){return[e("div",{on:{click:t.onSearch}},[t._v("搜索")])]},proxy:!0}]),model:{value:t.value,callback:function(n){t.value=n},expression:"value"}})],1),t.flags?t._e():e("ul",{staticClass:"search_content"},t._l(t.words,(function(n){return e("li",{key:n.id,on:{click:function(e){return t.saveMusic(n)}}},[e("img",{attrs:{src:n.album.artist.img1v1Url,alt:""}}),e("div",[e("span",[t._v(t._s(n.name)+"-"+t._s(n.__ob__.value.artists[0].name))])])])})),0)]),t.flags?e("ul",{staticClass:"hot"},t._l(t.hot,(function(n,a){return e("li",{key:a,on:{click:function(e){return t.hotSearch(n)}}},[t._v(" "+t._s(n.first)+" ")])})),0):t._e()])},o=[],s=(e("b0c0"),e("5377"),{components:{},data:function(){return{value:"",flags:!0,hot:[],words:[]}},computed:{},watch:{},methods:{back:function(){this.$router.push({name:"MyStyle"})},getHot:function(){var t=this;this.$axios.post("http://81.69.58.73:3000/search/hot").then((function(n){200===n.data.code&&(t.hot=n.data.result.hots)}))},hotSearch:function(t){this.value=t.first},onSearch:function(){var t=this;this.$axios.post("http://81.69.58.73:3000/search?keywords=".concat(this.value)).then((function(n){200===n.data.code&&(t.words=n.data.result.songs)}))},saveSaerch:function(){this.value?this.flags=!1:this.flags=!0},saveMusic:function(t){console.log(t),this.$router.push({name:"Splay",query:{id:t.id,gname:t.name,cname:t.__ob__.value.artists[0].name}})}},created:function(){this.getHot(),this.$eventBus.$emit("maile")},mounted:function(){},beforeCreate:function(){},beforeMount:function(){},beforeUpdate:function(){return this.value?this.flags=!1:this.flags=!0},updated:function(){},beforeDestroy:function(){},destroyed:function(){},activated:function(){}}),c=s,i=(e("8f24"),e("2877")),r=Object(i["a"])(c,a,o,!1,null,"10489b7d",null);n["default"]=r.exports},"8f24":function(t,n,e){"use strict";e("b2e6")},"9f7f":function(t,n,e){"use strict";var a=e("d039");function o(t,n){return RegExp(t,n)}n.UNSUPPORTED_Y=a((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),n.BROKEN_CARET=a((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},ad6d:function(t,n,e){"use strict";var a=e("825a");t.exports=function(){var t=a(this),n="";return t.global&&(n+="g"),t.ignoreCase&&(n+="i"),t.multiline&&(n+="m"),t.dotAll&&(n+="s"),t.unicode&&(n+="u"),t.sticky&&(n+="y"),n}},b0c0:function(t,n,e){var a=e("83ab"),o=e("9bf2").f,s=Function.prototype,c=s.toString,i=/^\s*function ([^ (]*)/,r="name";a&&!(r in s)&&o(s,r,{configurable:!0,get:function(){try{return c.call(this).match(i)[1]}catch(t){return""}}})},b2e6:function(t,n,e){}}]); //# sourceMappingURL=chunk-a2c2a964.99c7538f.js.map
1,665.5
3,279
0.658961
73bbfefb576d800689b15afacdedeeb078adcfc4
795
js
JavaScript
js/libs/helpers/getLFMImageWrap.js
tonsky/deklarota
6fa862601295f86832dea649b888f1854b3ebf7b
[ "MIT" ]
2
2021-02-13T02:14:14.000Z
2021-02-13T04:12:13.000Z
js/libs/helpers/getLFMImageWrap.js
Kaveesha-Induwara/deklarota
6fa862601295f86832dea649b888f1854b3ebf7b
[ "MIT" ]
null
null
null
js/libs/helpers/getLFMImageWrap.js
Kaveesha-Induwara/deklarota
6fa862601295f86832dea649b888f1854b3ebf7b
[ "MIT" ]
1
2021-01-27T08:02:43.000Z
2021-01-27T08:02:43.000Z
define(function(require) { "use strict"; var spv = require('spv'); var getLFMImageId = function(url) { var url_parts = url.split(/\/+/); if (url_parts[1] == 'userserve-ak.last.fm'){ return url_parts[4].replace(/png$/, 'jpg'); } }; var getLFMImageWrap = function(array) { if (!array){ return; } var url, lfm_id; if (typeof array == 'string'){ url = array; } else { url = spv.getTargetField(array, '3.#text'); } if (url){ if (url.indexOf('http://cdn.last.fm/flatness/catalogue/noimage') === 0){ return; } else { lfm_id = getLFMImageId(url); if (lfm_id){ return { lfm_id: lfm_id }; } else { return { url: url }; } } } }; return getLFMImageWrap })
15.288462
76
0.525786
73bd56e7fd291370491ec910922a46ca0624cc39
930
js
JavaScript
src/store/auth/moduleAuthMutations.js
gispatial/tripcarte-asia-JWT
50fb0dee3ae14bacbbc055a197a30aad0cfb397c
[ "Unlicense" ]
1
2020-10-02T13:29:41.000Z
2020-10-02T13:29:41.000Z
src/store/auth/moduleAuthMutations.js
gispatial/tripcarte-asia-JWT
50fb0dee3ae14bacbbc055a197a30aad0cfb397c
[ "Unlicense" ]
null
null
null
src/store/auth/moduleAuthMutations.js
gispatial/tripcarte-asia-JWT
50fb0dee3ae14bacbbc055a197a30aad0cfb397c
[ "Unlicense" ]
null
null
null
/*========================================================================================= File Name: moduleAuthMutations.js Description: Auth Module Mutations ---------------------------------------------------------------------------------------- Item Name: Tripcarte.Asia Dashboard Management Portal Author: Tripcarte.Asia Staging URL: http://tripcarte.gispatial.tech/api ==========================================================================================*/ import axios from "../../http/axios/index.js" export default { SET_BEARER(state, accessToken) { axios.defaults.headers.common['Authorization'] = 'Bearer ' + accessToken }, auth_request(state){ state.status = 'loading' }, auth_success(state, token){ state.status = 'success' state.token = token }, auth_error(state){ state.status = 'error' }, logout(state){ state.status = '' state.token = '' }, }
30
92
0.475269
73bd871c7b065a272ade2bd23ee994f801d26e98
737
js
JavaScript
dyno-bot-master/patreon-service-master/build/config.js
Discord-Wiz/dyno-bot-master
eef006e59cbfff7ca1b7c01e0ae3e5ad008adbbf
[ "MIT" ]
6
2021-01-28T16:49:45.000Z
2021-11-07T10:33:18.000Z
dyno-bot-master/patreon-service-master/build/config.js
Discord-Wiz/dyno-bot-master
eef006e59cbfff7ca1b7c01e0ae3e5ad008adbbf
[ "MIT" ]
null
null
null
dyno-bot-master/patreon-service-master/build/config.js
Discord-Wiz/dyno-bot-master
eef006e59cbfff7ca1b7c01e0ae3e5ad008adbbf
[ "MIT" ]
11
2021-01-29T00:44:42.000Z
2022-01-05T18:45:47.000Z
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); if (process.env.PATREON_CLIENT_ID == undefined) { throw new Error('PATREON_CLIENT_ID is not defined.'); } if (process.env.PATREON_CLIENT_SECRET == undefined) { throw new Error('PATREON_CLIENT_SECRET is not defined.'); } if (process.env.SENTRY_DSN == undefined) { throw new Error('SENTRY_DSN is not defined.'); } exports.config = { patreon: { clientId: process.env.PATREON_CLIENT_ID, clientSecret: process.env.PATREON_CLIENT_SECRET, }, sentry: { dsn: process.env.SENTRY_DSN, logLevel: process.env.SENTRY_LEVEL != undefined ? process.env.SENTRY_LEVEL : 'error', }, }; //# sourceMappingURL=config.js.map
33.5
93
0.690638
73beda83de694580a7363abc8724dc3b016f8dd3
578
js
JavaScript
public/javascripts/content/lesson4/lesson-content.js
HustleHardCode/spacecraft
6237048963043b2f40634841c539e4f36db9a290
[ "MIT" ]
6
2017-12-10T11:22:45.000Z
2022-01-08T21:38:57.000Z
public/javascripts/content/lesson4/lesson-content.js
vladthelittleone/spacecraft
6237048963043b2f40634841c539e4f36db9a290
[ "MIT" ]
8
2017-09-29T11:21:51.000Z
2017-09-29T11:24:27.000Z
public/javascripts/content/lesson4/lesson-content.js
HustleHardCode/spacecraft
6237048963043b2f40634841c539e4f36db9a290
[ "MIT" ]
3
2018-02-18T19:03:36.000Z
2018-10-10T06:43:34.000Z
'use strict'; // Экспорт module.exports = Content(); /** * Контент третьего урока. * * Created by vladthelittleone on 12.06.16. */ function Content() { var points = { totalPoints: 350, // Штрафные очки за действия на уроке. incorrectAnswer: 50 }; return { text: 'Тестирование', label: 'Основы JavaScript', quote: 'Новые горизонты, новые вопросы.', sub: require('./sub'), points: points, maxAttemptLessonCountForBonus: 3 }; }
19.931034
67
0.522491
73c04da1e640cbdc4a9b7d912d9e00ce6ecdcaed
1,854
js
JavaScript
docs/static/js/20.f6153973.chunk.js
chenxiangdashen/haigong-admin
b74a8ed1e2556f254082b12866a8e61322116bb6
[ "Apache-2.0" ]
2
2019-06-17T10:43:21.000Z
2020-06-18T02:54:20.000Z
docs/static/js/20.f6153973.chunk.js
xjc-opensource/react-admin-example
7822b18e5353ebc5884836fdaff53880a1a3524b
[ "Apache-2.0" ]
2
2021-03-11T03:04:37.000Z
2022-02-19T05:29:13.000Z
docs/static/js/20.f6153973.chunk.js
chenxiangdashen/haigong-admin
b74a8ed1e2556f254082b12866a8e61322116bb6
[ "Apache-2.0" ]
2
2020-06-30T01:16:58.000Z
2020-08-19T03:47:57.000Z
(window.webpackJsonp=window.webpackJsonp||[]).push([[20],{905:function(t,e,n){"use strict";n.r(e);n(208);var i=n(135),a=n.n(i),r=n(19),o=n(20),c=n(22),l=n(18),s=n(21),d=n(1),h=n.n(d),u=n(849),p=n.n(u),g=n(491),S=n.n(g),b=function(t){function e(t){var n;return Object(r.a)(this,e),(n=Object(c.a)(this,Object(l.a)(e).call(this,t))).getScriptLoadElement=function(t){return t?h.a.createElement(p.a,{content:"<p>This is the initial content of the editor</p>",config:{plugins:"autolink link image lists print preview",toolbar:"undo redo | bold italic | alignleft aligncenter alignright",language:"zh_CN"},onChange:n.handleEditorChange}):h.a.createElement(a.a,{spinning:!0,tip:"\u7ec4\u4ef6\u52a0\u8f7d\u4e2d..."})},n.loadScriptUrl="./js/tinymce5.0.15/tinymce.min.js",n}return Object(s.a)(e,t),Object(o.a)(e,[{key:"handleEditorChange",value:function(t){console.log(t.target.getContent())}},{key:"componentDidMount",value:function(){}}]),e}(function(t){function e(t){var n;return Object(r.a)(this,e),(n=Object(c.a)(this,Object(l.a)(e).call(this,t))).state={scriptLoaded:!1,scriptError:!1},n.loadScriptUrl=t.url,n}return Object(s.a)(e,t),Object(o.a)(e,[{key:"handleScriptCreate",value:function(){console.log("handleScriptCreate"),this.setState({scriptLoaded:!1})}},{key:"handleScriptError",value:function(){console.log("handleScriptError"),this.setState({scriptError:!0})}},{key:"handleScriptLoad",value:function(){console.log("handleScriptLoad"),this.setState({scriptLoaded:!0})}},{key:"getScriptLoadElement",value:function(t){}},{key:"render",value:function(){return h.a.createElement("div",null,h.a.createElement(S.a,{url:this.loadScriptUrl,onCreate:this.handleScriptCreate.bind(this),onError:this.handleScriptError.bind(this),onLoad:this.handleScriptLoad.bind(this)}),this.getScriptLoadElement(this.state.scriptLoaded))}}]),e}(h.a.Component));e.default=b}}]);
1,854
1,854
0.730852
73c1f5d317606d7871a399384a3cb8c1ab87b20a
862
js
JavaScript
src/core/plugin/format/amd.js
JOU-amjs/amaple
cc209716b94f138a458f6f9e5c5f1e6d208fbb8d
[ "MIT" ]
20
2018-01-24T14:06:53.000Z
2019-09-26T03:57:03.000Z
src/core/plugin/format/amd.js
JOU-amjs/amaple
cc209716b94f138a458f6f9e5c5f1e6d208fbb8d
[ "MIT" ]
3
2020-07-15T20:37:23.000Z
2022-03-01T23:47:40.000Z
src/core/plugin/format/amd.js
amjs-team/amaple
e818faf31fbb5cd8f17160b14a01721118257c4d
[ "MIT" ]
2
2018-01-25T01:55:58.000Z
2020-10-06T09:02:13.000Z
import { foreach } from "../../../func/util"; import { buildPlugin } from "../../../func/private"; import correctParam from "../../../correctParam"; import pluginBuilder from "../core"; import Loader from "../../../require/Loader"; function define ( deps, callback ) { correctParam ( deps, callback ).to ( "array", "function" ).done ( function () { deps = this.$1 || []; callback = this.$2; } ); const path = Loader.getCurrentPath (); foreach ( pluginBuilder.buildings, building => { if ( building.url === path ) { building.install = () => { buildPlugin ( { name: building.name, build: callback }, {}, deps ); }; } } ); } define.amd = {}; export default function amd ( pluginDef, buildings ) { if ( !window.define ) { window.define = define; } buildings.push ( { url: pluginDef.url, name: pluginDef.name } ); }
23.944444
80
0.598608
73c30ede5f12d54afa28a5b5ef49a68ef13eaa53
196
js
JavaScript
index.js
jaapenstaart/node-magichome
a30838b1e3c5fe899bd47d3e588cc39e71ac4690
[ "ISC" ]
2
2021-11-07T02:26:51.000Z
2021-11-08T09:41:46.000Z
index.js
jaapenstaart/node-magichome
a30838b1e3c5fe899bd47d3e588cc39e71ac4690
[ "ISC" ]
null
null
null
index.js
jaapenstaart/node-magichome
a30838b1e3c5fe899bd47d3e588cc39e71ac4690
[ "ISC" ]
null
null
null
var Control = require('./lib/Control.js'); var Discovery = require('./lib/Discovery.js'); var CustomMode = require('./lib/CustomMode.js'); module.exports = { Control, Discovery, CustomMode };
19.6
48
0.693878
73c31e20410c4b2caafa45bde6671469671dfc65
103
js
JavaScript
interface/schema/rows.js
splayd/library
1d2597c3c8d14ad50d627180ab979c08bc7139b0
[ "MIT" ]
null
null
null
interface/schema/rows.js
splayd/library
1d2597c3c8d14ad50d627180ab979c08bc7139b0
[ "MIT" ]
1
2018-09-26T20:38:38.000Z
2018-09-26T20:38:38.000Z
interface/schema/rows.js
splayd/library
1d2597c3c8d14ad50d627180ab979c08bc7139b0
[ "MIT" ]
null
null
null
/* @flow */ import type { Row } from './' // eslint-disable-line export type Rows<R = Row> = Array<R>
20.6
52
0.601942
73c3bee0ccd664db772229995fd5246d2ef70bbe
3,839
js
JavaScript
src_old/math/V2.js
aeciolevy/fullik
236216bf0f4dcee73dec030b6530ab9a71754af6
[ "MIT" ]
215
2016-04-10T15:03:57.000Z
2022-03-22T08:29:01.000Z
src_old/math/V2.js
WebRTCGame/Three.js_IK
235f4c8e768a35f3c726a00f94625006cb1c67e6
[ "MIT" ]
8
2017-06-22T15:41:09.000Z
2020-08-13T11:51:51.000Z
src_old/math/V2.js
WebRTCGame/Three.js_IK
235f4c8e768a35f3c726a00f94625006cb1c67e6
[ "MIT" ]
37
2016-05-31T17:31:49.000Z
2022-03-22T11:36:20.000Z
import { _Math } from './Math.js'; import { Tools } from '../core/Tools.js'; function V2( x, y ){ this.x = x || 0; this.y = y || 0; } Object.assign( V2.prototype, { isVector2: true, set: function( x, y ){ this.x = x || 0; this.y = y || 0; return this; }, multiplyScalar: function ( scalar ) { this.x *= scalar; this.y *= scalar; return this; }, divideScalar: function ( scalar ) { return this.multiplyScalar( 1 / scalar ); }, length: function () { return Math.sqrt( this.x * this.x + this.y * this.y ); }, normalize: function () { return this.divideScalar( this.length() || 1 ); }, normalised: function () { return new V2( this.x, this.y ).normalize(); }, lengthSq: function () { return this.x * this.x + this.y * this.y; }, length: function () { return Math.sqrt( this.x * this.x + this.y * this.y ); }, plus: function ( v ) { return new V2( this.x + v.x, this.y + v.y ); }, min: function ( v ) { this.x -= v.x; this.y -= v.y; return this; }, minus: function ( v ) { return new V2( this.x - v.x, this.y - v.y ); }, divideBy: function ( value ) { return new V2( this.x, this.y ).divideScalar( value ); }, times: function ( s ) { if( s.isVector2 ) return new V2( this.x * s.x, this.y * s.y ); else return new V2( this.x * s, this.y * s, this.z * s ); }, randomise: function ( min, max ) { this.x = _Math.rand( min, max ); this.y = _Math.rand( min, max ); return this; }, /*projectOnPlane: function ( planeNormal ) { if ( planeNormal.length() <= 0 ){ Tools.error("Plane normal cannot be a zero vector."); return; } // Projection of vector b onto plane with normal n is defined as: b - ( b.n / ( |n| squared )) * n // Note: |n| is length or magnitude of the vector n, NOT its (component-wise) absolute value var b = this.normalised(); var n = planeNormal.normalised(); return b.minus( n.times( _Math.dotProduct( b, planeNormal ) ) ).normalize();// b.sub( n.multiply( Fullik.dotProduct(b, planeNormal) ) ).normalize(); },*/ /*cross: function( v ) { return new V2( this.y * v.z - this.z * v.y, this.z * v.x - this.x * v.z, this.x * v.y - this.y * v.x ); },*/ dot: function ( a, b ) { //if( b !== undefined ) return a.x * b.x + a.y * b.y; //else return this.x * a.x + this.y * a.y; }, negate: function() { this.x = -this.x; this.y = -this.y; return this; }, negated: function () { return new V2( -this.x, -this.y ); }, clone: function () { return new V2( this.x, this.y ); }, copy: function ( v ) { this.x = v.x; this.y = v.y; return this; }, zcross: function( b ) { // Method to determine the sign of the angle between two V2 objects. var p = this.x * b.y - b.x * this.y; if ( p > 0 ) return 1; else if ( p < 0 ) return -1; return 0; }, approximatelyEquals: function ( v, t ) { if ( t < 0 ) return false; var xDiff = Math.abs(this.x - v.x); var yDiff = Math.abs(this.y - v.y); return ( xDiff < t && yDiff < t ); }, getSignedAngleDegsTo: function ( otherVector ) { // 2D var angle = _Math.getAngleBetweenDegs( this, otherVector ); // Normalise the vectors that we're going to use //var thisVectorUV = this.normalised(); //var otherVectorUV = otherVector.normalised(); // Calculate the unsigned angle between the vectors as the arc-cosine of their dot product //var unsignedAngleDegs = Math.acos( thisVectorUV.dot(otherVectorUV) ) * _Math.toDeg; // Calculate and return the signed angle between the two vectors using the zcross method if ( this.zcross( otherVector ) === 1 ) return angle; else return -angle; }, } ); export { V2 };
19.388889
156
0.565251
73c4e23bb9e6eb67e56969a1987af13bc8da9e41
3,637
js
JavaScript
cfi-steph/src/components/NavBar/Nav.js
SheylaPopovich/CFI-Steph
80e972757835093d24570121aefac32f1ecd93f4
[ "MIT" ]
null
null
null
cfi-steph/src/components/NavBar/Nav.js
SheylaPopovich/CFI-Steph
80e972757835093d24570121aefac32f1ecd93f4
[ "MIT" ]
null
null
null
cfi-steph/src/components/NavBar/Nav.js
SheylaPopovich/CFI-Steph
80e972757835093d24570121aefac32f1ecd93f4
[ "MIT" ]
null
null
null
import "./nav.css"; import React, { useState } from "react"; import Homepage from "../HomePage/Homepage"; import Contact from "../Contact/Contact"; import Blog from "../Blog/Blog"; import Store from "../Store/Shop"; import About from "../About/About"; function Nav() { const [isActive, setisActive] = React.useState(false); const [page, setPage] = useState("Landing"); function setHome() { setPage(""); } function setAbout() { setPage("about"); } function setLanding() { setPage("Landing"); } return ( <div> <nav className="navbar" role="navigation" aria-label="main navigation"> <div className="navbar-brand"> <a className="navbar-item"> {/* <img id="logo" src="./assets/images/CFI_Steph_logo.png" /> */} </a> <a onClick={() => { setisActive(!isActive); }} role="button" className={`navbar-burger burger ${isActive ? "is-active" : ""}`} aria-label="menu" aria-expanded="false" data-target="navbarBasicExample" > <span aria-hidden="true"></span> <span aria-hidden="true"></span> <span aria-hidden="true"></span> </a> </div> <div id="navbarBasicExample" className={`navbar-menu ${isActive ? "is-active" : ""}`} > <div className="navbar-start"> <a className="navbar-item" href="#homepage" onClick={() => { setPage("homepage"); }} > Home </a> <div className="navbar-item has-dropdown is-hoverable"> <a className="navbar-link">Education</a> <div className="navbar-dropdown"> <a className="navbar-item">Private Pilot Knowledge</a> <a className="navbar-item">Instrument Rating Knowledge</a> <a className="navbar-item">Commercial Pilot Knowledge</a> <a className="navbar-item">Multi-Engine Knowledge</a> <a className="navbar-item">Suggested Reading</a> </div> <a className="navbar-item" href="#about" onClick={setAbout}> About </a> <a className="navbar-item" href="#shop" onClick={() => { setPage("shop"); }} > Shop </a> <a href="" className="navbar-item" href="#contact" onClick={() => { setPage("contact"); }} > Contact </a> <a className="navbar-item" href="#blog" onClick={() => { setPage("blog"); }} > Blog </a> </div> </div> </div> </nav> <div className="sections"> {page === "about" ? ( <div> <About /> </div> ) : page === "shop" ? ( <div> <Store /> </div> ) : page === "contact" ? ( <div> <Contact /> </div> ) : page === "blog" ? ( <div> <Blog /> </div> ) : ( <div> <Homepage /> </div> )} </div> </div> ); } export default Nav;
26.355072
78
0.417377
73c5b92a99bbe810ec2e74d5f47e6155fd3286c8
2,093
js
JavaScript
src/components/ExerciseDay.js
JamieBort/Weight-Lifting-App
ee5ee5e39b844610cf2f3c3812a1c5f5cde256f8
[ "Apache-2.0" ]
null
null
null
src/components/ExerciseDay.js
JamieBort/Weight-Lifting-App
ee5ee5e39b844610cf2f3c3812a1c5f5cde256f8
[ "Apache-2.0" ]
1
2022-02-27T21:44:51.000Z
2022-02-27T21:44:51.000Z
src/components/ExerciseDay.js
JamieBort/Weight-Lifting-App
ee5ee5e39b844610cf2f3c3812a1c5f5cde256f8
[ "Apache-2.0" ]
null
null
null
// src/js/components/ExerciseDay.js import React, { Component } from 'react'; import { Button, StyleSheet, Text, View } from 'react-native'; // import EditButton from './EditButton'; // import RemoveButton from './RemoveButton'; const ExerciseDay = (props) => { const doThis = (event) => { // console.log('Remove button.'); // console.log('event: ', event); // console.log('event.target: ', event.target); // console.log('event.target.value: ', event.target.value); // console.log('event.target.parentNode: ', event.target.parentElement); // console.log('event.target.parentNode: ', event.target.parentNode); // console.log('window: ', window); // console.log('window.parent: ', window.parent); console.log('event.target.parentElement.id: ', event.target.parentElement.id); console.log('props.item: ', props.item); }; return ( <View id="bam!" style={styles.exerciseDay}> <Text> <h3>An exercise day such as leg day</h3> {props.item} </Text> <Button item={props.item} title={props.title} onPress={props.removeChildren} /> {/* <EditButton text="Edit this Exercise." editFunction={null} /> <RemoveButton text="Remove this Exercise." status={props.status} removeFunction={props.removeFunction} /> <Text> <p>{props.status ? 'true' : 'false'}</p> </Text> */} {/* <div style={styles.buttonDiv}> */} <Button item={props.item} title="Button in ExerciseDay.js to remove one Child component." onPress={props.removeChildren} /> <Button item={props.item} title="Button in ExerciseDay.js to remove one Hijo component." onPress={props.removeHijos} /> {/* </div> */} </View> ); }; const styles = StyleSheet.create({ exerciseDay: { backgroundColor: 'lightgreen', // flex: 1, // alignItems: 'center', // justifyContent: 'center', margin: 10, padding: 10, // button: { // backgroundColor: 'green', // margin: 10, // padding: 10, // }, }, // buttonDiv: { // backgroundColor: 'green', // // margin: 10 + 'em', // // padding: 10 + 'em', // }, }); export default ExerciseDay;
29.069444
108
0.635929
73c62bec98eabdebbd23a86863e2d1abd62e0801
165
js
JavaScript
api/middleware/index.js
EmotionBin/web-chat
30f3857f9c71499bae25f79b9575e7b3ae92bfe1
[ "MIT" ]
1
2020-11-22T01:20:28.000Z
2020-11-22T01:20:28.000Z
api/middleware/index.js
EmotionBin/web-chat
30f3857f9c71499bae25f79b9575e7b3ae92bfe1
[ "MIT" ]
null
null
null
api/middleware/index.js
EmotionBin/web-chat
30f3857f9c71499bae25f79b9575e7b3ae92bfe1
[ "MIT" ]
null
null
null
const routerResponse = require('./modules/router-response') const tokenCheck = require('./modules/token-check') module.exports = { routerResponse, tokenCheck }
20.625
59
0.745455
73c68c5a181abd766cc2401ba1ddce43f4a0509b
4,501
js
JavaScript
lib.js
rupjyotinath/gmailFilteredNotification
a121de1f1cb5ceb6fbc93f0de219ea2b98bd41b2
[ "MIT" ]
null
null
null
lib.js
rupjyotinath/gmailFilteredNotification
a121de1f1cb5ceb6fbc93f0de219ea2b98bd41b2
[ "MIT" ]
null
null
null
lib.js
rupjyotinath/gmailFilteredNotification
a121de1f1cb5ceb6fbc93f0de219ea2b98bd41b2
[ "MIT" ]
null
null
null
/** * Returns a concised version of message Object, which removes all unnecessary data * @param {Object} message The email message object obtained from a users.messages.get * @returns {Object} concisedMessage */ function conciseMessage(message){ const concisedMessage={}; if(!message.id && !message.snippet && message.payload && message.payload.headers){ throw new Error("message passed to conciseMessage not proper, id, snippet, headers missing") } concisedMessage.id=message.id; concisedMessage.snippet=message.snippet; const messageHeaders=message.payload.headers; // console.log(messageHeaders); const headerFrom=messageHeaders.find(({name})=>name==='From'); // console.log(headerFrom) if(headerFrom){ concisedMessage.from=headerFrom.value; } let senderName; let senderEmail; if(headerFrom){ const headerFromValue=headerFrom.value.split(" <"); // console.log(headerFromValue) if(headerFromValue.length===2){ senderName=headerFromValue[0]; senderEmail=headerFromValue[1]; senderEmail=senderEmail.substring(0,senderEmail.length-1); } else{ senderEmail=headerFromValue[0]; senderEmail=senderEmail.substring(0,senderEmail.length); } if(!senderName && senderEmail){ senderName=senderEmail.split("@")[0]; } } let domain; if(senderEmail){ domain=senderEmail.split("@")[1]; } concisedMessage.senderEmail=senderEmail; concisedMessage.senderName=senderName; concisedMessage.domain=domain; // console.log(concisedMessage); return concisedMessage; } /** * Generic function that filters a message based on a filter property * @param {Object} message message Object containg id,labelIds & threadId * @param {Object} values Object labels/emailIds/domains which is present as a property in filter Object * @param {string} property Property/Key in message object * @returns Boolean True if matched with filter, false otherwise */ function filterMessageBasedOnProperty(message,values,property){ if(values.include.length){ let pass=false; for(const label of values.include){ if(message[property].indexOf(label)!=-1){ pass=true; break; } }; return pass; } else if(values.exclude.length){ // console.log(message[property]) let pass=true; for(const label of values.exclude){ if(message[property].indexOf(label)!=-1){ pass=false; break; } }; return pass; } else{ return true; } } function filterMessageBasedOnLabels(message,labels){ return filterMessageBasedOnProperty(message,labels,"labelIds"); } function filterMessageBasedOnEmailIds(message,emailIds){ return filterMessageBasedOnProperty(message,emailIds,"senderEmail"); } function filterMessageBasedOnDomains(message,domains){ return filterMessageBasedOnProperty(message,domains,"domain"); } /** * Filter function for a single message. Filters based on emailid or domain according to filter object/settings passed. * @param {Object} message * @param {Object} filter */ function filterMessage(message,filter){ const emailPass=filterMessageBasedOnEmailIds(message,filter.emailIds); if(filter.emailIds.include.length>0){ return emailPass; // Emails present on include means only actively monitor that particular emails, returning directly the outcome } else if(filter.emailIds.exclude.length>0){ if(emailPass){ // Check if domain filter enabled, in that case, will return the domainPass if(filter.emailIds.domainFilter){ return filterMessageBasedOnDomains(message,filter.domains); } return emailPass; // return True } else{ return emailPass; // return False ; The email is present in excluded list, will not allow. } } else{ // Nothing in Email filter, will check Domain filter const domainPass =filterMessageBasedOnDomains(message,filter.domains); return domainPass; /* Todo: Implement the Social Filter for future version */ } } module.exports={ conciseMessage, filterMessageBasedOnLabels, filterMessageBasedOnProperty, filterMessage }
31.921986
139
0.662519
73c6f4f4f1ba9a14b211699b790b6043e87ea3a6
2,479
js
JavaScript
src/navigation/HomeNavigator.js
FSPinho/soft-wallpaper
b5b10a6dc9925ead2313e041033b41c1f93b7a2c
[ "Apache-2.0" ]
null
null
null
src/navigation/HomeNavigator.js
FSPinho/soft-wallpaper
b5b10a6dc9925ead2313e041033b41c1f93b7a2c
[ "Apache-2.0" ]
null
null
null
src/navigation/HomeNavigator.js
FSPinho/soft-wallpaper
b5b10a6dc9925ead2313e041033b41c1f93b7a2c
[ "Apache-2.0" ]
null
null
null
import React, { Component } from 'react'; import { translate } from 'react-i18next'; import { StackNavigator } from 'react-navigation'; import { WallpaperGenerator } from '../pages'; import { withTheme } from '../theme'; const ROUTES = { WALLPAPER_GENERATOR: 'WALLPAPER-GENERATOR', LOVED: 'LOVED', } class Navigator extends Component { constructor(props) { super(props) const { theme, t } = props // this.Navigator = createMaterialBottomTabNavigator({ // [ROUTES.WALLPAPER_GENERATOR]: StackNavigator({ // [ROUTES.WALLPAPER_GENERATOR]: { screen: WallpaperGenerator, title: t('tab-' + ROUTES.WALLPAPER_GENERATOR.toLowerCase()) }, // }), // [ROUTES.LOVED]: StackNavigator({ // [ROUTES.LOVED]: { screen: Loved, title: t('tab-' + ROUTES.LOVED.toLowerCase()) }, // }), // }, { // lazy: false, // shifting: true, // navigationOptions: ({ navigation }) => { // const { routeName } = navigation.state; // let iconName; // let iconFocusedName; // let tabBarColor; // if (routeName === ROUTES.WALLPAPER_GENERATOR) { // iconFocusedName = 'ios-images' // iconName = 'ios-images-outline' // tabBarColor = theme.palette.Primary['500'].color // } else if (routeName === ROUTES.LOVED) { // iconFocusedName = 'ios-heart' // iconName = 'ios-heart-outline' // tabBarColor = theme.palette.Accent.A200.color // } // return { // tabBarIcon: ({ focused, tintColor }) => <Icon size={23} name={focused ? iconFocusedName : iconName} color={tintColor} />, // tabBarLabel: t('tab-' + routeName.toLowerCase()), // tabBarColor // } // } // }) this.Navigator = StackNavigator({ [ROUTES.WALLPAPER_GENERATOR]: { screen: WallpaperGenerator, title: t('tab-' + ROUTES.WALLPAPER_GENERATOR.toLowerCase()) }, }) } render() { return <this.Navigator /> } } const Wrapper = translate('common')(withTheme({}, Navigator)) Wrapper.ROUTES = ROUTES export default Wrapper
37
148
0.508269
73c87ffe04d90521eaf8ed60445f76399199002c
42
js
JavaScript
node_modules/react-native-design-utility/lib/module/types/LetterSpacing.js
Asante-Adarkwa-Usman/FriendsBuiltBot
2fbf9f16875dbfd2987d0177895c2f80649dd659
[ "MIT" ]
null
null
null
node_modules/react-native-design-utility/lib/module/types/LetterSpacing.js
Asante-Adarkwa-Usman/FriendsBuiltBot
2fbf9f16875dbfd2987d0177895c2f80649dd659
[ "MIT" ]
null
null
null
node_modules/react-native-design-utility/lib/module/types/LetterSpacing.js
Asante-Adarkwa-Usman/FriendsBuiltBot
2fbf9f16875dbfd2987d0177895c2f80649dd659
[ "MIT" ]
null
null
null
//# sourceMappingURL=LetterSpacing.js.map
21
41
0.809524
73c896f79e9f89ab8d46e6c225ff2238cb9baf26
2,765
js
JavaScript
src/components/process/step/StepView.js
owlvey/owlvey_ui
b6d586422729ccac548c1e7f15273b4eb4009e84
[ "Apache-2.0" ]
null
null
null
src/components/process/step/StepView.js
owlvey/owlvey_ui
b6d586422729ccac548c1e7f15273b4eb4009e84
[ "Apache-2.0" ]
2
2019-06-22T04:56:56.000Z
2019-06-23T02:34:22.000Z
src/components/process/step/StepView.js
owlvey/owlvey_ui
b6d586422729ccac548c1e7f15273b4eb4009e84
[ "Apache-2.0" ]
null
null
null
import React from "react"; import Page from "shared/Page"; import { Link } from 'react-router'; import IconWidget from "shared/IconWidget"; import { FaWeibo } from "react-icons/fa"; import { VerticalTimeline, VerticalTimelineElement, } from "react-vertical-timeline-component"; import "react-vertical-timeline-component/style.min.css"; import { MdInsertChart, MdBubbleChart, MdPieChart, MdShowChart, MdPersonPin, MdRateReview, MdThumbUp, MdThumbDown, MdShare, } from "react-icons/md"; import { setPriority } from "os"; class StepView extends React.Component { handleOnclick(step) { this.props.history.push('/process/' + step.stepId + "/case"); } render() { const { steps, parentVersionId, parentfeatureId, history } = this.props; return ( <Page className="ProcessStepPage position-relative" title="Step" breadcrumbs={[ { name: "Version", active: false, goTo: "/process/version" }, { name: "Feature", active: false, goTo: `/process/${parentVersionId}/feature`, }, { name: "Scenario", active: false, goTo: `/process/${parentfeatureId}/scenario`, }, { name: "Step", active: true }, ]} > <div className="row"> <VerticalTimeline layout='1-column'> {steps.map((step, index) => ( <VerticalTimelineElement animate={false} className="vertical-timeline-element--work" visibilitySensorProps={{ partialVisibility: true, active: true }} // date="2011 - present" iconStyle={{ background: "rgb(33, 150, 243)", color: "#fff" }} icon={<FaWeibo />} key={index} iconOnClick={() => { history.push(`/process/${step.stepId}/case`); }} iconStyle={{ cursor: "pointer", background: "rgb(33, 150, 243)", color: "rgb(255, 255, 255)", }}> <h4> {step.stepNumber + " " + step.name} </h4> <div style={{ color: step.difference === 0 ? "green" : "red" }}> <MdThumbUp size={32} /> </div> <p>{"Difference: " + String(step.difference)}</p> <p> <button className="btn btn-link active" onClick={() => this.handleOnclick(step)}> Details </button> </p> </VerticalTimelineElement> ))} </VerticalTimeline> </div> </Page> ); } } export default StepView;
30.384615
81
0.509222
73cac6352a39df3fa631af17725bf8cc550d0150
243
js
JavaScript
src/components/Footer.js
branmar97/plant-db
cbf460567d0c1e931fa2bc5001f5384b44b0b058
[ "MIT" ]
null
null
null
src/components/Footer.js
branmar97/plant-db
cbf460567d0c1e931fa2bc5001f5384b44b0b058
[ "MIT" ]
null
null
null
src/components/Footer.js
branmar97/plant-db
cbf460567d0c1e931fa2bc5001f5384b44b0b058
[ "MIT" ]
null
null
null
import React from 'react'; const Footer = () => { return ( <div> <span>Plant DB &#169; 2021 - Plant data provided by <a href='https://trefle.io/'>Trefle API</a></span> </div> ); } export default Footer;
22.090909
114
0.539095
73cb1e81fa382a538f25d29a506ae6197df1d11d
1,102
js
JavaScript
resources/static/js/im.js
LunarCoffee/Blazelight
3f0a227fe8d48cbeece5d677e8e36974d00e4e9c
[ "MIT" ]
1
2019-11-05T18:48:28.000Z
2019-11-05T18:48:28.000Z
resources/static/js/im.js
LunarCoffee/Blazelight
3f0a227fe8d48cbeece5d677e8e36974d00e4e9c
[ "MIT" ]
null
null
null
resources/static/js/im.js
LunarCoffee/Blazelight
3f0a227fe8d48cbeece5d677e8e36974d00e4e9c
[ "MIT" ]
null
null
null
var socket = new WebSocket("ws" + window.location.href.slice(4) + "/ws"); var loadingMessage = document.getElementsByClassName("im-loading")[0]; var messageBox = document.getElementsByClassName("im-box")[0]; var messageList = document.getElementsByClassName("im-list")[0]; var inputForm = document.getElementsByClassName("im-input")[0]; socket.addEventListener("open", function () { inputForm.addEventListener("submit", function (e) { e.preventDefault(); socket.send(inputForm.children[0].value); inputForm.children[0].value = ""; return true; }); }); socket.addEventListener("message", function (e) { if (e.data === "init") { loadingMessage.style.display = "none"; return; } var listItem = document.createElement("li"); listItem.className = e.data[0] === "a" ? "im-sent-message" : "im-received-message"; listItem.appendChild(document.createTextNode(e.data.substr(1))); messageList.appendChild(listItem); scrollMessages(); }); function scrollMessages() { messageBox.scrollBy(0, messageBox.scrollHeight); }
30.611111
87
0.675136
73cdebaaff42f492f606a6cc46769c9092fd7191
2,022
js
JavaScript
node_modules/antd/lib/progress/Line.js
lsabella/baishu-admin
4fa931a52ec7c6990daf1cec7aeea690bb3aa68a
[ "MIT" ]
null
null
null
node_modules/antd/lib/progress/Line.js
lsabella/baishu-admin
4fa931a52ec7c6990daf1cec7aeea690bb3aa68a
[ "MIT" ]
null
null
null
node_modules/antd/lib/progress/Line.js
lsabella/baishu-admin
4fa931a52ec7c6990daf1cec7aeea690bb3aa68a
[ "MIT" ]
null
null
null
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var React = _interopRequireWildcard(require("react")); var _utils = require("./utils"); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj["default"] = obj; return newObj; } } var Line = function Line(props) { var prefixCls = props.prefixCls, percent = props.percent, successPercent = props.successPercent, strokeWidth = props.strokeWidth, size = props.size, strokeColor = props.strokeColor, strokeLinecap = props.strokeLinecap, children = props.children; var percentStyle = { width: "".concat((0, _utils.validProgress)(percent), "%"), height: strokeWidth || (size === 'small' ? 6 : 8), background: strokeColor, borderRadius: strokeLinecap === 'square' ? 0 : '100px' }; var successPercentStyle = { width: "".concat((0, _utils.validProgress)(successPercent), "%"), height: strokeWidth || (size === 'small' ? 6 : 8), borderRadius: strokeLinecap === 'square' ? 0 : '100px' }; var successSegment = successPercent !== undefined ? React.createElement("div", { className: "".concat(prefixCls, "-success-bg"), style: successPercentStyle }) : null; return React.createElement("div", null, React.createElement("div", { className: "".concat(prefixCls, "-outer") }, React.createElement("div", { className: "".concat(prefixCls, "-inner") }, React.createElement("div", { className: "".concat(prefixCls, "-bg"), style: percentStyle }), successSegment)), children); }; var _default = Line; exports["default"] = _default;
41.265306
475
0.659248
73d00262b9c4efcb1939a9aa3aa6ff3e1777c670
120
js
JavaScript
html/search/typedefs_70.js
mive93/AngryTom
4fe67f48fbea2053c26bf51fdb62026e4bde73bc
[ "Apache-2.0" ]
null
null
null
html/search/typedefs_70.js
mive93/AngryTom
4fe67f48fbea2053c26bf51fdb62026e4bde73bc
[ "Apache-2.0" ]
null
null
null
html/search/typedefs_70.js
mive93/AngryTom
4fe67f48fbea2053c26bf51fdb62026e4bde73bc
[ "Apache-2.0" ]
null
null
null
var searchData= [ ['punteggi',['Punteggi',['../objects_8h.html#ad9c01679d3fd1e264a7bf6c37fd24294',1,'objects.h']]] ];
24
98
0.708333
73d29d522406fc998ee861f957e0f1c4c08ee10e
2,020
js
JavaScript
commands/welcome/set-config.js
sarthakjdev/rejoice-bot
06b301a2b05bd28cae4e3539e6a6d1b562b98ee7
[ "MIT" ]
2
2022-01-13T10:48:51.000Z
2022-01-14T17:29:28.000Z
commands/welcome/set-config.js
sarthakjdev/rejoice-bot
06b301a2b05bd28cae4e3539e6a6d1b562b98ee7
[ "MIT" ]
null
null
null
commands/welcome/set-config.js
sarthakjdev/rejoice-bot
06b301a2b05bd28cae4e3539e6a6d1b562b98ee7
[ "MIT" ]
3
2022-01-12T07:21:30.000Z
2022-03-12T12:21:45.000Z
const Components = require('../../struct/components') // Setting up channel to send the welcome messages when a user joins a guild: async function setChannel(interaction, client, guild, dbGuild) { const channelToSet = await interaction.options.get('channel').value const dbWelcomeChannel = dbGuild.welcomeChannel if (!dbWelcomeChannel) { const embed = Components.errorEmbed('Set up your welcome service first, only then yuo can use this command to change or update the welcome channel. \n Thanks!') return interaction.editReply({ embeds: [embed] }) } if (channelToSet === dbWelcomeChannel) { // if new channel matches with the old one => same channel can't operate the query const embed = Components.errorEmbed(`You have already configured <#${dbWelcomeChannel}> as your welcome channel! `) return interaction.editReply({ embeds: [embed] }) } await client.factory.setWelcomeService(guild.id, channelToSet, dbGuild.welcomeTimeGap) const welcomeChannel = await guild.channels.fetch(channelToSet) await welcomeChannel.send('hello , this channel has been set up as your welcome channel') const embed = Components.successEmbed('Successfully updated the welcome service.') return interaction.editReply(embed) } // setting up time in the db for welcome message being teamporrary async function setTime(interaction, client, guild, dbGuild) { const dbTimeSpan = dbGuild.welcomeTimeGap const timeToSet = await interaction.options.get('time').value if (dbTimeSpan === timeToSet) { const embed = Components.errorEmbed(`Time for disappearing of welcome message is already been set up at ${dbTimeSpan} seconds! `) return interaction.editReply({ embeds: [embed] }) } await client.factory.setWelcomeService(guild.id, dbGuild.welcomeChannel, timeToSet) const embed = Components.successEmbed('Successfully updated the time!') return interaction.editReply(embed) } module.exports = { setChannel, setTime }
44.888889
169
0.734653
73d3ce27974c937f61d8030415eca706a4d6eb9a
241
js
JavaScript
client/src/utils/constants.js
tasola/chat-app
3a8d55dd77d29da93e64a8c2dd733b7a01792efe
[ "Apache-2.0" ]
null
null
null
client/src/utils/constants.js
tasola/chat-app
3a8d55dd77d29da93e64a8c2dd733b7a01792efe
[ "Apache-2.0" ]
null
null
null
client/src/utils/constants.js
tasola/chat-app
3a8d55dd77d29da93e64a8c2dd733b7a01792efe
[ "Apache-2.0" ]
null
null
null
export const apiPort = process.env.REACT_APP_API_PORT || 8000 // hostUrl should of course be switched to the URL of the host service once deployed export const apiUrl = process.env.NODE_ENV === 'prod' ? 'hostUrl' : `localhost:${apiPort}`
40.166667
84
0.742739
73d44c104ea38937f0ce971a1692a10c8fedd180
2,503
js
JavaScript
1. Instalasi dan Pengenalan/demo/routes/index.js
danigunawan/NODEJS-Membuat-Aplikasi-Web-dengan-Express.js
b4ec1630e035704ff56290229240c3d5062df068
[ "MIT" ]
null
null
null
1. Instalasi dan Pengenalan/demo/routes/index.js
danigunawan/NODEJS-Membuat-Aplikasi-Web-dengan-Express.js
b4ec1630e035704ff56290229240c3d5062df068
[ "MIT" ]
null
null
null
1. Instalasi dan Pengenalan/demo/routes/index.js
danigunawan/NODEJS-Membuat-Aplikasi-Web-dengan-Express.js
b4ec1630e035704ff56290229240c3d5062df068
[ "MIT" ]
null
null
null
var express = require('express'); var router = express.Router(); /* GET home page. */ router.get('/', function(req, res, next) { res.render('index', { title: 'Express' }); }); /* DEMO 1 - render template */ router.get('/demo1', function(req, res, next) { res.render( 'demo1', { message: 'Lorem ipsum sit dolor amet', user: {name:'suyono', email:'suyono@example.com', website: 'http://www.suyono.com'} } ); }); /* DEMO 2 - parameter di URL */ router.get('/demo2/(:id)/(:category)', function (req, res, next){ res.render('demo2', { id: req.params.id, category: req.params.category, } ); }); /* DEMO 3 - menampilkan respon JSON */ router.get('/demo3', function(req, res, next) { res.json({ message: 'Lorem ipsum sit dolor amet', user: {name:'suyono', email:'suyono@example.com', website: 'http://www.suyono.com'} }); }); /* DEMO 4 - menerima request method POST dari form */ router.get('/demo4/', function (req, res, next){ res.render('demo4'); }); router.post('/demo4/', function (req, res, next){ res.json( { message: "request POST is executed", data: { username: req.param('username'), email: req.param('email'), website: req.param('website'), phone: req.param('phone'), } } ); }); /* DEMO 5 - menerima request method PUT PAKAI POSTMAN*/ router.put('/demo5/', function (req, res, next){ res.json( { message: "request PUT is executed", data: { username: req.param('username'), email: req.param('email'), website: req.param('website'), phone: req.param('phone'), } } ); }); /* DEMO 6 - menerima request method DELETE PAKAI POSTMAN*/ router.delete('/demo6/', function (req, res, next){ res.json( { message: "request DELETE is executed" } ); }); /* DEMO 7 - redirect url */ router.get('/demo7', function (req, res, next){ res.redirect('/demo7_result'); }); router.get('/demo7_result', function (req, res, next){ res.render('demo7'); }); module.exports = router;
26.072917
104
0.486217
73d46a9d4d6432f591a9eca8cd0db903174c920c
964
js
JavaScript
test/fixture.js
wormslab/pinpoint-node-agent-1
ba1c0b374c963a6cfd7dfaf9840e0f36ee43e9f8
[ "Apache-2.0" ]
40
2020-10-21T07:24:21.000Z
2022-01-25T15:37:12.000Z
test/fixture.js
wormslab/pinpoint-node-agent-1
ba1c0b374c963a6cfd7dfaf9840e0f36ee43e9f8
[ "Apache-2.0" ]
64
2020-10-23T09:42:39.000Z
2022-03-22T10:36:17.000Z
test/fixture.js
wormslab/pinpoint-node-agent-1
ba1c0b374c963a6cfd7dfaf9840e0f36ee43e9f8
[ "Apache-2.0" ]
11
2020-10-21T06:49:03.000Z
2021-09-29T00:40:45.000Z
/** * Pinpoint Node.js Agent * Copyright 2020-present NAVER Corp. * Apache License v2.0 */ const TransactionId = require('../lib/context/transaction-id') const TraceId = require('../lib/context/trace-id') const IdGenerator = require('../lib/context/id-generator') const testConfig= require('./pinpoint-config-test') const config = require('../lib/config').getConfig(testConfig) const getTransactionId = () => { const agentId = config.agentId const agentStartTime = Date.now() return new TransactionId(agentId, agentStartTime.toString(), "99") } const getTraceId = (transactionId) => { const spanId = IdGenerator.next return new TraceId(transactionId || getTransactionId(), spanId.toString()) } const getAgentInfo = () => ({ agentId: config.agentId, applicationName: config.applicationName, serviceType : config.serviceType, agentStartTime: Date.now(), }) module.exports = { config, getTransactionId, getTraceId, getAgentInfo, }
25.368421
76
0.720954
73d474b6282b15106ca7a1c55b64b784c712d73c
213
js
JavaScript
src/supply.js
Quansight/graphql-schema-org
94b869e6a159dc0fc25102224f937f10bcac0326
[ "BSD-3-Clause" ]
23
2018-04-01T16:31:15.000Z
2021-05-21T10:55:25.000Z
src/supply.js
Quansight/graphql-schema-org
94b869e6a159dc0fc25102224f937f10bcac0326
[ "BSD-3-Clause" ]
10
2017-09-04T13:46:59.000Z
2021-01-30T16:20:50.000Z
src/supply.js
cape-io/graphql-schema-org
83ab00e7fa45a08a4f72065658bb9b82f9788f5f
[ "BSD-3-Clause" ]
7
2017-12-12T11:46:52.000Z
2020-06-13T21:08:55.000Z
import datatypes from './datatype' export default { type: datatypes['String'], description: 'A sub-property of instrument. A supply consumed when performing instructions or a direction.', name: 'Supply', }
26.625
110
0.737089
73d492fa2dbd43bb9ee95a00008fb04b384795d2
2,467
js
JavaScript
dist/backbone-azure-mobile-services.js
MSOpenTech/backbone-azure-mobile-services
a6ee36a3e084829f356a61e56f3169b2f75f8ef7
[ "Apache-2.0" ]
2
2015-01-30T21:16:12.000Z
2015-05-14T23:35:23.000Z
dist/backbone-azure-mobile-services.js
microsoftarchive/backbone-azure-mobile-services
a6ee36a3e084829f356a61e56f3169b2f75f8ef7
[ "Apache-2.0" ]
1
2015-10-07T21:58:19.000Z
2015-10-07T21:58:19.000Z
dist/backbone-azure-mobile-services.js
MSOpenTech/backbone-azure-mobile-services
a6ee36a3e084829f356a61e56f3169b2f75f8ef7
[ "Apache-2.0" ]
4
2015-03-25T14:31:39.000Z
2016-10-16T04:29:03.000Z
/*! backbone-azure-mobile-services v0.0.1 built 2013-05-28 */ /* Copyright © Microsoft Open Technologies, Inc. All Rights Reserved Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY OR NON-INFRINGEMENT. See the Apache 2.0 License for the specific language governing permissions and limitations under the License. */ (function() { Backbone.ajaxSync = Backbone.sync, Backbone.sync = function(a, b, c, d) { function e(a) { return b[a] || b.collection && b.collection[a]; } var f = e("table"); if (!f) return Backbone.ajaxSync(a, b, c, d); var g = e("client"); if (!g) throw "A WindowsAzure.MobileServiceClient needs to be specified for the model or collection"; var h = g.getTable(f); switch (a) { case "create": h.insert(b.toJSON()).then(function(a) { b.id = a.id, c.success(a); }, function(a) { console.error(a), c.error(a); }); break; case "update": h.update(b.toJSON()).then(function(a) { c.success(a); }, function(a) { console.error(a), c.error(a); }); break; case "delete": h.del(b.toJSON()).then(function() { c.success(b.toJSON()); }, function(a) { console.error(a), c.error(a); }); break; case "read": b.id && (c.where = { id: b.id }, c.take = 1); var i = h; "undefined" != typeof c.skip && (i = i.skip(c.skip)), "undefined" != typeof c.take && (i = i.take(c.take)), "undefined" != typeof c.where && (i = _.isArray(c.where) && "function" == typeof c.where[0] ? i.where.apply(i, c.where) : i.where(c.where)), i.read().then(function(a) { b.id ? c.success(a[0]) : c.success(a); }, function(a) { console.error(a), c.error(a); }); } }; })();
42.534483
258
0.534252
73d57741da4dbef3389f65c82eed98637fb1e284
620
js
JavaScript
Remove Empty Items of Array.js
Automedon/CodeWars-7-kata
cd36baee0a4a4f03444a608174526e56e44230cc
[ "MIT" ]
180
2018-09-28T06:18:41.000Z
2022-03-30T01:13:22.000Z
Remove Empty Items of Array.js
Automedon/CodeWars-7-kata
cd36baee0a4a4f03444a608174526e56e44230cc
[ "MIT" ]
1
2022-01-09T23:53:50.000Z
2022-01-11T13:08:39.000Z
Remove Empty Items of Array.js
Automedon/CodeWars-7-kata
cd36baee0a4a4f03444a608174526e56e44230cc
[ "MIT" ]
103
2019-02-21T19:22:54.000Z
2022-03-29T03:15:18.000Z
/* Description: In this Kata, you will learn how to remove all empty items in an Array. In JavaScript, empty items in arrays can be declared by [1, 2,,,3, 4] (Multiple commas without a value in that index) The values that are not given a value are empty items, and usually add up with others to form <# empty items>; In the example, <2 empty items> [1, 2, <2 empty items>, 3, 4] should be cleared such that it should be [1, 2, 3, 4] Example: Before: [1, 2, 3, <5 empty items>, 4, <1 empty item>, null, undefined]; After: [1, 2, 3, 4, null, undefined]; */ function clean(arr) { return arr.filter(v=>v!==true) }
31
142
0.680645
73d62d5807e36201c04fe68e656e1d72e7e1ee27
117,343
js
JavaScript
dist/script.js
alvintansz/IS425
56ae435cbadd9c4fe944961f58b1cc99aa2f448f
[ "MIT" ]
null
null
null
dist/script.js
alvintansz/IS425
56ae435cbadd9c4fe944961f58b1cc99aa2f448f
[ "MIT" ]
null
null
null
dist/script.js
alvintansz/IS425
56ae435cbadd9c4fe944961f58b1cc99aa2f448f
[ "MIT" ]
null
null
null
(function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define([], factory); else if(typeof exports === 'object') exports["CodePenVueComponent"] = factory(); else root["CodePenVueComponent"] = factory(); })((typeof self !== 'undefined' ? self : this), function() { return /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // create a fake namespace object /******/ // mode & 1: value is a module id, require it /******/ // mode & 2: merge all properties of value into the ns /******/ // mode & 4: return value when already ns object /******/ // mode & 8|1: behave like require /******/ __webpack_require__.t = function(value, mode) { /******/ if(mode & 1) value = __webpack_require__(value); /******/ if(mode & 8) return value; /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; /******/ var ns = Object.create(null); /******/ __webpack_require__.r(ns); /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); /******/ return ns; /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = "../../tmp/codepen/vuejs/src/pen.vue"); /******/ }) /************************************************************************/ /******/ ({ /***/ "../../tmp/codepen/vuejs/src/pen.vue": /*!**************************************!*\ !*** /tmp/codepen/vuejs/src/pen.vue ***! \**************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _pen_vue_vue_type_template_id_0755aed5_lang_pug___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./pen.vue?vue&type=template&id=0755aed5&lang=pug& */ \"../../tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug&\");\n/* harmony import */ var _pen_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./pen.vue?vue&type=script&lang=js& */ \"../../tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./pen.vue?vue&type=style&index=0&lang=scss& */ \"../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&\");\n/* harmony import */ var _var_task_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../var/task/node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_var_task_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _pen_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _pen_vue_vue_type_template_id_0755aed5_lang_pug___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _pen_vue_vue_type_template_id_0755aed5_lang_pug___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (false) { var api; }\ncomponent.options.__file = \"tmp/codepen/vuejs/src/pen.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi4vLi4vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWUuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9Db2RlUGVuVnVlQ29tcG9uZW50Ly90bXAvY29kZXBlbi92dWVqcy9zcmMvcGVuLnZ1ZT81MDBiIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IHJlbmRlciwgc3RhdGljUmVuZGVyRm5zIH0gZnJvbSBcIi4vcGVuLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD0wNzU1YWVkNSZsYW5nPXB1ZyZcIlxuaW1wb3J0IHNjcmlwdCBmcm9tIFwiLi9wZW4udnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJlwiXG5leHBvcnQgKiBmcm9tIFwiLi9wZW4udnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJlwiXG5pbXBvcnQgc3R5bGUwIGZyb20gXCIuL3Blbi52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZsYW5nPXNjc3MmXCJcblxuXG4vKiBub3JtYWxpemUgY29tcG9uZW50ICovXG5pbXBvcnQgbm9ybWFsaXplciBmcm9tIFwiIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9ydW50aW1lL2NvbXBvbmVudE5vcm1hbGl6ZXIuanNcIlxudmFyIGNvbXBvbmVudCA9IG5vcm1hbGl6ZXIoXG4gIHNjcmlwdCxcbiAgcmVuZGVyLFxuICBzdGF0aWNSZW5kZXJGbnMsXG4gIGZhbHNlLFxuICBudWxsLFxuICBudWxsLFxuICBudWxsXG4gIFxuKVxuXG4vKiBob3QgcmVsb2FkICovXG5pZiAobW9kdWxlLmhvdCkge1xuICB2YXIgYXBpID0gcmVxdWlyZShcIi92YXIvdGFzay9ub2RlX21vZHVsZXMvdnVlLWhvdC1yZWxvYWQtYXBpL2Rpc3QvaW5kZXguanNcIilcbiAgYXBpLmluc3RhbGwocmVxdWlyZSgndnVlJykpXG4gIGlmIChhcGkuY29tcGF0aWJsZSkge1xuICAgIG1vZHVsZS5ob3QuYWNjZXB0KClcbiAgICBpZiAoIWFwaS5pc1JlY29yZGVkKCcwNzU1YWVkNScpKSB7XG4gICAgICBhcGkuY3JlYXRlUmVjb3JkKCcwNzU1YWVkNScsIGNvbXBvbmVudC5vcHRpb25zKVxuICAgIH0gZWxzZSB7XG4gICAgICBhcGkucmVsb2FkKCcwNzU1YWVkNScsIGNvbXBvbmVudC5vcHRpb25zKVxuICAgIH1cbiAgICBtb2R1bGUuaG90LmFjY2VwdChcIi4vcGVuLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD0wNzU1YWVkNSZsYW5nPXB1ZyZcIiwgZnVuY3Rpb24gKCkge1xuICAgICAgYXBpLnJlcmVuZGVyKCcwNzU1YWVkNScsIHtcbiAgICAgICAgcmVuZGVyOiByZW5kZXIsXG4gICAgICAgIHN0YXRpY1JlbmRlckZuczogc3RhdGljUmVuZGVyRm5zXG4gICAgICB9KVxuICAgIH0pXG4gIH1cbn1cbmNvbXBvbmVudC5vcHRpb25zLl9fZmlsZSA9IFwidG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWVcIlxuZXhwb3J0IGRlZmF1bHQgY29tcG9uZW50LmV4cG9ydHMiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsdUJBaUJBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///../../tmp/codepen/vuejs/src/pen.vue\n"); /***/ }), /***/ "../../tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js&": /*!***************************************************************!*\ !*** /tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js& ***! \***************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../var/task/node_modules/vue-loader/lib??vue-loader-options!./pen.vue?vue&type=script&lang=js& */ \"./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi4vLi4vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/ZDcyOCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgbW9kIGZyb20gXCItIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vcGVuLnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIjsgZXhwb3J0IGRlZmF1bHQgbW9kOyBleHBvcnQgKiBmcm9tIFwiLSEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL3Blbi52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCIiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///../../tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js&\n"); /***/ }), /***/ "../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&": /*!************************************************************************!*\ !*** /tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss& ***! \************************************************************************/ /*! no static exports found */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _var_task_node_modules_vue_style_loader_index_js_var_task_node_modules_css_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_loaders_stylePostLoader_js_var_task_node_modules_sass_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../var/task/node_modules/vue-style-loader!../../../../var/task/node_modules/css-loader/dist/cjs.js!../../../../var/task/node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../var/task/node_modules/sass-loader/dist/cjs.js!../../../../var/task/node_modules/vue-loader/lib??vue-loader-options!./pen.vue?vue&type=style&index=0&lang=scss& */ \"./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&\");\n/* harmony import */ var _var_task_node_modules_vue_style_loader_index_js_var_task_node_modules_css_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_loaders_stylePostLoader_js_var_task_node_modules_sass_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_var_task_node_modules_vue_style_loader_index_js_var_task_node_modules_css_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_loaders_stylePostLoader_js_var_task_node_modules_sass_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _var_task_node_modules_vue_style_loader_index_js_var_task_node_modules_css_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_loaders_stylePostLoader_js_var_task_node_modules_sass_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _var_task_node_modules_vue_style_loader_index_js_var_task_node_modules_css_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_loaders_stylePostLoader_js_var_task_node_modules_sass_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n /* harmony default export */ __webpack_exports__[\"default\"] = (_var_task_node_modules_vue_style_loader_index_js_var_task_node_modules_css_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_loaders_stylePostLoader_js_var_task_node_modules_sass_loader_dist_cjs_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0___default.a); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi4vLi4vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZsYW5nPXNjc3MmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/NTlhNSJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgbW9kIGZyb20gXCItIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2luZGV4LmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvc2Fzcy1sb2FkZXIvZGlzdC9janMuanMhLi4vLi4vLi4vLi4vdmFyL3Rhc2svbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9wZW4udnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmbGFuZz1zY3NzJlwiOyBleHBvcnQgZGVmYXVsdCBtb2Q7IGV4cG9ydCAqIGZyb20gXCItIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2luZGV4LmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvc2Fzcy1sb2FkZXIvZGlzdC9janMuanMhLi4vLi4vLi4vLi4vdmFyL3Rhc2svbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9wZW4udnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmbGFuZz1zY3NzJlwiIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&\n"); /***/ }), /***/ "../../tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug&": /*!******************************************************************************!*\ !*** /tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug& ***! \******************************************************************************/ /*! exports provided: render, staticRenderFns */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _var_task_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_var_task_node_modules_pug_plain_loader_index_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_template_id_0755aed5_lang_pug___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../var/task/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../var/task/node_modules/pug-plain-loader!../../../../var/task/node_modules/vue-loader/lib??vue-loader-options!./pen.vue?vue&type=template&id=0755aed5&lang=pug& */ \"./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/pug-plain-loader/index.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _var_task_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_var_task_node_modules_pug_plain_loader_index_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_template_id_0755aed5_lang_pug___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _var_task_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_var_task_node_modules_pug_plain_loader_index_js_var_task_node_modules_vue_loader_lib_index_js_vue_loader_options_pen_vue_vue_type_template_id_0755aed5_lang_pug___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi4vLi4vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/dnVlJnR5cGU9dGVtcGxhdGUmaWQ9MDc1NWFlZDUmbGFuZz1wdWcmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/MGIxZCJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLSEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy90ZW1wbGF0ZUxvYWRlci5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy9wdWctcGxhaW4tbG9hZGVyL2luZGV4LmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vcGVuLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD0wNzU1YWVkNSZsYW5nPXB1ZyZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///../../tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug&\n"); /***/ }), /***/ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&": /*!****************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!/tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss& ***! \****************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// Imports\nvar ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../var/task/node_modules/css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.i, \"body {\\n font-family: \\\"Rubik\\\", sans-serif;\\n color: #303841;\\n}\\n.wrapper {\\n height: 100vh;\\n display: flex;\\n align-items: center;\\n justify-content: space-between;\\n position: relative;\\n flex-wrap: wrap;\\n padding: 40px 20px;\\n max-width: 720px;\\n margin: 0 auto;\\n}\\n.wrapper::before {\\n content: \\\"\\\";\\n display: block;\\n position: fixed;\\n width: 300%;\\n height: 100%;\\n top: 50%;\\n left: 50%;\\n border-radius: 100%;\\n transform: translateX(-50%) skewY(-8deg);\\n background-color: #f6c90e;\\n z-index: -1;\\n animation: wave 8s ease-in-out infinite alternate;\\n}\\n@keyframes wave {\\n0% {\\n transform: translateX(-50%) skew(0deg, -8deg);\\n}\\n100% {\\n transform: translateX(-30%) skew(8deg, -4deg);\\n}\\n}\\n.screen {\\n background-color: #fff;\\n box-sizing: border-box;\\n width: 340px;\\n height: 600px;\\n box-shadow: 0 3.2px 2.2px rgba(0, 0, 0, 0.02), 0 7px 5.4px rgba(0, 0, 0, 0.028), 0 12.1px 10.1px rgba(0, 0, 0, 0.035), 0 19.8px 18.1px rgba(0, 0, 0, 0.042), 0 34.7px 33.8px rgba(0, 0, 0, 0.05), 0 81px 81px rgba(0, 0, 0, 0.07);\\n border-radius: 30px;\\n overflow-y: scroll;\\n padding: 0 28px;\\n position: relative;\\n margin-bottom: 20px;\\n}\\n.screen::before {\\n content: \\\"\\\";\\n display: block;\\n position: absolute;\\n width: 300px;\\n height: 300px;\\n border-radius: 100%;\\n background-color: #f6c90e;\\n top: -20%;\\n left: -50%;\\n z-index: 0;\\n}\\n.screen::-webkit-scrollbar {\\n display: none;\\n}\\n.screen > .title {\\n font-size: 24px;\\n font-weight: bold;\\n margin: 20px 0;\\n position: relative;\\n}\\n.app-bar {\\n padding: 12px 0;\\n position: relative;\\n}\\n.app-bar > .logo {\\n display: block;\\n width: 50px;\\n}\\n.shop-items {\\n position: relative;\\n}\\n.item-block {\\n padding: 40px 0 70px;\\n}\\n.item-block:first-child {\\n padding-top: 0;\\n}\\n.item-block > .image-area {\\n border-radius: 30px;\\n height: 380px;\\n display: flex;\\n align-items: center;\\n overflow: hidden;\\n}\\n.item-block > .image-area > .image {\\n display: block;\\n width: 100%;\\n filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.2));\\n transform: rotate(-24deg);\\n margin-left: -16px;\\n}\\n.item-block > .name {\\n font-size: 20px;\\n font-weight: bold;\\n margin: 26px 0 20px;\\n line-height: 1.5;\\n}\\n.item-block > .description {\\n font-size: 13px;\\n color: #777;\\n line-height: 1.8;\\n margin-bottom: 20px;\\n}\\n.item-block > .bottom-area {\\n display: flex;\\n justify-content: space-between;\\n align-items: center;\\n}\\n.item-block > .bottom-area > .price {\\n font-size: 18px;\\n font-weight: bold;\\n}\\n.item-block > .bottom-area > .button {\\n cursor: pointer;\\n background-color: #f6c90e;\\n font-weight: bold;\\n font-size: 14px;\\n box-sizing: border-box;\\n height: 46px;\\n padding: 16px 20px;\\n border-radius: 100px;\\n box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);\\n transition: box-shadow 0.4s, background-color 0.2s;\\n user-select: none;\\n white-space: nowrap;\\n position: relative;\\n display: flex;\\n align-items: center;\\n overflow: hidden;\\n}\\n.item-block > .bottom-area > .button:hover {\\n background-color: #f8d43f;\\n box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);\\n}\\n.item-block > .bottom-area > .button.-active {\\n pointer-events: none;\\n cursor: default;\\n}\\n.item-block > .bottom-area > .button > .cover {\\n width: 16px;\\n height: 16px;\\n position: absolute;\\n display: flex;\\n justify-content: center;\\n align-items: center;\\n}\\n.item-block > .bottom-area > .button > .cover > .check {\\n width: 100%;\\n height: 100%;\\n transform: translate(-100%, -73%) rotate(-45deg);\\n position: absolute;\\n left: 50%;\\n top: 50%;\\n}\\n.item-block > .bottom-area > .button > .cover > .check::before, .item-block > .bottom-area > .button > .cover > .check::after {\\n content: \\\"\\\";\\n display: block;\\n background-color: #303841;\\n position: absolute;\\n left: 0;\\n bottom: 0;\\n border-radius: 10px;\\n}\\n.item-block > .bottom-area > .button > .cover > .check::before {\\n width: 3px;\\n height: 50%;\\n}\\n.item-block > .bottom-area > .button > .cover > .check::after {\\n width: 100%;\\n height: 3px;\\n}\\n.cart-items {\\n position: relative;\\n}\\n.no-content {\\n position: relative;\\n}\\n.no-content > .text {\\n font-size: 14px;\\n}\\n.cart-item {\\n display: flex;\\n padding: 20px 0;\\n}\\n.cart-item > .right > .name {\\n font-size: 14px;\\n font-weight: bold;\\n line-height: 1.5;\\n margin-bottom: 10px;\\n}\\n.cart-item > .right > .price {\\n font-size: 20px;\\n font-weight: bold;\\n margin-bottom: 16px;\\n}\\n.cart-item > .right > .count {\\n display: flex;\\n align-items: center;\\n}\\n.cart-item > .right > .count > .number {\\n font-size: 14px;\\n margin: 0 14px;\\n width: 20px;\\n text-align: center;\\n}\\n.cart-item > .right > .count .button {\\n cursor: pointer;\\n width: 28px;\\n height: 28px;\\n border-radius: 100%;\\n background-color: #eee;\\n font-size: 16px;\\n font-weight: bold;\\n display: flex;\\n justify-content: center;\\n align-items: center;\\n transition: 0.2s;\\n user-select: none;\\n}\\n.cart-item > .right > .count .button:hover {\\n background-color: #ddd;\\n}\\n.cart-image {\\n width: 90px;\\n height: 90px;\\n border-radius: 100%;\\n background-color: #eee;\\n margin-right: 34px;\\n}\\n.cart-image > .image-wrapper > .image {\\n display: block;\\n width: 140%;\\n transform: rotate(-28deg) translateY(-40px);\\n filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.2));\\n}\\n.buttonText-leave-active,\\n.buttonText-enter-active {\\n transition: opacity 0.2s, top 0.35s;\\n}\\n.buttonText-leave-to,\\n.buttonText-enter {\\n opacity: 0;\\n}\\n.cartList-enter-active {\\n transition: all 2s;\\n}\\n.cartList-enter-active > .right > .name,\\n .cartList-enter-active > .right > .price {\\n transition: 0.4s;\\n}\\n.cartList-enter-active > .right > .name {\\n transition-delay: 0.7s;\\n}\\n.cartList-enter-active > .right > .price {\\n transition-delay: 0.85s;\\n}\\n.cartList-enter-active > .right > .count {\\n transition: opacity 0.4s;\\n transition-delay: 1s;\\n}\\n.cartList-enter-active .cart-image {\\n transition: 0.5s cubic-bezier(0.79, 0.01, 0.22, 1);\\n}\\n.cartList-enter-active .cart-image > .image-wrapper {\\n transition: 0.5s cubic-bezier(0.79, 0.01, 0.22, 1) 0.1s;\\n}\\n.cartList-enter > .right > .name,\\n.cartList-enter > .right > .price {\\n opacity: 0;\\n transform: translateX(30px);\\n}\\n.cartList-enter > .right .count {\\n opacity: 0;\\n}\\n.cartList-enter .cart-image {\\n transform: scale(0);\\n}\\n.cartList-enter .cart-image > .image-wrapper {\\n transform: scale(0);\\n}\\n.cartList-leave-active {\\n transition: 0.7s cubic-bezier(0.79, 0.01, 0.22, 1);\\n position: absolute;\\n}\\n.cartList-leave-to {\\n transform: scale(0);\\n opacity: 0;\\n}\\n.cartList-move {\\n transition: 0.7s cubic-bezier(0.79, 0.01, 0.22, 1);\\n}\\n.noContent-enter-active, .noContent-leave-active {\\n transition: opacity 0.5s;\\n position: absolute;\\n}\\n.noContent-enter, .noContent-leave-to {\\n opacity: 0;\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9kaXN0L2Nqcy5qcyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuL25vZGVfbW9kdWxlcy9zYXNzLWxvYWRlci9kaXN0L2Nqcy5qcyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi4vLi4vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZsYW5nPXNjc3MmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/MmJjOSJdLCJzb3VyY2VzQ29udGVudCI6WyIvLyBJbXBvcnRzXG52YXIgX19fQ1NTX0xPQURFUl9BUElfSU1QT1JUX19fID0gcmVxdWlyZShcIi4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2Rpc3QvcnVudGltZS9hcGkuanNcIik7XG5leHBvcnRzID0gX19fQ1NTX0xPQURFUl9BUElfSU1QT1JUX19fKGZhbHNlKTtcbi8vIE1vZHVsZVxuZXhwb3J0cy5wdXNoKFttb2R1bGUuaWQsIFwiYm9keSB7XFxuICBmb250LWZhbWlseTogXFxcIlJ1YmlrXFxcIiwgc2Fucy1zZXJpZjtcXG4gIGNvbG9yOiAjMzAzODQxO1xcbn1cXG4ud3JhcHBlciB7XFxuICBoZWlnaHQ6IDEwMHZoO1xcbiAgZGlzcGxheTogZmxleDtcXG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XFxuICBqdXN0aWZ5LWNvbnRlbnQ6IHNwYWNlLWJldHdlZW47XFxuICBwb3NpdGlvbjogcmVsYXRpdmU7XFxuICBmbGV4LXdyYXA6IHdyYXA7XFxuICBwYWRkaW5nOiA0MHB4IDIwcHg7XFxuICBtYXgtd2lkdGg6IDcyMHB4O1xcbiAgbWFyZ2luOiAwIGF1dG87XFxufVxcbi53cmFwcGVyOjpiZWZvcmUge1xcbiAgICBjb250ZW50OiBcXFwiXFxcIjtcXG4gICAgZGlzcGxheTogYmxvY2s7XFxuICAgIHBvc2l0aW9uOiBmaXhlZDtcXG4gICAgd2lkdGg6IDMwMCU7XFxuICAgIGhlaWdodDogMTAwJTtcXG4gICAgdG9wOiA1MCU7XFxuICAgIGxlZnQ6IDUwJTtcXG4gICAgYm9yZGVyLXJhZGl1czogMTAwJTtcXG4gICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKC01MCUpIHNrZXdZKC04ZGVnKTtcXG4gICAgYmFja2dyb3VuZC1jb2xvcjogI2Y2YzkwZTtcXG4gICAgei1pbmRleDogLTE7XFxuICAgIGFuaW1hdGlvbjogd2F2ZSA4cyBlYXNlLWluLW91dCBpbmZpbml0ZSBhbHRlcm5hdGU7XFxufVxcbkBrZXlmcmFtZXMgd2F2ZSB7XFxuMCUge1xcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTUwJSkgc2tldygwZGVnLCAtOGRlZyk7XFxufVxcbjEwMCUge1xcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTMwJSkgc2tldyg4ZGVnLCAtNGRlZyk7XFxufVxcbn1cXG4uc2NyZWVuIHtcXG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XFxuICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xcbiAgd2lkdGg6IDM0MHB4O1xcbiAgaGVpZ2h0OiA2MDBweDtcXG4gIGJveC1zaGFkb3c6IDAgMy4ycHggMi4ycHggcmdiYSgwLCAwLCAwLCAwLjAyKSwgMCA3cHggNS40cHggcmdiYSgwLCAwLCAwLCAwLjAyOCksIDAgMTIuMXB4IDEwLjFweCByZ2JhKDAsIDAsIDAsIDAuMDM1KSwgMCAxOS44cHggMTguMXB4IHJnYmEoMCwgMCwgMCwgMC4wNDIpLCAwIDM0LjdweCAzMy44cHggcmdiYSgwLCAwLCAwLCAwLjA1KSwgMCA4MXB4IDgxcHggcmdiYSgwLCAwLCAwLCAwLjA3KTtcXG4gIGJvcmRlci1yYWRpdXM6IDMwcHg7XFxuICBvdmVyZmxvdy15OiBzY3JvbGw7XFxuICBwYWRkaW5nOiAwIDI4cHg7XFxuICBwb3NpdGlvbjogcmVsYXRpdmU7XFxuICBtYXJnaW4tYm90dG9tOiAyMHB4O1xcbn1cXG4uc2NyZWVuOjpiZWZvcmUge1xcbiAgICBjb250ZW50OiBcXFwiXFxcIjtcXG4gICAgZGlzcGxheTogYmxvY2s7XFxuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcXG4gICAgd2lkdGg6IDMwMHB4O1xcbiAgICBoZWlnaHQ6IDMwMHB4O1xcbiAgICBib3JkZXItcmFkaXVzOiAxMDAlO1xcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjZjOTBlO1xcbiAgICB0b3A6IC0yMCU7XFxuICAgIGxlZnQ6IC01MCU7XFxuICAgIHotaW5kZXg6IDA7XFxufVxcbi5zY3JlZW46Oi13ZWJraXQtc2Nyb2xsYmFyIHtcXG4gICAgZGlzcGxheTogbm9uZTtcXG59XFxuLnNjcmVlbiA+IC50aXRsZSB7XFxuICAgIGZvbnQtc2l6ZTogMjRweDtcXG4gICAgZm9udC13ZWlnaHQ6IGJvbGQ7XFxuICAgIG1hcmdpbjogMjBweCAwO1xcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XFxufVxcbi5hcHAtYmFyIHtcXG4gIHBhZGRpbmc6IDEycHggMDtcXG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcXG59XFxuLmFwcC1iYXIgPiAubG9nbyB7XFxuICAgIGRpc3BsYXk6IGJsb2NrO1xcbiAgICB3aWR0aDogNTBweDtcXG59XFxuLnNob3AtaXRlbXMge1xcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xcbn1cXG4uaXRlbS1ibG9jayB7XFxuICBwYWRkaW5nOiA0MHB4IDAgNzBweDtcXG59XFxuLml0ZW0tYmxvY2s6Zmlyc3QtY2hpbGQge1xcbiAgICBwYWRkaW5nLXRvcDogMDtcXG59XFxuLml0ZW0tYmxvY2sgPiAuaW1hZ2UtYXJlYSB7XFxuICAgIGJvcmRlci1yYWRpdXM6IDMwcHg7XFxuICAgIGhlaWdodDogMzgwcHg7XFxuICAgIGRpc3BsYXk6IGZsZXg7XFxuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XFxuICAgIG92ZXJmbG93OiBoaWRkZW47XFxufVxcbi5pdGVtLWJsb2NrID4gLmltYWdlLWFyZWEgPiAuaW1hZ2Uge1xcbiAgICAgIGRpc3BsYXk6IGJsb2NrO1xcbiAgICAgIHdpZHRoOiAxMDAlO1xcbiAgICAgIGZpbHRlcjogZHJvcC1zaGFkb3coMCAzMHB4IDIwcHggcmdiYSgwLCAwLCAwLCAwLjIpKTtcXG4gICAgICB0cmFuc2Zvcm06IHJvdGF0ZSgtMjRkZWcpO1xcbiAgICAgIG1hcmdpbi1sZWZ0OiAtMTZweDtcXG59XFxuLml0ZW0tYmxvY2sgPiAubmFtZSB7XFxuICAgIGZvbnQtc2l6ZTogMjBweDtcXG4gICAgZm9udC13ZWlnaHQ6IGJvbGQ7XFxuICAgIG1hcmdpbjogMjZweCAwIDIwcHg7XFxuICAgIGxpbmUtaGVpZ2h0OiAxLjU7XFxufVxcbi5pdGVtLWJsb2NrID4gLmRlc2NyaXB0aW9uIHtcXG4gICAgZm9udC1zaXplOiAxM3B4O1xcbiAgICBjb2xvcjogIzc3NztcXG4gICAgbGluZS1oZWlnaHQ6IDEuODtcXG4gICAgbWFyZ2luLWJvdHRvbTogMjBweDtcXG59XFxuLml0ZW0tYmxvY2sgPiAuYm90dG9tLWFyZWEge1xcbiAgICBkaXNwbGF5OiBmbGV4O1xcbiAgICBqdXN0aWZ5LWNvbnRlbnQ6IHNwYWNlLWJldHdlZW47XFxuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XFxufVxcbi5pdGVtLWJsb2NrID4gLmJvdHRvbS1hcmVhID4gLnByaWNlIHtcXG4gICAgICBmb250LXNpemU6IDE4cHg7XFxuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XFxufVxcbi5pdGVtLWJsb2NrID4gLmJvdHRvbS1hcmVhID4gLmJ1dHRvbiB7XFxuICAgICAgY3Vyc29yOiBwb2ludGVyO1xcbiAgICAgIGJhY2tncm91bmQtY29sb3I6ICNmNmM5MGU7XFxuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XFxuICAgICAgZm9udC1zaXplOiAxNHB4O1xcbiAgICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XFxuICAgICAgaGVpZ2h0OiA0NnB4O1xcbiAgICAgIHBhZGRpbmc6IDE2cHggMjBweDtcXG4gICAgICBib3JkZXItcmFkaXVzOiAxMDBweDtcXG4gICAgICBib3gtc2hhZG93OiAwIDNweCA2cHggcmdiYSgwLCAwLCAwLCAwLjIpO1xcbiAgICAgIHRyYW5zaXRpb246IGJveC1zaGFkb3cgMC40cywgYmFja2dyb3VuZC1jb2xvciAwLjJzO1xcbiAgICAgIHVzZXItc2VsZWN0OiBub25lO1xcbiAgICAgIHdoaXRlLXNwYWNlOiBub3dyYXA7XFxuICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xcbiAgICAgIGRpc3BsYXk6IGZsZXg7XFxuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcXG4gICAgICBvdmVyZmxvdzogaGlkZGVuO1xcbn1cXG4uaXRlbS1ibG9jayA+IC5ib3R0b20tYXJlYSA+IC5idXR0b246aG92ZXIge1xcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogI2Y4ZDQzZjtcXG4gICAgICAgIGJveC1zaGFkb3c6IDAgNHB4IDEycHggcmdiYSgwLCAwLCAwLCAwLjE1KTtcXG59XFxuLml0ZW0tYmxvY2sgPiAuYm90dG9tLWFyZWEgPiAuYnV0dG9uLi1hY3RpdmUge1xcbiAgICAgICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XFxuICAgICAgICBjdXJzb3I6IGRlZmF1bHQ7XFxufVxcbi5pdGVtLWJsb2NrID4gLmJvdHRvbS1hcmVhID4gLmJ1dHRvbiA+IC5jb3ZlciB7XFxuICAgICAgICB3aWR0aDogMTZweDtcXG4gICAgICAgIGhlaWdodDogMTZweDtcXG4gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcXG4gICAgICAgIGRpc3BsYXk6IGZsZXg7XFxuICAgICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcXG4gICAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XFxufVxcbi5pdGVtLWJsb2NrID4gLmJvdHRvbS1hcmVhID4gLmJ1dHRvbiA+IC5jb3ZlciA+IC5jaGVjayB7XFxuICAgICAgICAgIHdpZHRoOiAxMDAlO1xcbiAgICAgICAgICBoZWlnaHQ6IDEwMCU7XFxuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC0xMDAlLCAtNzMlKSByb3RhdGUoLTQ1ZGVnKTtcXG4gICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xcbiAgICAgICAgICBsZWZ0OiA1MCU7XFxuICAgICAgICAgIHRvcDogNTAlO1xcbn1cXG4uaXRlbS1ibG9jayA+IC5ib3R0b20tYXJlYSA+IC5idXR0b24gPiAuY292ZXIgPiAuY2hlY2s6OmJlZm9yZSwgLml0ZW0tYmxvY2sgPiAuYm90dG9tLWFyZWEgPiAuYnV0dG9uID4gLmNvdmVyID4gLmNoZWNrOjphZnRlciB7XFxuICAgICAgICAgICAgY29udGVudDogXFxcIlxcXCI7XFxuICAgICAgICAgICAgZGlzcGxheTogYmxvY2s7XFxuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogIzMwMzg0MTtcXG4gICAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XFxuICAgICAgICAgICAgbGVmdDogMDtcXG4gICAgICAgICAgICBib3R0b206IDA7XFxuICAgICAgICAgICAgYm9yZGVyLXJhZGl1czogMTBweDtcXG59XFxuLml0ZW0tYmxvY2sgPiAuYm90dG9tLWFyZWEgPiAuYnV0dG9uID4gLmNvdmVyID4gLmNoZWNrOjpiZWZvcmUge1xcbiAgICAgICAgICAgIHdpZHRoOiAzcHg7XFxuICAgICAgICAgICAgaGVpZ2h0OiA1MCU7XFxufVxcbi5pdGVtLWJsb2NrID4gLmJvdHRvbS1hcmVhID4gLmJ1dHRvbiA+IC5jb3ZlciA+IC5jaGVjazo6YWZ0ZXIge1xcbiAgICAgICAgICAgIHdpZHRoOiAxMDAlO1xcbiAgICAgICAgICAgIGhlaWdodDogM3B4O1xcbn1cXG4uY2FydC1pdGVtcyB7XFxuICBwb3NpdGlvbjogcmVsYXRpdmU7XFxufVxcbi5uby1jb250ZW50IHtcXG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcXG59XFxuLm5vLWNvbnRlbnQgPiAudGV4dCB7XFxuICAgIGZvbnQtc2l6ZTogMTRweDtcXG59XFxuLmNhcnQtaXRlbSB7XFxuICBkaXNwbGF5OiBmbGV4O1xcbiAgcGFkZGluZzogMjBweCAwO1xcbn1cXG4uY2FydC1pdGVtID4gLnJpZ2h0ID4gLm5hbWUge1xcbiAgICBmb250LXNpemU6IDE0cHg7XFxuICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xcbiAgICBsaW5lLWhlaWdodDogMS41O1xcbiAgICBtYXJnaW4tYm90dG9tOiAxMHB4O1xcbn1cXG4uY2FydC1pdGVtID4gLnJpZ2h0ID4gLnByaWNlIHtcXG4gICAgZm9udC1zaXplOiAyMHB4O1xcbiAgICBmb250LXdlaWdodDogYm9sZDtcXG4gICAgbWFyZ2luLWJvdHRvbTogMTZweDtcXG59XFxuLmNhcnQtaXRlbSA+IC5yaWdodCA+IC5jb3VudCB7XFxuICAgIGRpc3BsYXk6IGZsZXg7XFxuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XFxufVxcbi5jYXJ0LWl0ZW0gPiAucmlnaHQgPiAuY291bnQgPiAubnVtYmVyIHtcXG4gICAgICBmb250LXNpemU6IDE0cHg7XFxuICAgICAgbWFyZ2luOiAwIDE0cHg7XFxuICAgICAgd2lkdGg6IDIwcHg7XFxuICAgICAgdGV4dC1hbGlnbjogY2VudGVyO1xcbn1cXG4uY2FydC1pdGVtID4gLnJpZ2h0ID4gLmNvdW50IC5idXR0b24ge1xcbiAgICAgIGN1cnNvcjogcG9pbnRlcjtcXG4gICAgICB3aWR0aDogMjhweDtcXG4gICAgICBoZWlnaHQ6IDI4cHg7XFxuICAgICAgYm9yZGVyLXJhZGl1czogMTAwJTtcXG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xcbiAgICAgIGZvbnQtc2l6ZTogMTZweDtcXG4gICAgICBmb250LXdlaWdodDogYm9sZDtcXG4gICAgICBkaXNwbGF5OiBmbGV4O1xcbiAgICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XFxuICAgICAgdHJhbnNpdGlvbjogMC4ycztcXG4gICAgICB1c2VyLXNlbGVjdDogbm9uZTtcXG59XFxuLmNhcnQtaXRlbSA+IC5yaWdodCA+IC5jb3VudCAuYnV0dG9uOmhvdmVyIHtcXG4gICAgICAgIGJhY2tncm91bmQtY29sb3I6ICNkZGQ7XFxufVxcbi5jYXJ0LWltYWdlIHtcXG4gIHdpZHRoOiA5MHB4O1xcbiAgaGVpZ2h0OiA5MHB4O1xcbiAgYm9yZGVyLXJhZGl1czogMTAwJTtcXG4gIGJhY2tncm91bmQtY29sb3I6ICNlZWU7XFxuICBtYXJnaW4tcmlnaHQ6IDM0cHg7XFxufVxcbi5jYXJ0LWltYWdlID4gLmltYWdlLXdyYXBwZXIgPiAuaW1hZ2Uge1xcbiAgICBkaXNwbGF5OiBibG9jaztcXG4gICAgd2lkdGg6IDE0MCU7XFxuICAgIHRyYW5zZm9ybTogcm90YXRlKC0yOGRlZykgdHJhbnNsYXRlWSgtNDBweCk7XFxuICAgIGZpbHRlcjogZHJvcC1zaGFkb3coMCAzMHB4IDIwcHggcmdiYSgwLCAwLCAwLCAwLjIpKTtcXG59XFxuLmJ1dHRvblRleHQtbGVhdmUtYWN0aXZlLFxcbi5idXR0b25UZXh0LWVudGVyLWFjdGl2ZSB7XFxuICB0cmFuc2l0aW9uOiBvcGFjaXR5IDAuMnMsIHRvcCAwLjM1cztcXG59XFxuLmJ1dHRvblRleHQtbGVhdmUtdG8sXFxuLmJ1dHRvblRleHQtZW50ZXIge1xcbiAgb3BhY2l0eTogMDtcXG59XFxuLmNhcnRMaXN0LWVudGVyLWFjdGl2ZSB7XFxuICB0cmFuc2l0aW9uOiBhbGwgMnM7XFxufVxcbi5jYXJ0TGlzdC1lbnRlci1hY3RpdmUgPiAucmlnaHQgPiAubmFtZSxcXG4gIC5jYXJ0TGlzdC1lbnRlci1hY3RpdmUgPiAucmlnaHQgPiAucHJpY2Uge1xcbiAgICB0cmFuc2l0aW9uOiAwLjRzO1xcbn1cXG4uY2FydExpc3QtZW50ZXItYWN0aXZlID4gLnJpZ2h0ID4gLm5hbWUge1xcbiAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjdzO1xcbn1cXG4uY2FydExpc3QtZW50ZXItYWN0aXZlID4gLnJpZ2h0ID4gLnByaWNlIHtcXG4gICAgdHJhbnNpdGlvbi1kZWxheTogMC44NXM7XFxufVxcbi5jYXJ0TGlzdC1lbnRlci1hY3RpdmUgPiAucmlnaHQgPiAuY291bnQge1xcbiAgICB0cmFuc2l0aW9uOiBvcGFjaXR5IDAuNHM7XFxuICAgIHRyYW5zaXRpb24tZGVsYXk6IDFzO1xcbn1cXG4uY2FydExpc3QtZW50ZXItYWN0aXZlIC5jYXJ0LWltYWdlIHtcXG4gICAgdHJhbnNpdGlvbjogMC41cyBjdWJpYy1iZXppZXIoMC43OSwgMC4wMSwgMC4yMiwgMSk7XFxufVxcbi5jYXJ0TGlzdC1lbnRlci1hY3RpdmUgLmNhcnQtaW1hZ2UgPiAuaW1hZ2Utd3JhcHBlciB7XFxuICAgICAgdHJhbnNpdGlvbjogMC41cyBjdWJpYy1iZXppZXIoMC43OSwgMC4wMSwgMC4yMiwgMSkgMC4xcztcXG59XFxuLmNhcnRMaXN0LWVudGVyID4gLnJpZ2h0ID4gLm5hbWUsXFxuLmNhcnRMaXN0LWVudGVyID4gLnJpZ2h0ID4gLnByaWNlIHtcXG4gIG9wYWNpdHk6IDA7XFxuICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoMzBweCk7XFxufVxcbi5jYXJ0TGlzdC1lbnRlciA+IC5yaWdodCAuY291bnQge1xcbiAgb3BhY2l0eTogMDtcXG59XFxuLmNhcnRMaXN0LWVudGVyIC5jYXJ0LWltYWdlIHtcXG4gIHRyYW5zZm9ybTogc2NhbGUoMCk7XFxufVxcbi5jYXJ0TGlzdC1lbnRlciAuY2FydC1pbWFnZSA+IC5pbWFnZS13cmFwcGVyIHtcXG4gICAgdHJhbnNmb3JtOiBzY2FsZSgwKTtcXG59XFxuLmNhcnRMaXN0LWxlYXZlLWFjdGl2ZSB7XFxuICB0cmFuc2l0aW9uOiAwLjdzIGN1YmljLWJlemllcigwLjc5LCAwLjAxLCAwLjIyLCAxKTtcXG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcXG59XFxuLmNhcnRMaXN0LWxlYXZlLXRvIHtcXG4gIHRyYW5zZm9ybTogc2NhbGUoMCk7XFxuICBvcGFjaXR5OiAwO1xcbn1cXG4uY2FydExpc3QtbW92ZSB7XFxuICB0cmFuc2l0aW9uOiAwLjdzIGN1YmljLWJlemllcigwLjc5LCAwLjAxLCAwLjIyLCAxKTtcXG59XFxuLm5vQ29udGVudC1lbnRlci1hY3RpdmUsIC5ub0NvbnRlbnQtbGVhdmUtYWN0aXZlIHtcXG4gIHRyYW5zaXRpb246IG9wYWNpdHkgMC41cztcXG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcXG59XFxuLm5vQ29udGVudC1lbnRlciwgLm5vQ29udGVudC1sZWF2ZS10byB7XFxuICBvcGFjaXR5OiAwO1xcbn1cXG5cIiwgXCJcIl0pO1xuLy8gRXhwb3J0c1xubW9kdWxlLmV4cG9ydHMgPSBleHBvcnRzO1xuIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&\n"); /***/ }), /***/ "./node_modules/css-loader/dist/runtime/api.js": /*!*****************************************************!*\ !*** ./node_modules/css-loader/dist/runtime/api.js ***! \*****************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; eval("\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9kaXN0L3J1bnRpbWUvYXBpLmpzLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8uL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2Rpc3QvcnVudGltZS9hcGkuanM/MjRmYiJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuLypcbiAgTUlUIExpY2Vuc2UgaHR0cDovL3d3dy5vcGVuc291cmNlLm9yZy9saWNlbnNlcy9taXQtbGljZW5zZS5waHBcbiAgQXV0aG9yIFRvYmlhcyBLb3BwZXJzIEBzb2tyYVxuKi9cbi8vIGNzcyBiYXNlIGNvZGUsIGluamVjdGVkIGJ5IHRoZSBjc3MtbG9hZGVyXG4vLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgZnVuYy1uYW1lc1xubW9kdWxlLmV4cG9ydHMgPSBmdW5jdGlvbiAodXNlU291cmNlTWFwKSB7XG4gIHZhciBsaXN0ID0gW107IC8vIHJldHVybiB0aGUgbGlzdCBvZiBtb2R1bGVzIGFzIGNzcyBzdHJpbmdcblxuICBsaXN0LnRvU3RyaW5nID0gZnVuY3Rpb24gdG9TdHJpbmcoKSB7XG4gICAgcmV0dXJuIHRoaXMubWFwKGZ1bmN0aW9uIChpdGVtKSB7XG4gICAgICB2YXIgY29udGVudCA9IGNzc1dpdGhNYXBwaW5nVG9TdHJpbmcoaXRlbSwgdXNlU291cmNlTWFwKTtcblxuICAgICAgaWYgKGl0ZW1bMl0pIHtcbiAgICAgICAgcmV0dXJuIFwiQG1lZGlhIFwiLmNvbmNhdChpdGVtWzJdLCBcIiB7XCIpLmNvbmNhdChjb250ZW50LCBcIn1cIik7XG4gICAgICB9XG5cbiAgICAgIHJldHVybiBjb250ZW50O1xuICAgIH0pLmpvaW4oJycpO1xuICB9OyAvLyBpbXBvcnQgYSBsaXN0IG9mIG1vZHVsZXMgaW50byB0aGUgbGlzdFxuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgZnVuYy1uYW1lc1xuXG5cbiAgbGlzdC5pID0gZnVuY3Rpb24gKG1vZHVsZXMsIG1lZGlhUXVlcnksIGRlZHVwZSkge1xuICAgIGlmICh0eXBlb2YgbW9kdWxlcyA9PT0gJ3N0cmluZycpIHtcbiAgICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBuby1wYXJhbS1yZWFzc2lnblxuICAgICAgbW9kdWxlcyA9IFtbbnVsbCwgbW9kdWxlcywgJyddXTtcbiAgICB9XG5cbiAgICB2YXIgYWxyZWFkeUltcG9ydGVkTW9kdWxlcyA9IHt9O1xuXG4gICAgaWYgKGRlZHVwZSkge1xuICAgICAgZm9yICh2YXIgaSA9IDA7IGkgPCB0aGlzLmxlbmd0aDsgaSsrKSB7XG4gICAgICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBwcmVmZXItZGVzdHJ1Y3R1cmluZ1xuICAgICAgICB2YXIgaWQgPSB0aGlzW2ldWzBdO1xuXG4gICAgICAgIGlmIChpZCAhPSBudWxsKSB7XG4gICAgICAgICAgYWxyZWFkeUltcG9ydGVkTW9kdWxlc1tpZF0gPSB0cnVlO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgZm9yICh2YXIgX2kgPSAwOyBfaSA8IG1vZHVsZXMubGVuZ3RoOyBfaSsrKSB7XG4gICAgICB2YXIgaXRlbSA9IFtdLmNvbmNhdChtb2R1bGVzW19pXSk7XG5cbiAgICAgIGlmIChkZWR1cGUgJiYgYWxyZWFkeUltcG9ydGVkTW9kdWxlc1tpdGVtWzBdXSkge1xuICAgICAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tY29udGludWVcbiAgICAgICAgY29udGludWU7XG4gICAgICB9XG5cbiAgICAgIGlmIChtZWRpYVF1ZXJ5KSB7XG4gICAgICAgIGlmICghaXRlbVsyXSkge1xuICAgICAgICAgIGl0ZW1bMl0gPSBtZWRpYVF1ZXJ5O1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGl0ZW1bMl0gPSBcIlwiLmNvbmNhdChtZWRpYVF1ZXJ5LCBcIiBhbmQgXCIpLmNvbmNhdChpdGVtWzJdKTtcbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICBsaXN0LnB1c2goaXRlbSk7XG4gICAgfVxuICB9O1xuXG4gIHJldHVybiBsaXN0O1xufTtcblxuZnVuY3Rpb24gY3NzV2l0aE1hcHBpbmdUb1N0cmluZyhpdGVtLCB1c2VTb3VyY2VNYXApIHtcbiAgdmFyIGNvbnRlbnQgPSBpdGVtWzFdIHx8ICcnOyAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgcHJlZmVyLWRlc3RydWN0dXJpbmdcblxuICB2YXIgY3NzTWFwcGluZyA9IGl0ZW1bM107XG5cbiAgaWYgKCFjc3NNYXBwaW5nKSB7XG4gICAgcmV0dXJuIGNvbnRlbnQ7XG4gIH1cblxuICBpZiAodXNlU291cmNlTWFwICYmIHR5cGVvZiBidG9hID09PSAnZnVuY3Rpb24nKSB7XG4gICAgdmFyIHNvdXJjZU1hcHBpbmcgPSB0b0NvbW1lbnQoY3NzTWFwcGluZyk7XG4gICAgdmFyIHNvdXJjZVVSTHMgPSBjc3NNYXBwaW5nLnNvdXJjZXMubWFwKGZ1bmN0aW9uIChzb3VyY2UpIHtcbiAgICAgIHJldHVybiBcIi8qIyBzb3VyY2VVUkw9XCIuY29uY2F0KGNzc01hcHBpbmcuc291cmNlUm9vdCB8fCAnJykuY29uY2F0KHNvdXJjZSwgXCIgKi9cIik7XG4gICAgfSk7XG4gICAgcmV0dXJuIFtjb250ZW50XS5jb25jYXQoc291cmNlVVJMcykuY29uY2F0KFtzb3VyY2VNYXBwaW5nXSkuam9pbignXFxuJyk7XG4gIH1cblxuICByZXR1cm4gW2NvbnRlbnRdLmpvaW4oJ1xcbicpO1xufSAvLyBBZGFwdGVkIGZyb20gY29udmVydC1zb3VyY2UtbWFwIChNSVQpXG5cblxuZnVuY3Rpb24gdG9Db21tZW50KHNvdXJjZU1hcCkge1xuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgbm8tdW5kZWZcbiAgdmFyIGJhc2U2NCA9IGJ0b2EodW5lc2NhcGUoZW5jb2RlVVJJQ29tcG9uZW50KEpTT04uc3RyaW5naWZ5KHNvdXJjZU1hcCkpKSk7XG4gIHZhciBkYXRhID0gXCJzb3VyY2VNYXBwaW5nVVJMPWRhdGE6YXBwbGljYXRpb24vanNvbjtjaGFyc2V0PXV0Zi04O2Jhc2U2NCxcIi5jb25jYXQoYmFzZTY0KTtcbiAgcmV0dXJuIFwiLyojIFwiLmNvbmNhdChkYXRhLCBcIiAqL1wiKTtcbn0iXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/css-loader/dist/runtime/api.js\n"); /***/ }), /***/ "./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js&": /*!*****************************************************************************************************************!*\ !*** ./node_modules/vue-loader/lib??vue-loader-options!/tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js& ***! \*****************************************************************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n data() {\n return {\n shopItems: [],\n cartItems: []\n };\n },\n mounted: function () {\n axios\n .get(\"https://s3-us-west-2.amazonaws.com/s.cdpn.io/1315882/shoes.json\")\n .then((res) => {\n this.$data.shopItems = res.data.shoes;\n });\n },\n methods: {\n addToCart(item) {\n if (!item.inCart) {\n item.inCart = true;\n const newItem = Object.assign({}, item, { count: 1 });\n this.$data.cartItems.push(newItem);\n\n const animationTarget = this.$refs[`addButton${item.id}`];\n gsap.to(animationTarget, {\n width: 46,\n duration: 0.8,\n ease: \"power4\"\n });\n }\n this.$nextTick(() => {\n this.$refs.cartItems.scrollTop = this.$refs.cartItems.scrollHeight;\n });\n },\n\n decrement(item) {\n item.count--;\n const targetShopItem = this.$data.shopItems.find(\n (shopItem) => shopItem.id === item.id\n );\n\n this.$nextTick(function () {\n if (item.count === 0) {\n const animationTarget = this.$refs[`addButton${targetShopItem.id}`];\n gsap.to(animationTarget, {\n width: 136,\n duration: 0.8,\n ease: \"power4\"\n });\n targetShopItem.inCart = false;\n const targetIndex = this.$data.cartItems.findIndex(\n (cartItem) => cartItem.id === item.id\n );\n this.$data.cartItems.splice(targetIndex, 1);\n }\n });\n },\n\n increment(item) {\n item.count++;\n }\n }\n});\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/IS4uLy4uL3RtcC9jb2RlcGVuL3Z1ZWpzL3NyYy9wZW4udnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovL0NvZGVQZW5WdWVDb21wb25lbnQvcGVuLnZ1ZT83OTMzIl0sInNvdXJjZXNDb250ZW50IjpbIjx0ZW1wbGF0ZSBsYW5nPVwicHVnXCI+XG4ud3JhcHBlclxuICAuc2NyZWVuLi1sZWZ0XG4gICAgLmFwcC1iYXJcbiAgICAgaW1nLmxvZ28oc3JjPVwiaHR0cHM6Ly9zMy11cy13ZXN0LTIuYW1hem9uYXdzLmNvbS9zLmNkcG4uaW8vMTMxNTg4Mi9wbmd3YXZlLnBuZ1wiKVxuICAgIC50aXRsZSBQaWNrZWQgaXRlbXNcbiAgICAuc2hvcC1pdGVtc1xuICAgICAgLml0ZW0odi1mb3I9XCJpdGVtIGluIHNob3BJdGVtc1wiKVxuICAgICAgICAuaXRlbS1ibG9ja1xuICAgICAgICAgIC5pbWFnZS1hcmVhKDpzdHlsZT1cIntiYWNrZ3JvdW5kQ29sb3I6IGl0ZW0uY29sb3J9XCIpXG4gICAgICAgICAgICBpbWcuaW1hZ2UoOnNyYz1cIml0ZW0uaW1hZ2VcIilcbiAgICAgICAgICAubmFtZSB7eyBpdGVtLm5hbWUgfX1cbiAgICAgICAgICAuZGVzY3JpcHRpb24ge3sgaXRlbS5kZXNjcmlwdGlvbiB9fVxuICAgICAgICAgIC5ib3R0b20tYXJlYVxuICAgICAgICAgICAgLnByaWNlICR7eyBpdGVtLnByaWNlIH19XG4gICAgICAgICAgICAuYnV0dG9uKEBjbGljaz1cImFkZFRvQ2FydChpdGVtKVwiIDpyZWY9XCInYWRkQnV0dG9uJyArIGl0ZW0uaWRcIiA6Y2xhc3M9XCJ7Jy1hY3RpdmUnOiBpdGVtLmluQ2FydH1cIilcbiAgICAgICAgICAgICAgdHJhbnNpdGlvbihuYW1lPVwiYnV0dG9uVGV4dFwiIG1vZGU9XCJvdXQtaW5cIilcbiAgICAgICAgICAgICAgICBwKHYtaWY9XCIhaXRlbS5pbkNhcnRcIikgQUREIFRPIENBUlRcbiAgICAgICAgICAgICAgICAuY292ZXIodi1lbHNlKVxuICAgICAgICAgICAgICAgICAgLmNoZWNrXG4gIC5zY3JlZW4uLXJpZ2h0KHJlZj1cImNhcnRJdGVtc1wiKVxuICAgIC5hcHAtYmFyXG4gICAgIGltZy5sb2dvKHNyYz1cImh0dHBzOi8vczMtdXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vcy5jZHBuLmlvLzEzMTU4ODIvcG5nd2F2ZS5wbmdcIilcbiAgICAudGl0bGUgWW91ciBjYXJ0XG4gICAgdHJhbnNpdGlvbihuYW1lPVwibm9Db250ZW50XCIpXG4gICAgICAubm8tY29udGVudCh2LWlmPVwiJGRhdGEuY2FydEl0ZW1zLmxlbmd0aCA9PT0gMFwiKVxuICAgICAgICBwLnRleHQgWW91ciBjYXJ0IGlzIGVtcHR5LlxuICAgIC5jYXJ0LWl0ZW1zXG4gICAgICB0cmFuc2l0aW9uLWdyb3VwKG5hbWU9XCJjYXJ0TGlzdFwiIHRhZz1cImRpdlwiKVxuICAgICAgICAuY2FydC1pdGVtKHYtZm9yPVwiaXRlbSBpbiAkZGF0YS5jYXJ0SXRlbXNcIiA6a2V5PVwiaXRlbS5pZFwiKVxuICAgICAgICAgIC5sZWZ0XG4gICAgICAgICAgICAuY2FydC1pbWFnZVxuICAgICAgICAgICAgICAuaW1hZ2Utd3JhcHBlclxuICAgICAgICAgICAgICAgIGltZy5pbWFnZSg6c3JjPVwiaXRlbS5pbWFnZVwiKVxuICAgICAgICAgIC5yaWdodFxuICAgICAgICAgICAgLm5hbWUge3tpdGVtLm5hbWV9fVxuICAgICAgICAgICAgLnByaWNlICR7e2l0ZW0ucHJpY2V9fVxuICAgICAgICAgICAgLmNvdW50XG4gICAgICAgICAgICAgIC5idXR0b24oQGNsaWNrPVwiZGVjcmVtZW50KGl0ZW0pXCIpIDxcbiAgICAgICAgICAgICAgLm51bWJlciB7e2l0ZW0uY291bnR9fVxuICAgICAgICAgICAgICAuYnV0dG9uKEBjbGljaz1cImluY3JlbWVudChpdGVtKVwiKSA+XG4gICAgXG48L3RlbXBsYXRlPlxuXG48c2NyaXB0PlxuZXhwb3J0IGRlZmF1bHQge1xuICBkYXRhKCkge1xuICAgIHJldHVybiB7XG4gICAgICBzaG9wSXRlbXM6IFtdLFxuICAgICAgY2FydEl0ZW1zOiBbXVxuICAgIH07XG4gIH0sXG4gIG1vdW50ZWQ6IGZ1bmN0aW9uICgpIHtcbiAgICBheGlvc1xuICAgICAgLmdldChcImh0dHBzOi8vczMtdXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vcy5jZHBuLmlvLzEzMTU4ODIvc2hvZXMuanNvblwiKVxuICAgICAgLnRoZW4oKHJlcykgPT4ge1xuICAgICAgICB0aGlzLiRkYXRhLnNob3BJdGVtcyA9IHJlcy5kYXRhLnNob2VzO1xuICAgICAgfSk7XG4gIH0sXG4gIG1ldGhvZHM6IHtcbiAgICBhZGRUb0NhcnQoaXRlbSkge1xuICAgICAgaWYgKCFpdGVtLmluQ2FydCkge1xuICAgICAgICBpdGVtLmluQ2FydCA9IHRydWU7XG4gICAgICAgIGNvbnN0IG5ld0l0ZW0gPSBPYmplY3QuYXNzaWduKHt9LCBpdGVtLCB7IGNvdW50OiAxIH0pO1xuICAgICAgICB0aGlzLiRkYXRhLmNhcnRJdGVtcy5wdXNoKG5ld0l0ZW0pO1xuXG4gICAgICAgIGNvbnN0IGFuaW1hdGlvblRhcmdldCA9IHRoaXMuJHJlZnNbYGFkZEJ1dHRvbiR7aXRlbS5pZH1gXTtcbiAgICAgICAgZ3NhcC50byhhbmltYXRpb25UYXJnZXQsIHtcbiAgICAgICAgICB3aWR0aDogNDYsXG4gICAgICAgICAgZHVyYXRpb246IDAuOCxcbiAgICAgICAgICBlYXNlOiBcInBvd2VyNFwiXG4gICAgICAgIH0pO1xuICAgICAgfVxuICAgICAgdGhpcy4kbmV4dFRpY2soKCkgPT4ge1xuICAgICAgICB0aGlzLiRyZWZzLmNhcnRJdGVtcy5zY3JvbGxUb3AgPSB0aGlzLiRyZWZzLmNhcnRJdGVtcy5zY3JvbGxIZWlnaHQ7XG4gICAgICB9KTtcbiAgICB9LFxuXG4gICAgZGVjcmVtZW50KGl0ZW0pIHtcbiAgICAgIGl0ZW0uY291bnQtLTtcbiAgICAgIGNvbnN0IHRhcmdldFNob3BJdGVtID0gdGhpcy4kZGF0YS5zaG9wSXRlbXMuZmluZChcbiAgICAgICAgKHNob3BJdGVtKSA9PiBzaG9wSXRlbS5pZCA9PT0gaXRlbS5pZFxuICAgICAgKTtcblxuICAgICAgdGhpcy4kbmV4dFRpY2soZnVuY3Rpb24gKCkge1xuICAgICAgICBpZiAoaXRlbS5jb3VudCA9PT0gMCkge1xuICAgICAgICAgIGNvbnN0IGFuaW1hdGlvblRhcmdldCA9IHRoaXMuJHJlZnNbYGFkZEJ1dHRvbiR7dGFyZ2V0U2hvcEl0ZW0uaWR9YF07XG4gICAgICAgICAgZ3NhcC50byhhbmltYXRpb25UYXJnZXQsIHtcbiAgICAgICAgICAgIHdpZHRoOiAxMzYsXG4gICAgICAgICAgICBkdXJhdGlvbjogMC44LFxuICAgICAgICAgICAgZWFzZTogXCJwb3dlcjRcIlxuICAgICAgICAgIH0pO1xuICAgICAgICAgIHRhcmdldFNob3BJdGVtLmluQ2FydCA9IGZhbHNlO1xuICAgICAgICAgIGNvbnN0IHRhcmdldEluZGV4ID0gdGhpcy4kZGF0YS5jYXJ0SXRlbXMuZmluZEluZGV4KFxuICAgICAgICAgICAgKGNhcnRJdGVtKSA9PiBjYXJ0SXRlbS5pZCA9PT0gaXRlbS5pZFxuICAgICAgICAgICk7XG4gICAgICAgICAgdGhpcy4kZGF0YS5jYXJ0SXRlbXMuc3BsaWNlKHRhcmdldEluZGV4LCAxKTtcbiAgICAgICAgfVxuICAgICAgfSk7XG4gICAgfSxcblxuICAgIGluY3JlbWVudChpdGVtKSB7XG4gICAgICBpdGVtLmNvdW50Kys7XG4gICAgfVxuICB9XG59O1xuPC9zY3JpcHQ+XG5cbjxzdHlsZSBsYW5nPVwic2Nzc1wiPlxuJHdoaXRlOiAjZmZmO1xuJHllbGxvdzogI2Y2YzkwZTtcbiRibGFjazogIzMwMzg0MTtcblxuYm9keSB7XG4gIGZvbnQtZmFtaWx5OiBcIlJ1YmlrXCIsIHNhbnMtc2VyaWY7XG4gIGNvbG9yOiAkYmxhY2s7XG59XG5cbi53cmFwcGVyIHtcbiAgaGVpZ2h0OiAxMDB2aDtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGZsZXgtd3JhcDogd3JhcDtcbiAgcGFkZGluZzogNDBweCAyMHB4O1xuICBtYXgtd2lkdGg6IDcyMHB4O1xuICBtYXJnaW46IDAgYXV0bztcblxuICAmOjpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgcG9zaXRpb246IGZpeGVkO1xuICAgIHdpZHRoOiAzMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICB0b3A6IDUwJTtcbiAgICBsZWZ0OiA1MCU7XG4gICAgYm9yZGVyLXJhZGl1czogMTAwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTUwJSkgc2tld1koLThkZWcpO1xuICAgIGJhY2tncm91bmQtY29sb3I6ICR5ZWxsb3c7XG4gICAgei1pbmRleDogLTE7XG4gICAgYW5pbWF0aW9uOiB3YXZlIDhzIGVhc2UtaW4tb3V0IGluZmluaXRlIGFsdGVybmF0ZTtcbiAgfVxuXG4gIEBrZXlmcmFtZXMgd2F2ZSB7XG4gICAgMCUge1xuICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKC01MCUpIHNrZXcoMGRlZywgLThkZWcpO1xuICAgIH1cblxuICAgIDEwMCUge1xuICAgICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKC0zMCUpIHNrZXcoOGRlZywgLTRkZWcpO1xuICAgIH1cbiAgfVxufVxuXG4uc2NyZWVuIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogJHdoaXRlO1xuICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICB3aWR0aDogMzQwcHg7XG4gIGhlaWdodDogNjAwcHg7XG4gIGJveC1zaGFkb3c6IDAgMy4ycHggMi4ycHggcmdiYSgwLCAwLCAwLCAwLjAyKSxcbiAgICAwIDdweCA1LjRweCByZ2JhKDAsIDAsIDAsIDAuMDI4KSwgMCAxMi4xcHggMTAuMXB4IHJnYmEoMCwgMCwgMCwgMC4wMzUpLFxuICAgIDAgMTkuOHB4IDE4LjFweCByZ2JhKDAsIDAsIDAsIDAuMDQyKSwgMCAzNC43cHggMzMuOHB4IHJnYmEoMCwgMCwgMCwgMC4wNSksXG4gICAgMCA4MXB4IDgxcHggcmdiYSgwLCAwLCAwLCAwLjA3KTtcbiAgYm9yZGVyLXJhZGl1czogMzBweDtcbiAgb3ZlcmZsb3cteTogc2Nyb2xsO1xuICBwYWRkaW5nOiAwIDI4cHg7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcblxuICAmOjpiZWZvcmUge1xuICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHdpZHRoOiAzMDBweDtcbiAgICBoZWlnaHQ6IDMwMHB4O1xuICAgIGJvcmRlci1yYWRpdXM6IDEwMCU7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogJHllbGxvdztcbiAgICB0b3A6IC0yMCU7XG4gICAgbGVmdDogLTUwJTtcbiAgICB6LWluZGV4OiAwO1xuICB9XG5cbiAgJjo6LXdlYmtpdC1zY3JvbGxiYXIge1xuICAgIGRpc3BsYXk6IG5vbmU7XG4gIH1cblxuICA+IC50aXRsZSB7XG4gICAgZm9udC1zaXplOiAyNHB4O1xuICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xuICAgIG1hcmdpbjogMjBweCAwO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgfVxufVxuXG4uYXBwLWJhciB7XG4gIHBhZGRpbmc6IDEycHggMDtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuXG4gID4gLmxvZ28ge1xuICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIHdpZHRoOiA1MHB4O1xuICB9XG59XG5cbi5zaG9wLWl0ZW1zIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4uaXRlbS1ibG9jayB7XG4gIHBhZGRpbmc6IDQwcHggMCA3MHB4O1xuXG4gICY6Zmlyc3QtY2hpbGQge1xuICAgIHBhZGRpbmctdG9wOiAwO1xuICB9XG5cbiAgPiAuaW1hZ2UtYXJlYSB7XG4gICAgYm9yZGVyLXJhZGl1czogMzBweDtcbiAgICBoZWlnaHQ6IDM4MHB4O1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuXG4gICAgPiAuaW1hZ2Uge1xuICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICB3aWR0aDogMTAwJTtcbiAgICAgIGZpbHRlcjogZHJvcC1zaGFkb3coMCAzMHB4IDIwcHggcmdiYSgwLCAwLCAwLCAwLjIpKTtcbiAgICAgIHRyYW5zZm9ybTogcm90YXRlKC0yNGRlZyk7XG4gICAgICBtYXJnaW4tbGVmdDogLTE2cHg7XG4gICAgfVxuICB9XG5cbiAgPiAubmFtZSB7XG4gICAgZm9udC1zaXplOiAyMHB4O1xuICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xuICAgIG1hcmdpbjogMjZweCAwIDIwcHg7XG4gICAgbGluZS1oZWlnaHQ6IDEuNTtcbiAgfVxuXG4gID4gLmRlc2NyaXB0aW9uIHtcbiAgICBmb250LXNpemU6IDEzcHg7XG4gICAgY29sb3I6ICM3Nzc7XG4gICAgbGluZS1oZWlnaHQ6IDEuODtcbiAgICBtYXJnaW4tYm90dG9tOiAyMHB4O1xuICB9XG5cbiAgPiAuYm90dG9tLWFyZWEge1xuICAgIGRpc3BsYXk6IGZsZXg7XG4gICAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG5cbiAgICA+IC5wcmljZSB7XG4gICAgICBmb250LXNpemU6IDE4cHg7XG4gICAgICBmb250LXdlaWdodDogYm9sZDtcbiAgICB9XG5cbiAgICA+IC5idXR0b24ge1xuICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgYmFja2dyb3VuZC1jb2xvcjogJHllbGxvdztcbiAgICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xuICAgICAgZm9udC1zaXplOiAxNHB4O1xuICAgICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcbiAgICAgIGhlaWdodDogNDZweDtcbiAgICAgIHBhZGRpbmc6IDE2cHggMjBweDtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDEwMHB4O1xuICAgICAgYm94LXNoYWRvdzogMCAzcHggNnB4IHJnYmEoMCwgMCwgMCwgMC4yKTtcbiAgICAgIHRyYW5zaXRpb246IGJveC1zaGFkb3cgMC40cywgYmFja2dyb3VuZC1jb2xvciAwLjJzO1xuICAgICAgdXNlci1zZWxlY3Q6IG5vbmU7XG4gICAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICBvdmVyZmxvdzogaGlkZGVuO1xuXG4gICAgICAmOmhvdmVyIHtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogbGlnaHRlbigkeWVsbG93LCAxMCUpO1xuICAgICAgICBib3gtc2hhZG93OiAwIDRweCAxMnB4IHJnYmEoMCwgMCwgMCwgMC4xNSk7XG4gICAgICB9XG5cbiAgICAgICYuLWFjdGl2ZSB7XG4gICAgICAgIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICAgICAgICBjdXJzb3I6IGRlZmF1bHQ7XG4gICAgICB9XG5cbiAgICAgID4gLmNvdmVyIHtcbiAgICAgICAgd2lkdGg6IDE2cHg7XG4gICAgICAgIGhlaWdodDogMTZweDtcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcblxuICAgICAgICA+IC5jaGVjayB7XG4gICAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC0xMDAlLCAtNzMlKSByb3RhdGUoLTQ1ZGVnKTtcbiAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgbGVmdDogNTAlO1xuICAgICAgICAgIHRvcDogNTAlO1xuXG4gICAgICAgICAgJjo6YmVmb3JlLFxuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6ICRibGFjaztcbiAgICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICAgIGxlZnQ6IDA7XG4gICAgICAgICAgICBib3R0b206IDA7XG4gICAgICAgICAgICBib3JkZXItcmFkaXVzOiAxMHB4O1xuICAgICAgICAgIH1cblxuICAgICAgICAgICY6OmJlZm9yZSB7XG4gICAgICAgICAgICB3aWR0aDogM3B4O1xuICAgICAgICAgICAgaGVpZ2h0OiA1MCU7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICAgICAgICBoZWlnaHQ6IDNweDtcbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cblxuLmNhcnQtaXRlbXMge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5uby1jb250ZW50IHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuXG4gID4gLnRleHQge1xuICAgIGZvbnQtc2l6ZTogMTRweDtcbiAgfVxufVxuXG4uY2FydC1pdGVtIHtcbiAgZGlzcGxheTogZmxleDtcbiAgcGFkZGluZzogMjBweCAwO1xuXG4gID4gLnJpZ2h0IHtcbiAgICA+IC5uYW1lIHtcbiAgICAgIGZvbnQtc2l6ZTogMTRweDtcbiAgICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xuICAgICAgbGluZS1oZWlnaHQ6IDEuNTtcbiAgICAgIG1hcmdpbi1ib3R0b206IDEwcHg7XG4gICAgfVxuXG4gICAgPiAucHJpY2Uge1xuICAgICAgZm9udC1zaXplOiAyMHB4O1xuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICBtYXJnaW4tYm90dG9tOiAxNnB4O1xuICAgIH1cblxuICAgID4gLmNvdW50IHtcbiAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuXG4gICAgICA+IC5udW1iZXIge1xuICAgICAgICBmb250LXNpemU6IDE0cHg7XG4gICAgICAgIG1hcmdpbjogMCAxNHB4O1xuICAgICAgICB3aWR0aDogMjBweDtcbiAgICAgICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgICAgfVxuXG4gICAgICAuYnV0dG9uIHtcbiAgICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgICB3aWR0aDogMjhweDtcbiAgICAgICAgaGVpZ2h0OiAyOHB4O1xuICAgICAgICBib3JkZXItcmFkaXVzOiAxMDAlO1xuICAgICAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xuICAgICAgICBmb250LXNpemU6IDE2cHg7XG4gICAgICAgIGZvbnQtd2VpZ2h0OiBib2xkO1xuICAgICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgICAgdHJhbnNpdGlvbjogMC4ycztcbiAgICAgICAgdXNlci1zZWxlY3Q6IG5vbmU7XG5cbiAgICAgICAgJjpob3ZlciB7XG4gICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogI2RkZDtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuXG4uY2FydC1pbWFnZSB7XG4gIHdpZHRoOiA5MHB4O1xuICBoZWlnaHQ6IDkwcHg7XG4gIGJvcmRlci1yYWRpdXM6IDEwMCU7XG4gIGJhY2tncm91bmQtY29sb3I6ICNlZWU7XG4gIG1hcmdpbi1yaWdodDogMzRweDtcblxuICA+IC5pbWFnZS13cmFwcGVyIHtcbiAgICA+IC5pbWFnZSB7XG4gICAgICBkaXNwbGF5OiBibG9jaztcbiAgICAgIHdpZHRoOiAxNDAlO1xuICAgICAgdHJhbnNmb3JtOiByb3RhdGUoLTI4ZGVnKSB0cmFuc2xhdGVZKC00MHB4KTtcbiAgICAgIGZpbHRlcjogZHJvcC1zaGFkb3coMCAzMHB4IDIwcHggcmdiYSgwLCAwLCAwLCAwLjIpKTtcbiAgICB9XG4gIH1cbn1cblxuLmJ1dHRvblRleHQtbGVhdmUtYWN0aXZlLFxuLmJ1dHRvblRleHQtZW50ZXItYWN0aXZlIHtcbiAgdHJhbnNpdGlvbjogb3BhY2l0eSAwLjJzLCB0b3AgMC4zNXM7XG59XG4uYnV0dG9uVGV4dC1sZWF2ZS10byxcbi5idXR0b25UZXh0LWVudGVyIHtcbiAgb3BhY2l0eTogMDtcbn1cblxuLmNhcnRMaXN0LWVudGVyLWFjdGl2ZSB7XG4gIHRyYW5zaXRpb246IGFsbCAycztcblxuICA+IC5yaWdodCB7XG4gICAgPiAubmFtZSxcbiAgICA+IC5wcmljZSB7XG4gICAgICB0cmFuc2l0aW9uOiAwLjRzO1xuICAgIH1cblxuICAgID4gLm5hbWUge1xuICAgICAgdHJhbnNpdGlvbi1kZWxheTogMC43cztcbiAgICB9XG5cbiAgICA+IC5wcmljZSB7XG4gICAgICB0cmFuc2l0aW9uLWRlbGF5OiAwLjg1cztcbiAgICB9XG5cbiAgICA+IC5jb3VudCB7XG4gICAgICB0cmFuc2l0aW9uOiBvcGFjaXR5IDAuNHM7XG4gICAgICB0cmFuc2l0aW9uLWRlbGF5OiAxcztcbiAgICB9XG4gIH1cblxuICAuY2FydC1pbWFnZSB7XG4gICAgdHJhbnNpdGlvbjogMC41cyBjdWJpYy1iZXppZXIoMC43OSwgMC4wMSwgMC4yMiwgMSk7XG5cbiAgICA+IC5pbWFnZS13cmFwcGVyIHtcbiAgICAgIHRyYW5zaXRpb246IDAuNXMgY3ViaWMtYmV6aWVyKDAuNzksIDAuMDEsIDAuMjIsIDEpIDAuMXM7XG4gICAgfVxuICB9XG59XG5cbi5jYXJ0TGlzdCB7XG4gICYtZW50ZXIge1xuICAgID4gLnJpZ2h0IHtcbiAgICAgID4gLm5hbWUsXG4gICAgICA+IC5wcmljZSB7XG4gICAgICAgIG9wYWNpdHk6IDA7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlWCgzMHB4KTtcbiAgICAgIH1cblxuICAgICAgLmNvdW50IHtcbiAgICAgICAgb3BhY2l0eTogMDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAuY2FydC1pbWFnZSB7XG4gICAgICB0cmFuc2Zvcm06IHNjYWxlKDApO1xuXG4gICAgICA+IC5pbWFnZS13cmFwcGVyIHtcbiAgICAgICAgdHJhbnNmb3JtOiBzY2FsZSgwKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICAmLWxlYXZlLWFjdGl2ZSB7XG4gICAgdHJhbnNpdGlvbjogMC43cyBjdWJpYy1iZXppZXIoMC43OSwgMC4wMSwgMC4yMiwgMSk7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICB9XG5cbiAgJi1sZWF2ZS10byB7XG4gICAgdHJhbnNmb3JtOiBzY2FsZSgwKTtcbiAgICBvcGFjaXR5OiAwO1xuICB9XG5cbiAgJi1tb3ZlIHtcbiAgICB0cmFuc2l0aW9uOiAwLjdzIGN1YmljLWJlemllcigwLjc5LCAwLjAxLCAwLjIyLCAxKTtcbiAgfVxufVxuXG4ubm9Db250ZW50IHtcbiAgJi1lbnRlci1hY3RpdmUsXG4gICYtbGVhdmUtYWN0aXZlIHtcbiAgICB0cmFuc2l0aW9uOiBvcGFjaXR5IDAuNXM7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICB9XG5cbiAgJi1lbnRlcixcbiAgJi1sZWF2ZS10byB7XG4gICAgb3BhY2l0eTogMDtcbiAgfVxufVxuPC9zdHlsZT5cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQTZDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=script&lang=js&\n"); /***/ }), /***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/pug-plain-loader/index.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug&": /*!********************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/pug-plain-loader!./node_modules/vue-loader/lib??vue-loader-options!/tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug& ***! \********************************************************************************************************************************************************************************************************************************************/ /*! exports provided: render, staticRenderFns */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"div\", { staticClass: \"wrapper\" }, [\n _c(\"div\", { staticClass: \"screen -left\" }, [\n _vm._m(0),\n _c(\"div\", { staticClass: \"title\" }, [_vm._v(\"Picked items\")]),\n _c(\n \"div\",\n { staticClass: \"shop-items\" },\n _vm._l(_vm.shopItems, function(item) {\n return _c(\"div\", { staticClass: \"item\" }, [\n _c(\"div\", { staticClass: \"item-block\" }, [\n _c(\n \"div\",\n {\n staticClass: \"image-area\",\n style: { backgroundColor: item.color }\n },\n [\n _c(\"img\", {\n staticClass: \"image\",\n attrs: { src: item.image }\n })\n ]\n ),\n _c(\"div\", { staticClass: \"name\" }, [_vm._v(_vm._s(item.name))]),\n _c(\"div\", { staticClass: \"description\" }, [\n _vm._v(_vm._s(item.description))\n ]),\n _c(\"div\", { staticClass: \"bottom-area\" }, [\n _c(\"div\", { staticClass: \"price\" }, [\n _vm._v(\"$\" + _vm._s(item.price))\n ]),\n _c(\n \"div\",\n {\n ref: \"addButton\" + item.id,\n refInFor: true,\n staticClass: \"button\",\n class: { \"-active\": item.inCart },\n on: {\n click: function($event) {\n return _vm.addToCart(item)\n }\n }\n },\n [\n _c(\n \"transition\",\n { attrs: { name: \"buttonText\", mode: \"out-in\" } },\n [\n !item.inCart\n ? _c(\"p\", [_vm._v(\"ADD TO CART\")])\n : _c(\"div\", { staticClass: \"cover\" }, [\n _c(\"div\", { staticClass: \"check\" })\n ])\n ]\n )\n ],\n 1\n )\n ])\n ])\n ])\n }),\n 0\n )\n ]),\n _c(\n \"div\",\n { ref: \"cartItems\", staticClass: \"screen -right\" },\n [\n _vm._m(1),\n _c(\"div\", { staticClass: \"title\" }, [_vm._v(\"Your cart\")]),\n _c(\"transition\", { attrs: { name: \"noContent\" } }, [\n _vm.$data.cartItems.length === 0\n ? _c(\"div\", { staticClass: \"no-content\" }, [\n _c(\"p\", { staticClass: \"text\" }, [\n _vm._v(\"Your cart is empty.\")\n ])\n ])\n : _vm._e()\n ]),\n _c(\n \"div\",\n { staticClass: \"cart-items\" },\n [\n _c(\n \"transition-group\",\n { attrs: { name: \"cartList\", tag: \"div\" } },\n _vm._l(_vm.$data.cartItems, function(item) {\n return _c(\"div\", { key: item.id, staticClass: \"cart-item\" }, [\n _c(\"div\", { staticClass: \"left\" }, [\n _c(\"div\", { staticClass: \"cart-image\" }, [\n _c(\"div\", { staticClass: \"image-wrapper\" }, [\n _c(\"img\", {\n staticClass: \"image\",\n attrs: { src: item.image }\n })\n ])\n ])\n ]),\n _c(\"div\", { staticClass: \"right\" }, [\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(_vm._s(item.name))\n ]),\n _c(\"div\", { staticClass: \"price\" }, [\n _vm._v(\"$\" + _vm._s(item.price))\n ]),\n _c(\"div\", { staticClass: \"count\" }, [\n _c(\n \"div\",\n {\n staticClass: \"button\",\n on: {\n click: function($event) {\n return _vm.decrement(item)\n }\n }\n },\n [_vm._v(\"<\")]\n ),\n _c(\"div\", { staticClass: \"number\" }, [\n _vm._v(_vm._s(item.count))\n ]),\n _c(\n \"div\",\n {\n staticClass: \"button\",\n on: {\n click: function($event) {\n return _vm.increment(item)\n }\n }\n },\n [_vm._v(\">\")]\n )\n ])\n ])\n ])\n }),\n 0\n )\n ],\n 1\n )\n ],\n 1\n )\n ])\n}\nvar staticRenderFns = [\n function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"div\", { staticClass: \"app-bar\" }, [\n _c(\"img\", {\n staticClass: \"logo\",\n attrs: {\n src:\n \"https://s3-us-west-2.amazonaws.com/s.cdpn.io/1315882/pngwave.png\"\n }\n })\n ])\n },\n function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"div\", { staticClass: \"app-bar\" }, [\n _c(\"img\", {\n staticClass: \"logo\",\n attrs: {\n src:\n \"https://s3-us-west-2.amazonaws.com/s.cdpn.io/1315882/pngwave.png\"\n }\n })\n ])\n }\n]\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy90ZW1wbGF0ZUxvYWRlci5qcz8hLi9ub2RlX21vZHVsZXMvcHVnLXBsYWluLWxvYWRlci9pbmRleC5qcyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi4vLi4vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/dnVlJnR5cGU9dGVtcGxhdGUmaWQ9MDc1NWFlZDUmbGFuZz1wdWcmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8vdG1wL2NvZGVwZW4vdnVlanMvc3JjL3Blbi52dWU/NWQ3MCJdLCJzb3VyY2VzQ29udGVudCI6WyJ2YXIgcmVuZGVyID0gZnVuY3Rpb24oKSB7XG4gIHZhciBfdm0gPSB0aGlzXG4gIHZhciBfaCA9IF92bS4kY3JlYXRlRWxlbWVudFxuICB2YXIgX2MgPSBfdm0uX3NlbGYuX2MgfHwgX2hcbiAgcmV0dXJuIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwid3JhcHBlclwiIH0sIFtcbiAgICBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcInNjcmVlbiAtbGVmdFwiIH0sIFtcbiAgICAgIF92bS5fbSgwKSxcbiAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwidGl0bGVcIiB9LCBbX3ZtLl92KFwiUGlja2VkIGl0ZW1zXCIpXSksXG4gICAgICBfYyhcbiAgICAgICAgXCJkaXZcIixcbiAgICAgICAgeyBzdGF0aWNDbGFzczogXCJzaG9wLWl0ZW1zXCIgfSxcbiAgICAgICAgX3ZtLl9sKF92bS5zaG9wSXRlbXMsIGZ1bmN0aW9uKGl0ZW0pIHtcbiAgICAgICAgICByZXR1cm4gX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJpdGVtXCIgfSwgW1xuICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJpdGVtLWJsb2NrXCIgfSwgW1xuICAgICAgICAgICAgICBfYyhcbiAgICAgICAgICAgICAgICBcImRpdlwiLFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgIHN0YXRpY0NsYXNzOiBcImltYWdlLWFyZWFcIixcbiAgICAgICAgICAgICAgICAgIHN0eWxlOiB7IGJhY2tncm91bmRDb2xvcjogaXRlbS5jb2xvciB9XG4gICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICBfYyhcImltZ1wiLCB7XG4gICAgICAgICAgICAgICAgICAgIHN0YXRpY0NsYXNzOiBcImltYWdlXCIsXG4gICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7IHNyYzogaXRlbS5pbWFnZSB9XG4gICAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgICAgIF1cbiAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJuYW1lXCIgfSwgW192bS5fdihfdm0uX3MoaXRlbS5uYW1lKSldKSxcbiAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJkZXNjcmlwdGlvblwiIH0sIFtcbiAgICAgICAgICAgICAgICBfdm0uX3YoX3ZtLl9zKGl0ZW0uZGVzY3JpcHRpb24pKVxuICAgICAgICAgICAgICBdKSxcbiAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJib3R0b20tYXJlYVwiIH0sIFtcbiAgICAgICAgICAgICAgICBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcInByaWNlXCIgfSwgW1xuICAgICAgICAgICAgICAgICAgX3ZtLl92KFwiJFwiICsgX3ZtLl9zKGl0ZW0ucHJpY2UpKVxuICAgICAgICAgICAgICAgIF0pLFxuICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgXCJkaXZcIixcbiAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgcmVmOiBcImFkZEJ1dHRvblwiICsgaXRlbS5pZCxcbiAgICAgICAgICAgICAgICAgICAgcmVmSW5Gb3I6IHRydWUsXG4gICAgICAgICAgICAgICAgICAgIHN0YXRpY0NsYXNzOiBcImJ1dHRvblwiLFxuICAgICAgICAgICAgICAgICAgICBjbGFzczogeyBcIi1hY3RpdmVcIjogaXRlbS5pbkNhcnQgfSxcbiAgICAgICAgICAgICAgICAgICAgb246IHtcbiAgICAgICAgICAgICAgICAgICAgICBjbGljazogZnVuY3Rpb24oJGV2ZW50KSB7XG4gICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gX3ZtLmFkZFRvQ2FydChpdGVtKVxuICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgXCJ0cmFuc2l0aW9uXCIsXG4gICAgICAgICAgICAgICAgICAgICAgeyBhdHRyczogeyBuYW1lOiBcImJ1dHRvblRleHRcIiwgbW9kZTogXCJvdXQtaW5cIiB9IH0sXG4gICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgIWl0ZW0uaW5DYXJ0XG4gICAgICAgICAgICAgICAgICAgICAgICAgID8gX2MoXCJwXCIsIFtfdm0uX3YoXCJBREQgVE8gQ0FSVFwiKV0pXG4gICAgICAgICAgICAgICAgICAgICAgICAgIDogX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJjb3ZlclwiIH0sIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwiY2hlY2tcIiB9KVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgXSlcbiAgICAgICAgICAgIF0pXG4gICAgICAgICAgXSlcbiAgICAgICAgfSksXG4gICAgICAgIDBcbiAgICAgIClcbiAgICBdKSxcbiAgICBfYyhcbiAgICAgIFwiZGl2XCIsXG4gICAgICB7IHJlZjogXCJjYXJ0SXRlbXNcIiwgc3RhdGljQ2xhc3M6IFwic2NyZWVuIC1yaWdodFwiIH0sXG4gICAgICBbXG4gICAgICAgIF92bS5fbSgxKSxcbiAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJ0aXRsZVwiIH0sIFtfdm0uX3YoXCJZb3VyIGNhcnRcIildKSxcbiAgICAgICAgX2MoXCJ0cmFuc2l0aW9uXCIsIHsgYXR0cnM6IHsgbmFtZTogXCJub0NvbnRlbnRcIiB9IH0sIFtcbiAgICAgICAgICBfdm0uJGRhdGEuY2FydEl0ZW1zLmxlbmd0aCA9PT0gMFxuICAgICAgICAgICAgPyBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcIm5vLWNvbnRlbnRcIiB9LCBbXG4gICAgICAgICAgICAgICAgX2MoXCJwXCIsIHsgc3RhdGljQ2xhc3M6IFwidGV4dFwiIH0sIFtcbiAgICAgICAgICAgICAgICAgIF92bS5fdihcIllvdXIgY2FydCBpcyBlbXB0eS5cIilcbiAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgOiBfdm0uX2UoKVxuICAgICAgICBdKSxcbiAgICAgICAgX2MoXG4gICAgICAgICAgXCJkaXZcIixcbiAgICAgICAgICB7IHN0YXRpY0NsYXNzOiBcImNhcnQtaXRlbXNcIiB9LFxuICAgICAgICAgIFtcbiAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICBcInRyYW5zaXRpb24tZ3JvdXBcIixcbiAgICAgICAgICAgICAgeyBhdHRyczogeyBuYW1lOiBcImNhcnRMaXN0XCIsIHRhZzogXCJkaXZcIiB9IH0sXG4gICAgICAgICAgICAgIF92bS5fbChfdm0uJGRhdGEuY2FydEl0ZW1zLCBmdW5jdGlvbihpdGVtKSB7XG4gICAgICAgICAgICAgICAgcmV0dXJuIF9jKFwiZGl2XCIsIHsga2V5OiBpdGVtLmlkLCBzdGF0aWNDbGFzczogXCJjYXJ0LWl0ZW1cIiB9LCBbXG4gICAgICAgICAgICAgICAgICBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcImxlZnRcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwiY2FydC1pbWFnZVwiIH0sIFtcbiAgICAgICAgICAgICAgICAgICAgICBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcImltYWdlLXdyYXBwZXJcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgICAgICBfYyhcImltZ1wiLCB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgIHN0YXRpY0NsYXNzOiBcImltYWdlXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7IHNyYzogaXRlbS5pbWFnZSB9XG4gICAgICAgICAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICBdKSxcbiAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwicmlnaHRcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwibmFtZVwiIH0sIFtcbiAgICAgICAgICAgICAgICAgICAgICBfdm0uX3YoX3ZtLl9zKGl0ZW0ubmFtZSkpXG4gICAgICAgICAgICAgICAgICAgIF0pLFxuICAgICAgICAgICAgICAgICAgICBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcInByaWNlXCIgfSwgW1xuICAgICAgICAgICAgICAgICAgICAgIF92bS5fdihcIiRcIiArIF92bS5fcyhpdGVtLnByaWNlKSlcbiAgICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwiY291bnRcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICBcImRpdlwiLFxuICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICBzdGF0aWNDbGFzczogXCJidXR0b25cIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgb246IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGljazogZnVuY3Rpb24oJGV2ZW50KSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gX3ZtLmRlY3JlbWVudChpdGVtKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgIFtfdm0uX3YoXCI8XCIpXVxuICAgICAgICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJudW1iZXJcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgICAgICBfdm0uX3YoX3ZtLl9zKGl0ZW0uY291bnQpKVxuICAgICAgICAgICAgICAgICAgICAgIF0pLFxuICAgICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgXCJkaXZcIixcbiAgICAgICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgc3RhdGljQ2xhc3M6IFwiYnV0dG9uXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgIG9uOiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xpY2s6IGZ1bmN0aW9uKCRldmVudCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIF92bS5pbmNyZW1lbnQoaXRlbSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICBbX3ZtLl92KFwiPlwiKV1cbiAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAwXG4gICAgICAgICAgICApXG4gICAgICAgICAgXSxcbiAgICAgICAgICAxXG4gICAgICAgIClcbiAgICAgIF0sXG4gICAgICAxXG4gICAgKVxuICBdKVxufVxudmFyIHN0YXRpY1JlbmRlckZucyA9IFtcbiAgZnVuY3Rpb24oKSB7XG4gICAgdmFyIF92bSA9IHRoaXNcbiAgICB2YXIgX2ggPSBfdm0uJGNyZWF0ZUVsZW1lbnRcbiAgICB2YXIgX2MgPSBfdm0uX3NlbGYuX2MgfHwgX2hcbiAgICByZXR1cm4gX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJhcHAtYmFyXCIgfSwgW1xuICAgICAgX2MoXCJpbWdcIiwge1xuICAgICAgICBzdGF0aWNDbGFzczogXCJsb2dvXCIsXG4gICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgc3JjOlxuICAgICAgICAgICAgXCJodHRwczovL3MzLXVzLXdlc3QtMi5hbWF6b25hd3MuY29tL3MuY2Rwbi5pby8xMzE1ODgyL3BuZ3dhdmUucG5nXCJcbiAgICAgICAgfVxuICAgICAgfSlcbiAgICBdKVxuICB9LFxuICBmdW5jdGlvbigpIHtcbiAgICB2YXIgX3ZtID0gdGhpc1xuICAgIHZhciBfaCA9IF92bS4kY3JlYXRlRWxlbWVudFxuICAgIHZhciBfYyA9IF92bS5fc2VsZi5fYyB8fCBfaFxuICAgIHJldHVybiBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcImFwcC1iYXJcIiB9LCBbXG4gICAgICBfYyhcImltZ1wiLCB7XG4gICAgICAgIHN0YXRpY0NsYXNzOiBcImxvZ29cIixcbiAgICAgICAgYXR0cnM6IHtcbiAgICAgICAgICBzcmM6XG4gICAgICAgICAgICBcImh0dHBzOi8vczMtdXMtd2VzdC0yLmFtYXpvbmF3cy5jb20vcy5jZHBuLmlvLzEzMTU4ODIvcG5nd2F2ZS5wbmdcIlxuICAgICAgICB9XG4gICAgICB9KVxuICAgIF0pXG4gIH1cbl1cbnJlbmRlci5fd2l0aFN0cmlwcGVkID0gdHJ1ZVxuXG5leHBvcnQgeyByZW5kZXIsIHN0YXRpY1JlbmRlckZucyB9Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/pug-plain-loader/index.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=template&id=0755aed5&lang=pug&\n"); /***/ }), /***/ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js": /*!********************************************************************!*\ !*** ./node_modules/vue-loader/lib/runtime/componentNormalizer.js ***! \********************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return normalizeComponent; });\n/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nfunction normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvcnVudGltZS9jb21wb25lbnROb3JtYWxpemVyLmpzLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9ydW50aW1lL2NvbXBvbmVudE5vcm1hbGl6ZXIuanM/Mjg3NyJdLCJzb3VyY2VzQ29udGVudCI6WyIvKiBnbG9iYWxzIF9fVlVFX1NTUl9DT05URVhUX18gKi9cblxuLy8gSU1QT1JUQU5UOiBEbyBOT1QgdXNlIEVTMjAxNSBmZWF0dXJlcyBpbiB0aGlzIGZpbGUgKGV4Y2VwdCBmb3IgbW9kdWxlcykuXG4vLyBUaGlzIG1vZHVsZSBpcyBhIHJ1bnRpbWUgdXRpbGl0eSBmb3IgY2xlYW5lciBjb21wb25lbnQgbW9kdWxlIG91dHB1dCBhbmQgd2lsbFxuLy8gYmUgaW5jbHVkZWQgaW4gdGhlIGZpbmFsIHdlYnBhY2sgdXNlciBidW5kbGUuXG5cbmV4cG9ydCBkZWZhdWx0IGZ1bmN0aW9uIG5vcm1hbGl6ZUNvbXBvbmVudCAoXG4gIHNjcmlwdEV4cG9ydHMsXG4gIHJlbmRlcixcbiAgc3RhdGljUmVuZGVyRm5zLFxuICBmdW5jdGlvbmFsVGVtcGxhdGUsXG4gIGluamVjdFN0eWxlcyxcbiAgc2NvcGVJZCxcbiAgbW9kdWxlSWRlbnRpZmllciwgLyogc2VydmVyIG9ubHkgKi9cbiAgc2hhZG93TW9kZSAvKiB2dWUtY2xpIG9ubHkgKi9cbikge1xuICAvLyBWdWUuZXh0ZW5kIGNvbnN0cnVjdG9yIGV4cG9ydCBpbnRlcm9wXG4gIHZhciBvcHRpb25zID0gdHlwZW9mIHNjcmlwdEV4cG9ydHMgPT09ICdmdW5jdGlvbidcbiAgICA/IHNjcmlwdEV4cG9ydHMub3B0aW9uc1xuICAgIDogc2NyaXB0RXhwb3J0c1xuXG4gIC8vIHJlbmRlciBmdW5jdGlvbnNcbiAgaWYgKHJlbmRlcikge1xuICAgIG9wdGlvbnMucmVuZGVyID0gcmVuZGVyXG4gICAgb3B0aW9ucy5zdGF0aWNSZW5kZXJGbnMgPSBzdGF0aWNSZW5kZXJGbnNcbiAgICBvcHRpb25zLl9jb21waWxlZCA9IHRydWVcbiAgfVxuXG4gIC8vIGZ1bmN0aW9uYWwgdGVtcGxhdGVcbiAgaWYgKGZ1bmN0aW9uYWxUZW1wbGF0ZSkge1xuICAgIG9wdGlvbnMuZnVuY3Rpb25hbCA9IHRydWVcbiAgfVxuXG4gIC8vIHNjb3BlZElkXG4gIGlmIChzY29wZUlkKSB7XG4gICAgb3B0aW9ucy5fc2NvcGVJZCA9ICdkYXRhLXYtJyArIHNjb3BlSWRcbiAgfVxuXG4gIHZhciBob29rXG4gIGlmIChtb2R1bGVJZGVudGlmaWVyKSB7IC8vIHNlcnZlciBidWlsZFxuICAgIGhvb2sgPSBmdW5jdGlvbiAoY29udGV4dCkge1xuICAgICAgLy8gMi4zIGluamVjdGlvblxuICAgICAgY29udGV4dCA9XG4gICAgICAgIGNvbnRleHQgfHwgLy8gY2FjaGVkIGNhbGxcbiAgICAgICAgKHRoaXMuJHZub2RlICYmIHRoaXMuJHZub2RlLnNzckNvbnRleHQpIHx8IC8vIHN0YXRlZnVsXG4gICAgICAgICh0aGlzLnBhcmVudCAmJiB0aGlzLnBhcmVudC4kdm5vZGUgJiYgdGhpcy5wYXJlbnQuJHZub2RlLnNzckNvbnRleHQpIC8vIGZ1bmN0aW9uYWxcbiAgICAgIC8vIDIuMiB3aXRoIHJ1bkluTmV3Q29udGV4dDogdHJ1ZVxuICAgICAgaWYgKCFjb250ZXh0ICYmIHR5cGVvZiBfX1ZVRV9TU1JfQ09OVEVYVF9fICE9PSAndW5kZWZpbmVkJykge1xuICAgICAgICBjb250ZXh0ID0gX19WVUVfU1NSX0NPTlRFWFRfX1xuICAgICAgfVxuICAgICAgLy8gaW5qZWN0IGNvbXBvbmVudCBzdHlsZXNcbiAgICAgIGlmIChpbmplY3RTdHlsZXMpIHtcbiAgICAgICAgaW5qZWN0U3R5bGVzLmNhbGwodGhpcywgY29udGV4dClcbiAgICAgIH1cbiAgICAgIC8vIHJlZ2lzdGVyIGNvbXBvbmVudCBtb2R1bGUgaWRlbnRpZmllciBmb3IgYXN5bmMgY2h1bmsgaW5mZXJyZW5jZVxuICAgICAgaWYgKGNvbnRleHQgJiYgY29udGV4dC5fcmVnaXN0ZXJlZENvbXBvbmVudHMpIHtcbiAgICAgICAgY29udGV4dC5fcmVnaXN0ZXJlZENvbXBvbmVudHMuYWRkKG1vZHVsZUlkZW50aWZpZXIpXG4gICAgICB9XG4gICAgfVxuICAgIC8vIHVzZWQgYnkgc3NyIGluIGNhc2UgY29tcG9uZW50IGlzIGNhY2hlZCBhbmQgYmVmb3JlQ3JlYXRlXG4gICAgLy8gbmV2ZXIgZ2V0cyBjYWxsZWRcbiAgICBvcHRpb25zLl9zc3JSZWdpc3RlciA9IGhvb2tcbiAgfSBlbHNlIGlmIChpbmplY3RTdHlsZXMpIHtcbiAgICBob29rID0gc2hhZG93TW9kZVxuICAgICAgPyBmdW5jdGlvbiAoKSB7IGluamVjdFN0eWxlcy5jYWxsKHRoaXMsIHRoaXMuJHJvb3QuJG9wdGlvbnMuc2hhZG93Um9vdCkgfVxuICAgICAgOiBpbmplY3RTdHlsZXNcbiAgfVxuXG4gIGlmIChob29rKSB7XG4gICAgaWYgKG9wdGlvbnMuZnVuY3Rpb25hbCkge1xuICAgICAgLy8gZm9yIHRlbXBsYXRlLW9ubHkgaG90LXJlbG9hZCBiZWNhdXNlIGluIHRoYXQgY2FzZSB0aGUgcmVuZGVyIGZuIGRvZXNuJ3RcbiAgICAgIC8vIGdvIHRocm91Z2ggdGhlIG5vcm1hbGl6ZXJcbiAgICAgIG9wdGlvbnMuX2luamVjdFN0eWxlcyA9IGhvb2tcbiAgICAgIC8vIHJlZ2lzdGVyIGZvciBmdW5jdGlvbmFsIGNvbXBvbmVudCBpbiB2dWUgZmlsZVxuICAgICAgdmFyIG9yaWdpbmFsUmVuZGVyID0gb3B0aW9ucy5yZW5kZXJcbiAgICAgIG9wdGlvbnMucmVuZGVyID0gZnVuY3Rpb24gcmVuZGVyV2l0aFN0eWxlSW5qZWN0aW9uIChoLCBjb250ZXh0KSB7XG4gICAgICAgIGhvb2suY2FsbChjb250ZXh0KVxuICAgICAgICByZXR1cm4gb3JpZ2luYWxSZW5kZXIoaCwgY29udGV4dClcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgLy8gaW5qZWN0IGNvbXBvbmVudCByZWdpc3RyYXRpb24gYXMgYmVmb3JlQ3JlYXRlIGhvb2tcbiAgICAgIHZhciBleGlzdGluZyA9IG9wdGlvbnMuYmVmb3JlQ3JlYXRlXG4gICAgICBvcHRpb25zLmJlZm9yZUNyZWF0ZSA9IGV4aXN0aW5nXG4gICAgICAgID8gW10uY29uY2F0KGV4aXN0aW5nLCBob29rKVxuICAgICAgICA6IFtob29rXVxuICAgIH1cbiAgfVxuXG4gIHJldHVybiB7XG4gICAgZXhwb3J0czogc2NyaXB0RXhwb3J0cyxcbiAgICBvcHRpb25zOiBvcHRpb25zXG4gIH1cbn1cbiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js\n"); /***/ }), /***/ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&": /*!************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/vue-style-loader!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!/tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss& ***! \************************************************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { eval("// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = __webpack_require__(/*! !../../../../var/task/node_modules/css-loader/dist/cjs.js!../../../../var/task/node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../var/task/node_modules/sass-loader/dist/cjs.js!../../../../var/task/node_modules/vue-loader/lib??vue-loader-options!./pen.vue?vue&type=style&index=0&lang=scss& */ \"./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&\");\nif(typeof content === 'string') content = [[module.i, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = __webpack_require__(/*! ../../../../var/task/node_modules/vue-style-loader/lib/addStylesClient.js */ \"./node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"a91b7db6\", content, false, {});\n// Hot Module Replacement\nif(false) {}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9pbmRleC5qcyEuL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4vbm9kZV9tb2R1bGVzL3Nhc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuLi8uLi90bXAvY29kZXBlbi92dWVqcy9zcmMvcGVuLnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmxhbmc9c2NzcyYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9Db2RlUGVuVnVlQ29tcG9uZW50Ly90bXAvY29kZXBlbi92dWVqcy9zcmMvcGVuLnZ1ZT9mNDMyIl0sInNvdXJjZXNDb250ZW50IjpbIi8vIHN0eWxlLWxvYWRlcjogQWRkcyBzb21lIGNzcyB0byB0aGUgRE9NIGJ5IGFkZGluZyBhIDxzdHlsZT4gdGFnXG5cbi8vIGxvYWQgdGhlIHN0eWxlc1xudmFyIGNvbnRlbnQgPSByZXF1aXJlKFwiISEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9kaXN0L2Nqcy5qcyEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi4vLi4vLi4vLi4vdmFyL3Rhc2svbm9kZV9tb2R1bGVzL3Nhc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vcGVuLnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmxhbmc9c2NzcyZcIik7XG5pZih0eXBlb2YgY29udGVudCA9PT0gJ3N0cmluZycpIGNvbnRlbnQgPSBbW21vZHVsZS5pZCwgY29udGVudCwgJyddXTtcbmlmKGNvbnRlbnQubG9jYWxzKSBtb2R1bGUuZXhwb3J0cyA9IGNvbnRlbnQubG9jYWxzO1xuLy8gYWRkIHRoZSBzdHlsZXMgdG8gdGhlIERPTVxudmFyIGFkZCA9IHJlcXVpcmUoXCIhLi4vLi4vLi4vLi4vdmFyL3Rhc2svbm9kZV9tb2R1bGVzL3Z1ZS1zdHlsZS1sb2FkZXIvbGliL2FkZFN0eWxlc0NsaWVudC5qc1wiKS5kZWZhdWx0XG52YXIgdXBkYXRlID0gYWRkKFwiYTkxYjdkYjZcIiwgY29udGVudCwgZmFsc2UsIHt9KTtcbi8vIEhvdCBNb2R1bGUgUmVwbGFjZW1lbnRcbmlmKG1vZHVsZS5ob3QpIHtcbiAvLyBXaGVuIHRoZSBzdHlsZXMgY2hhbmdlLCB1cGRhdGUgdGhlIDxzdHlsZT4gdGFnc1xuIGlmKCFjb250ZW50LmxvY2Fscykge1xuICAgbW9kdWxlLmhvdC5hY2NlcHQoXCIhIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvc2Fzcy1sb2FkZXIvZGlzdC9janMuanMhLi4vLi4vLi4vLi4vdmFyL3Rhc2svbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9wZW4udnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmbGFuZz1zY3NzJlwiLCBmdW5jdGlvbigpIHtcbiAgICAgdmFyIG5ld0NvbnRlbnQgPSByZXF1aXJlKFwiISEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9kaXN0L2Nqcy5qcyEuLi8uLi8uLi8uLi92YXIvdGFzay9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi4vLi4vLi4vLi4vdmFyL3Rhc2svbm9kZV9tb2R1bGVzL3Nhc3MtbG9hZGVyL2Rpc3QvY2pzLmpzIS4uLy4uLy4uLy4uL3Zhci90YXNrL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vcGVuLnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmxhbmc9c2NzcyZcIik7XG4gICAgIGlmKHR5cGVvZiBuZXdDb250ZW50ID09PSAnc3RyaW5nJykgbmV3Q29udGVudCA9IFtbbW9kdWxlLmlkLCBuZXdDb250ZW50LCAnJ11dO1xuICAgICB1cGRhdGUobmV3Q29udGVudCk7XG4gICB9KTtcbiB9XG4gLy8gV2hlbiB0aGUgbW9kdWxlIGlzIGRpc3Bvc2VkLCByZW1vdmUgdGhlIDxzdHlsZT4gdGFnc1xuIG1vZHVsZS5ob3QuZGlzcG9zZShmdW5jdGlvbigpIHsgdXBkYXRlKCk7IH0pO1xufSJdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!../../tmp/codepen/vuejs/src/pen.vue?vue&type=style&index=0&lang=scss&\n"); /***/ }), /***/ "./node_modules/vue-style-loader/lib/addStylesClient.js": /*!**************************************************************!*\ !*** ./node_modules/vue-style-loader/lib/addStylesClient.js ***! \**************************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return addStylesClient; });\n/* harmony import */ var _listToStyles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./listToStyles */ \"./node_modules/vue-style-loader/lib/listToStyles.js\");\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n Modified by Evan You @yyx990803\n*/\n\n\n\nvar hasDocument = typeof document !== 'undefined'\n\nif (typeof DEBUG !== 'undefined' && DEBUG) {\n if (!hasDocument) {\n throw new Error(\n 'vue-style-loader cannot be used in a non-browser environment. ' +\n \"Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\"\n ) }\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array<StyleObjectPart>\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nvar stylesInDom = {/*\n [id: number]: {\n id: number,\n refs: number,\n parts: Array<(obj?: StyleObjectPart) => void>\n }\n*/}\n\nvar head = hasDocument && (document.head || document.getElementsByTagName('head')[0])\nvar singletonElement = null\nvar singletonCounter = 0\nvar isProduction = false\nvar noop = function () {}\nvar options = null\nvar ssrIdKey = 'data-vue-ssr-id'\n\n// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>\n// tags it will allow on a page\nvar isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase())\n\nfunction addStylesClient (parentId, list, _isProduction, _options) {\n isProduction = _isProduction\n\n options = _options || {}\n\n var styles = Object(_listToStyles__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(parentId, list)\n addStylesToDom(styles)\n\n return function update (newList) {\n var mayRemove = []\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var domStyle = stylesInDom[item.id]\n domStyle.refs--\n mayRemove.push(domStyle)\n }\n if (newList) {\n styles = Object(_listToStyles__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(parentId, newList)\n addStylesToDom(styles)\n } else {\n styles = []\n }\n for (var i = 0; i < mayRemove.length; i++) {\n var domStyle = mayRemove[i]\n if (domStyle.refs === 0) {\n for (var j = 0; j < domStyle.parts.length; j++) {\n domStyle.parts[j]()\n }\n delete stylesInDom[domStyle.id]\n }\n }\n }\n}\n\nfunction addStylesToDom (styles /* Array<StyleObject> */) {\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var domStyle = stylesInDom[item.id]\n if (domStyle) {\n domStyle.refs++\n for (var j = 0; j < domStyle.parts.length; j++) {\n domStyle.parts[j](item.parts[j])\n }\n for (; j < item.parts.length; j++) {\n domStyle.parts.push(addStyle(item.parts[j]))\n }\n if (domStyle.parts.length > item.parts.length) {\n domStyle.parts.length = item.parts.length\n }\n } else {\n var parts = []\n for (var j = 0; j < item.parts.length; j++) {\n parts.push(addStyle(item.parts[j]))\n }\n stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts }\n }\n }\n}\n\nfunction createStyleElement () {\n var styleElement = document.createElement('style')\n styleElement.type = 'text/css'\n head.appendChild(styleElement)\n return styleElement\n}\n\nfunction addStyle (obj /* StyleObjectPart */) {\n var update, remove\n var styleElement = document.querySelector('style[' + ssrIdKey + '~=\"' + obj.id + '\"]')\n\n if (styleElement) {\n if (isProduction) {\n // has SSR styles and in production mode.\n // simply do nothing.\n return noop\n } else {\n // has SSR styles but in dev mode.\n // for some reason Chrome can't handle source map in server-rendered\n // style tags - source maps in <style> only works if the style tag is\n // created and inserted dynamically. So we remove the server rendered\n // styles and inject new ones.\n styleElement.parentNode.removeChild(styleElement)\n }\n }\n\n if (isOldIE) {\n // use singleton mode for IE9.\n var styleIndex = singletonCounter++\n styleElement = singletonElement || (singletonElement = createStyleElement())\n update = applyToSingletonTag.bind(null, styleElement, styleIndex, false)\n remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true)\n } else {\n // use multi-style-tag mode in all other cases\n styleElement = createStyleElement()\n update = applyToTag.bind(null, styleElement)\n remove = function () {\n styleElement.parentNode.removeChild(styleElement)\n }\n }\n\n update(obj)\n\n return function updateStyle (newObj /* StyleObjectPart */) {\n if (newObj) {\n if (newObj.css === obj.css &&\n newObj.media === obj.media &&\n newObj.sourceMap === obj.sourceMap) {\n return\n }\n update(obj = newObj)\n } else {\n remove()\n }\n }\n}\n\nvar replaceText = (function () {\n var textStore = []\n\n return function (index, replacement) {\n textStore[index] = replacement\n return textStore.filter(Boolean).join('\\n')\n }\n})()\n\nfunction applyToSingletonTag (styleElement, index, remove, obj) {\n var css = remove ? '' : obj.css\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = replaceText(index, css)\n } else {\n var cssNode = document.createTextNode(css)\n var childNodes = styleElement.childNodes\n if (childNodes[index]) styleElement.removeChild(childNodes[index])\n if (childNodes.length) {\n styleElement.insertBefore(cssNode, childNodes[index])\n } else {\n styleElement.appendChild(cssNode)\n }\n }\n}\n\nfunction applyToTag (styleElement, obj) {\n var css = obj.css\n var media = obj.media\n var sourceMap = obj.sourceMap\n\n if (media) {\n styleElement.setAttribute('media', media)\n }\n if (options.ssrId) {\n styleElement.setAttribute(ssrIdKey, obj.id)\n }\n\n if (sourceMap) {\n // https://developer.chrome.com/devtools/docs/javascript-debugging\n // this makes source maps inside style tags work properly in Chrome\n css += '\\n/*# sourceURL=' + sourceMap.sources[0] + ' */'\n // http://stackoverflow.com/a/26603875\n css += '\\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'\n }\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild)\n }\n styleElement.appendChild(document.createTextNode(css))\n }\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9saWIvYWRkU3R5bGVzQ2xpZW50LmpzLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8uL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2xpYi9hZGRTdHlsZXNDbGllbnQuanM/NDk5ZSJdLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICBNSVQgTGljZW5zZSBodHRwOi8vd3d3Lm9wZW5zb3VyY2Uub3JnL2xpY2Vuc2VzL21pdC1saWNlbnNlLnBocFxuICBBdXRob3IgVG9iaWFzIEtvcHBlcnMgQHNva3JhXG4gIE1vZGlmaWVkIGJ5IEV2YW4gWW91IEB5eXg5OTA4MDNcbiovXG5cbmltcG9ydCBsaXN0VG9TdHlsZXMgZnJvbSAnLi9saXN0VG9TdHlsZXMnXG5cbnZhciBoYXNEb2N1bWVudCA9IHR5cGVvZiBkb2N1bWVudCAhPT0gJ3VuZGVmaW5lZCdcblxuaWYgKHR5cGVvZiBERUJVRyAhPT0gJ3VuZGVmaW5lZCcgJiYgREVCVUcpIHtcbiAgaWYgKCFoYXNEb2N1bWVudCkge1xuICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAndnVlLXN0eWxlLWxvYWRlciBjYW5ub3QgYmUgdXNlZCBpbiBhIG5vbi1icm93c2VyIGVudmlyb25tZW50LiAnICtcbiAgICBcIlVzZSB7IHRhcmdldDogJ25vZGUnIH0gaW4geW91ciBXZWJwYWNrIGNvbmZpZyB0byBpbmRpY2F0ZSBhIHNlcnZlci1yZW5kZXJpbmcgZW52aXJvbm1lbnQuXCJcbiAgKSB9XG59XG5cbi8qXG50eXBlIFN0eWxlT2JqZWN0ID0ge1xuICBpZDogbnVtYmVyO1xuICBwYXJ0czogQXJyYXk8U3R5bGVPYmplY3RQYXJ0PlxufVxuXG50eXBlIFN0eWxlT2JqZWN0UGFydCA9IHtcbiAgY3NzOiBzdHJpbmc7XG4gIG1lZGlhOiBzdHJpbmc7XG4gIHNvdXJjZU1hcDogP3N0cmluZ1xufVxuKi9cblxudmFyIHN0eWxlc0luRG9tID0gey8qXG4gIFtpZDogbnVtYmVyXToge1xuICAgIGlkOiBudW1iZXIsXG4gICAgcmVmczogbnVtYmVyLFxuICAgIHBhcnRzOiBBcnJheTwob2JqPzogU3R5bGVPYmplY3RQYXJ0KSA9PiB2b2lkPlxuICB9XG4qL31cblxudmFyIGhlYWQgPSBoYXNEb2N1bWVudCAmJiAoZG9jdW1lbnQuaGVhZCB8fCBkb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZSgnaGVhZCcpWzBdKVxudmFyIHNpbmdsZXRvbkVsZW1lbnQgPSBudWxsXG52YXIgc2luZ2xldG9uQ291bnRlciA9IDBcbnZhciBpc1Byb2R1Y3Rpb24gPSBmYWxzZVxudmFyIG5vb3AgPSBmdW5jdGlvbiAoKSB7fVxudmFyIG9wdGlvbnMgPSBudWxsXG52YXIgc3NySWRLZXkgPSAnZGF0YS12dWUtc3NyLWlkJ1xuXG4vLyBGb3JjZSBzaW5nbGUtdGFnIHNvbHV0aW9uIG9uIElFNi05LCB3aGljaCBoYXMgYSBoYXJkIGxpbWl0IG9uIHRoZSAjIG9mIDxzdHlsZT5cbi8vIHRhZ3MgaXQgd2lsbCBhbGxvdyBvbiBhIHBhZ2VcbnZhciBpc09sZElFID0gdHlwZW9mIG5hdmlnYXRvciAhPT0gJ3VuZGVmaW5lZCcgJiYgL21zaWUgWzYtOV1cXGIvLnRlc3QobmF2aWdhdG9yLnVzZXJBZ2VudC50b0xvd2VyQ2FzZSgpKVxuXG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBhZGRTdHlsZXNDbGllbnQgKHBhcmVudElkLCBsaXN0LCBfaXNQcm9kdWN0aW9uLCBfb3B0aW9ucykge1xuICBpc1Byb2R1Y3Rpb24gPSBfaXNQcm9kdWN0aW9uXG5cbiAgb3B0aW9ucyA9IF9vcHRpb25zIHx8IHt9XG5cbiAgdmFyIHN0eWxlcyA9IGxpc3RUb1N0eWxlcyhwYXJlbnRJZCwgbGlzdClcbiAgYWRkU3R5bGVzVG9Eb20oc3R5bGVzKVxuXG4gIHJldHVybiBmdW5jdGlvbiB1cGRhdGUgKG5ld0xpc3QpIHtcbiAgICB2YXIgbWF5UmVtb3ZlID0gW11cbiAgICBmb3IgKHZhciBpID0gMDsgaSA8IHN0eWxlcy5sZW5ndGg7IGkrKykge1xuICAgICAgdmFyIGl0ZW0gPSBzdHlsZXNbaV1cbiAgICAgIHZhciBkb21TdHlsZSA9IHN0eWxlc0luRG9tW2l0ZW0uaWRdXG4gICAgICBkb21TdHlsZS5yZWZzLS1cbiAgICAgIG1heVJlbW92ZS5wdXNoKGRvbVN0eWxlKVxuICAgIH1cbiAgICBpZiAobmV3TGlzdCkge1xuICAgICAgc3R5bGVzID0gbGlzdFRvU3R5bGVzKHBhcmVudElkLCBuZXdMaXN0KVxuICAgICAgYWRkU3R5bGVzVG9Eb20oc3R5bGVzKVxuICAgIH0gZWxzZSB7XG4gICAgICBzdHlsZXMgPSBbXVxuICAgIH1cbiAgICBmb3IgKHZhciBpID0gMDsgaSA8IG1heVJlbW92ZS5sZW5ndGg7IGkrKykge1xuICAgICAgdmFyIGRvbVN0eWxlID0gbWF5UmVtb3ZlW2ldXG4gICAgICBpZiAoZG9tU3R5bGUucmVmcyA9PT0gMCkge1xuICAgICAgICBmb3IgKHZhciBqID0gMDsgaiA8IGRvbVN0eWxlLnBhcnRzLmxlbmd0aDsgaisrKSB7XG4gICAgICAgICAgZG9tU3R5bGUucGFydHNbal0oKVxuICAgICAgICB9XG4gICAgICAgIGRlbGV0ZSBzdHlsZXNJbkRvbVtkb21TdHlsZS5pZF1cbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cblxuZnVuY3Rpb24gYWRkU3R5bGVzVG9Eb20gKHN0eWxlcyAvKiBBcnJheTxTdHlsZU9iamVjdD4gKi8pIHtcbiAgZm9yICh2YXIgaSA9IDA7IGkgPCBzdHlsZXMubGVuZ3RoOyBpKyspIHtcbiAgICB2YXIgaXRlbSA9IHN0eWxlc1tpXVxuICAgIHZhciBkb21TdHlsZSA9IHN0eWxlc0luRG9tW2l0ZW0uaWRdXG4gICAgaWYgKGRvbVN0eWxlKSB7XG4gICAgICBkb21TdHlsZS5yZWZzKytcbiAgICAgIGZvciAodmFyIGogPSAwOyBqIDwgZG9tU3R5bGUucGFydHMubGVuZ3RoOyBqKyspIHtcbiAgICAgICAgZG9tU3R5bGUucGFydHNbal0oaXRlbS5wYXJ0c1tqXSlcbiAgICAgIH1cbiAgICAgIGZvciAoOyBqIDwgaXRlbS5wYXJ0cy5sZW5ndGg7IGorKykge1xuICAgICAgICBkb21TdHlsZS5wYXJ0cy5wdXNoKGFkZFN0eWxlKGl0ZW0ucGFydHNbal0pKVxuICAgICAgfVxuICAgICAgaWYgKGRvbVN0eWxlLnBhcnRzLmxlbmd0aCA+IGl0ZW0ucGFydHMubGVuZ3RoKSB7XG4gICAgICAgIGRvbVN0eWxlLnBhcnRzLmxlbmd0aCA9IGl0ZW0ucGFydHMubGVuZ3RoXG4gICAgICB9XG4gICAgfSBlbHNlIHtcbiAgICAgIHZhciBwYXJ0cyA9IFtdXG4gICAgICBmb3IgKHZhciBqID0gMDsgaiA8IGl0ZW0ucGFydHMubGVuZ3RoOyBqKyspIHtcbiAgICAgICAgcGFydHMucHVzaChhZGRTdHlsZShpdGVtLnBhcnRzW2pdKSlcbiAgICAgIH1cbiAgICAgIHN0eWxlc0luRG9tW2l0ZW0uaWRdID0geyBpZDogaXRlbS5pZCwgcmVmczogMSwgcGFydHM6IHBhcnRzIH1cbiAgICB9XG4gIH1cbn1cblxuZnVuY3Rpb24gY3JlYXRlU3R5bGVFbGVtZW50ICgpIHtcbiAgdmFyIHN0eWxlRWxlbWVudCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ3N0eWxlJylcbiAgc3R5bGVFbGVtZW50LnR5cGUgPSAndGV4dC9jc3MnXG4gIGhlYWQuYXBwZW5kQ2hpbGQoc3R5bGVFbGVtZW50KVxuICByZXR1cm4gc3R5bGVFbGVtZW50XG59XG5cbmZ1bmN0aW9uIGFkZFN0eWxlIChvYmogLyogU3R5bGVPYmplY3RQYXJ0ICovKSB7XG4gIHZhciB1cGRhdGUsIHJlbW92ZVxuICB2YXIgc3R5bGVFbGVtZW50ID0gZG9jdW1lbnQucXVlcnlTZWxlY3Rvcignc3R5bGVbJyArIHNzcklkS2V5ICsgJ349XCInICsgb2JqLmlkICsgJ1wiXScpXG5cbiAgaWYgKHN0eWxlRWxlbWVudCkge1xuICAgIGlmIChpc1Byb2R1Y3Rpb24pIHtcbiAgICAgIC8vIGhhcyBTU1Igc3R5bGVzIGFuZCBpbiBwcm9kdWN0aW9uIG1vZGUuXG4gICAgICAvLyBzaW1wbHkgZG8gbm90aGluZy5cbiAgICAgIHJldHVybiBub29wXG4gICAgfSBlbHNlIHtcbiAgICAgIC8vIGhhcyBTU1Igc3R5bGVzIGJ1dCBpbiBkZXYgbW9kZS5cbiAgICAgIC8vIGZvciBzb21lIHJlYXNvbiBDaHJvbWUgY2FuJ3QgaGFuZGxlIHNvdXJjZSBtYXAgaW4gc2VydmVyLXJlbmRlcmVkXG4gICAgICAvLyBzdHlsZSB0YWdzIC0gc291cmNlIG1hcHMgaW4gPHN0eWxlPiBvbmx5IHdvcmtzIGlmIHRoZSBzdHlsZSB0YWcgaXNcbiAgICAgIC8vIGNyZWF0ZWQgYW5kIGluc2VydGVkIGR5bmFtaWNhbGx5LiBTbyB3ZSByZW1vdmUgdGhlIHNlcnZlciByZW5kZXJlZFxuICAgICAgLy8gc3R5bGVzIGFuZCBpbmplY3QgbmV3IG9uZXMuXG4gICAgICBzdHlsZUVsZW1lbnQucGFyZW50Tm9kZS5yZW1vdmVDaGlsZChzdHlsZUVsZW1lbnQpXG4gICAgfVxuICB9XG5cbiAgaWYgKGlzT2xkSUUpIHtcbiAgICAvLyB1c2Ugc2luZ2xldG9uIG1vZGUgZm9yIElFOS5cbiAgICB2YXIgc3R5bGVJbmRleCA9IHNpbmdsZXRvbkNvdW50ZXIrK1xuICAgIHN0eWxlRWxlbWVudCA9IHNpbmdsZXRvbkVsZW1lbnQgfHwgKHNpbmdsZXRvbkVsZW1lbnQgPSBjcmVhdGVTdHlsZUVsZW1lbnQoKSlcbiAgICB1cGRhdGUgPSBhcHBseVRvU2luZ2xldG9uVGFnLmJpbmQobnVsbCwgc3R5bGVFbGVtZW50LCBzdHlsZUluZGV4LCBmYWxzZSlcbiAgICByZW1vdmUgPSBhcHBseVRvU2luZ2xldG9uVGFnLmJpbmQobnVsbCwgc3R5bGVFbGVtZW50LCBzdHlsZUluZGV4LCB0cnVlKVxuICB9IGVsc2Uge1xuICAgIC8vIHVzZSBtdWx0aS1zdHlsZS10YWcgbW9kZSBpbiBhbGwgb3RoZXIgY2FzZXNcbiAgICBzdHlsZUVsZW1lbnQgPSBjcmVhdGVTdHlsZUVsZW1lbnQoKVxuICAgIHVwZGF0ZSA9IGFwcGx5VG9UYWcuYmluZChudWxsLCBzdHlsZUVsZW1lbnQpXG4gICAgcmVtb3ZlID0gZnVuY3Rpb24gKCkge1xuICAgICAgc3R5bGVFbGVtZW50LnBhcmVudE5vZGUucmVtb3ZlQ2hpbGQoc3R5bGVFbGVtZW50KVxuICAgIH1cbiAgfVxuXG4gIHVwZGF0ZShvYmopXG5cbiAgcmV0dXJuIGZ1bmN0aW9uIHVwZGF0ZVN0eWxlIChuZXdPYmogLyogU3R5bGVPYmplY3RQYXJ0ICovKSB7XG4gICAgaWYgKG5ld09iaikge1xuICAgICAgaWYgKG5ld09iai5jc3MgPT09IG9iai5jc3MgJiZcbiAgICAgICAgICBuZXdPYmoubWVkaWEgPT09IG9iai5tZWRpYSAmJlxuICAgICAgICAgIG5ld09iai5zb3VyY2VNYXAgPT09IG9iai5zb3VyY2VNYXApIHtcbiAgICAgICAgcmV0dXJuXG4gICAgICB9XG4gICAgICB1cGRhdGUob2JqID0gbmV3T2JqKVxuICAgIH0gZWxzZSB7XG4gICAgICByZW1vdmUoKVxuICAgIH1cbiAgfVxufVxuXG52YXIgcmVwbGFjZVRleHQgPSAoZnVuY3Rpb24gKCkge1xuICB2YXIgdGV4dFN0b3JlID0gW11cblxuICByZXR1cm4gZnVuY3Rpb24gKGluZGV4LCByZXBsYWNlbWVudCkge1xuICAgIHRleHRTdG9yZVtpbmRleF0gPSByZXBsYWNlbWVudFxuICAgIHJldHVybiB0ZXh0U3RvcmUuZmlsdGVyKEJvb2xlYW4pLmpvaW4oJ1xcbicpXG4gIH1cbn0pKClcblxuZnVuY3Rpb24gYXBwbHlUb1NpbmdsZXRvblRhZyAoc3R5bGVFbGVtZW50LCBpbmRleCwgcmVtb3ZlLCBvYmopIHtcbiAgdmFyIGNzcyA9IHJlbW92ZSA/ICcnIDogb2JqLmNzc1xuXG4gIGlmIChzdHlsZUVsZW1lbnQuc3R5bGVTaGVldCkge1xuICAgIHN0eWxlRWxlbWVudC5zdHlsZVNoZWV0LmNzc1RleHQgPSByZXBsYWNlVGV4dChpbmRleCwgY3NzKVxuICB9IGVsc2Uge1xuICAgIHZhciBjc3NOb2RlID0gZG9jdW1lbnQuY3JlYXRlVGV4dE5vZGUoY3NzKVxuICAgIHZhciBjaGlsZE5vZGVzID0gc3R5bGVFbGVtZW50LmNoaWxkTm9kZXNcbiAgICBpZiAoY2hpbGROb2Rlc1tpbmRleF0pIHN0eWxlRWxlbWVudC5yZW1vdmVDaGlsZChjaGlsZE5vZGVzW2luZGV4XSlcbiAgICBpZiAoY2hpbGROb2Rlcy5sZW5ndGgpIHtcbiAgICAgIHN0eWxlRWxlbWVudC5pbnNlcnRCZWZvcmUoY3NzTm9kZSwgY2hpbGROb2Rlc1tpbmRleF0pXG4gICAgfSBlbHNlIHtcbiAgICAgIHN0eWxlRWxlbWVudC5hcHBlbmRDaGlsZChjc3NOb2RlKVxuICAgIH1cbiAgfVxufVxuXG5mdW5jdGlvbiBhcHBseVRvVGFnIChzdHlsZUVsZW1lbnQsIG9iaikge1xuICB2YXIgY3NzID0gb2JqLmNzc1xuICB2YXIgbWVkaWEgPSBvYmoubWVkaWFcbiAgdmFyIHNvdXJjZU1hcCA9IG9iai5zb3VyY2VNYXBcblxuICBpZiAobWVkaWEpIHtcbiAgICBzdHlsZUVsZW1lbnQuc2V0QXR0cmlidXRlKCdtZWRpYScsIG1lZGlhKVxuICB9XG4gIGlmIChvcHRpb25zLnNzcklkKSB7XG4gICAgc3R5bGVFbGVtZW50LnNldEF0dHJpYnV0ZShzc3JJZEtleSwgb2JqLmlkKVxuICB9XG5cbiAgaWYgKHNvdXJjZU1hcCkge1xuICAgIC8vIGh0dHBzOi8vZGV2ZWxvcGVyLmNocm9tZS5jb20vZGV2dG9vbHMvZG9jcy9qYXZhc2NyaXB0LWRlYnVnZ2luZ1xuICAgIC8vIHRoaXMgbWFrZXMgc291cmNlIG1hcHMgaW5zaWRlIHN0eWxlIHRhZ3Mgd29yayBwcm9wZXJseSBpbiBDaHJvbWVcbiAgICBjc3MgKz0gJ1xcbi8qIyBzb3VyY2VVUkw9JyArIHNvdXJjZU1hcC5zb3VyY2VzWzBdICsgJyAqLydcbiAgICAvLyBodHRwOi8vc3RhY2tvdmVyZmxvdy5jb20vYS8yNjYwMzg3NVxuICAgIGNzcyArPSAnXFxuLyojIHNvdXJjZU1hcHBpbmdVUkw9ZGF0YTphcHBsaWNhdGlvbi9qc29uO2Jhc2U2NCwnICsgYnRvYSh1bmVzY2FwZShlbmNvZGVVUklDb21wb25lbnQoSlNPTi5zdHJpbmdpZnkoc291cmNlTWFwKSkpKSArICcgKi8nXG4gIH1cblxuICBpZiAoc3R5bGVFbGVtZW50LnN0eWxlU2hlZXQpIHtcbiAgICBzdHlsZUVsZW1lbnQuc3R5bGVTaGVldC5jc3NUZXh0ID0gY3NzXG4gIH0gZWxzZSB7XG4gICAgd2hpbGUgKHN0eWxlRWxlbWVudC5maXJzdENoaWxkKSB7XG4gICAgICBzdHlsZUVsZW1lbnQucmVtb3ZlQ2hpbGQoc3R5bGVFbGVtZW50LmZpcnN0Q2hpbGQpXG4gICAgfVxuICAgIHN0eWxlRWxlbWVudC5hcHBlbmRDaGlsZChkb2N1bWVudC5jcmVhdGVUZXh0Tm9kZShjc3MpKVxuICB9XG59XG4iXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/vue-style-loader/lib/addStylesClient.js\n"); /***/ }), /***/ "./node_modules/vue-style-loader/lib/listToStyles.js": /*!***********************************************************!*\ !*** ./node_modules/vue-style-loader/lib/listToStyles.js ***! \***********************************************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return listToStyles; });\n/**\n * Translates the list format produced by css-loader into something\n * easier to manipulate.\n */\nfunction listToStyles (parentId, list) {\n var styles = []\n var newStyles = {}\n for (var i = 0; i < list.length; i++) {\n var item = list[i]\n var id = item[0]\n var css = item[1]\n var media = item[2]\n var sourceMap = item[3]\n var part = {\n id: parentId + ':' + i,\n css: css,\n media: media,\n sourceMap: sourceMap\n }\n if (!newStyles[id]) {\n styles.push(newStyles[id] = { id: id, parts: [part] })\n } else {\n newStyles[id].parts.push(part)\n }\n }\n return styles\n}\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9saWIvbGlzdFRvU3R5bGVzLmpzLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vQ29kZVBlblZ1ZUNvbXBvbmVudC8uL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2xpYi9saXN0VG9TdHlsZXMuanM/OWJiYyJdLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIFRyYW5zbGF0ZXMgdGhlIGxpc3QgZm9ybWF0IHByb2R1Y2VkIGJ5IGNzcy1sb2FkZXIgaW50byBzb21ldGhpbmdcbiAqIGVhc2llciB0byBtYW5pcHVsYXRlLlxuICovXG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBsaXN0VG9TdHlsZXMgKHBhcmVudElkLCBsaXN0KSB7XG4gIHZhciBzdHlsZXMgPSBbXVxuICB2YXIgbmV3U3R5bGVzID0ge31cbiAgZm9yICh2YXIgaSA9IDA7IGkgPCBsaXN0Lmxlbmd0aDsgaSsrKSB7XG4gICAgdmFyIGl0ZW0gPSBsaXN0W2ldXG4gICAgdmFyIGlkID0gaXRlbVswXVxuICAgIHZhciBjc3MgPSBpdGVtWzFdXG4gICAgdmFyIG1lZGlhID0gaXRlbVsyXVxuICAgIHZhciBzb3VyY2VNYXAgPSBpdGVtWzNdXG4gICAgdmFyIHBhcnQgPSB7XG4gICAgICBpZDogcGFyZW50SWQgKyAnOicgKyBpLFxuICAgICAgY3NzOiBjc3MsXG4gICAgICBtZWRpYTogbWVkaWEsXG4gICAgICBzb3VyY2VNYXA6IHNvdXJjZU1hcFxuICAgIH1cbiAgICBpZiAoIW5ld1N0eWxlc1tpZF0pIHtcbiAgICAgIHN0eWxlcy5wdXNoKG5ld1N0eWxlc1tpZF0gPSB7IGlkOiBpZCwgcGFydHM6IFtwYXJ0XSB9KVxuICAgIH0gZWxzZSB7XG4gICAgICBuZXdTdHlsZXNbaWRdLnBhcnRzLnB1c2gocGFydClcbiAgICB9XG4gIH1cbiAgcmV0dXJuIHN0eWxlc1xufVxuIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/vue-style-loader/lib/listToStyles.js\n"); /***/ }) /******/ })["default"]; });
484.88843
19,654
0.818549
73d706dc73fb1e7a3a55854cba1d3940170b6021
859
js
JavaScript
server/routes/userAvailability.js
talent3310/quiikmeetings
fc972e9536dd1db92b89c4fb93fbca066dbbb002
[ "MIT" ]
null
null
null
server/routes/userAvailability.js
talent3310/quiikmeetings
fc972e9536dd1db92b89c4fb93fbca066dbbb002
[ "MIT" ]
null
null
null
server/routes/userAvailability.js
talent3310/quiikmeetings
fc972e9536dd1db92b89c4fb93fbca066dbbb002
[ "MIT" ]
null
null
null
var express = require('express'); var router = express.Router(); var controller = require('../controllers/userAvailability')(); var auth = require('../auth/auth.service'); /* set user availability api. */ router.get('/all', auth.isAuthenticated(),controller.getUserAllAvailabilities); router.get('/user', auth.isAuthenticated(), controller.getAllAvailabilitiesOfUser); router.get('/:date', auth.isAuthenticated(), controller.getUserAvailabilities); router.get('/free_times/:user_id/:date', auth.isAuthenticated(), controller.getUserFreeTimes); router.get('/free_timesByDateRange/:user_id/:date_From/:date_To',auth.isAuthenticated(), controller.getUserFreeTimesByDateRange); router.post('/', auth.isAuthenticated(), controller.saveUserAvailability); router.post('/send_invites', auth.isAuthenticated(), controller.sendInvitation); module.exports = router;
50.529412
130
0.776484
73d7ca6c676b70f649c921d89d8aaf5a1416b918
389
js
JavaScript
client/src/store/configureStore.prod.js
spashikanti/mangalya
cb01be06322ebab799a39fcebe149c5184521e71
[ "MIT" ]
null
null
null
client/src/store/configureStore.prod.js
spashikanti/mangalya
cb01be06322ebab799a39fcebe149c5184521e71
[ "MIT" ]
8
2020-06-06T08:13:55.000Z
2022-02-27T05:57:04.000Z
client/src/store/configureStore.prod.js
spashikanti/mangalya
cb01be06322ebab799a39fcebe149c5184521e71
[ "MIT" ]
null
null
null
import {createStore, applyMiddleware } from 'redux'; import rootReducer from './reducers'; import thunk from 'redux-thunk'; const middleware = [ thunk ] // export default function configureStore(initialState){ // return createStore(rootReducer, initialState, applyMiddleware(...middleware)); // } export default createStore( rootReducer, applyMiddleware(...middleware) );
22.882353
84
0.737789
73d7d29b6a910c8db3ef4e36155d09a778a833bb
4,733
js
JavaScript
loopback/packages/context/dist/__tests__/acceptance/method-level-bindings.acceptance.js
shujahm/binary-test
10dab764ae2190b948236dbcd3bbc6cab23a4850
[ "MIT" ]
null
null
null
loopback/packages/context/dist/__tests__/acceptance/method-level-bindings.acceptance.js
shujahm/binary-test
10dab764ae2190b948236dbcd3bbc6cab23a4850
[ "MIT" ]
null
null
null
loopback/packages/context/dist/__tests__/acceptance/method-level-bindings.acceptance.js
shujahm/binary-test
10dab764ae2190b948236dbcd3bbc6cab23a4850
[ "MIT" ]
1
2020-10-31T04:10:26.000Z
2020-10-31T04:10:26.000Z
"use strict"; // Copyright IBM Corp. 2019. All Rights Reserved. // Node module: @loopback/context // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const testlab_1 = require("@loopback/testlab"); const debug_1 = tslib_1.__importDefault(require("debug")); const __1 = require("../.."); const debug = debug_1.default('loopback:context:test'); class InfoController { static sayHello(user) { const msg = `Hello ${user}`; debug(msg); return msg; } hello(user = 'Mary') { const msg = `Hello ${user}`; debug(msg); return msg; } greet(prefix, user) { const msg = `[${prefix}] Hello ${user}`; debug(msg); return msg; } greetWithDefault(prefix = '***', user) { const msg = `[${prefix}] Hello ${user}`; debug(msg); return msg; } } tslib_1.__decorate([ tslib_1.__param(0, __1.inject('user', { optional: true })), tslib_1.__metadata("design:type", Function), tslib_1.__metadata("design:paramtypes", [Object]), tslib_1.__metadata("design:returntype", String) ], InfoController.prototype, "hello", null); tslib_1.__decorate([ tslib_1.__param(1, __1.inject('user')), tslib_1.__metadata("design:type", Function), tslib_1.__metadata("design:paramtypes", [String, String]), tslib_1.__metadata("design:returntype", String) ], InfoController.prototype, "greet", null); tslib_1.__decorate([ tslib_1.__param(1, __1.inject('user')), tslib_1.__metadata("design:type", Function), tslib_1.__metadata("design:paramtypes", [Object, String]), tslib_1.__metadata("design:returntype", String) ], InfoController.prototype, "greetWithDefault", null); tslib_1.__decorate([ tslib_1.__param(0, __1.inject('user')), tslib_1.__metadata("design:type", Function), tslib_1.__metadata("design:paramtypes", [String]), tslib_1.__metadata("design:returntype", String) ], InfoController, "sayHello", null); const INFO_CONTROLLER = __1.BindingKey.create('controllers.info'); describe('Context bindings - Injecting dependencies of method', () => { let ctx; beforeEach('given a context', createContext); it('injects prototype method args', async () => { const instance = await ctx.get(INFO_CONTROLLER); // Invoke the `hello` method => Hello John const msg = await __1.invokeMethod(instance, 'hello', ctx); testlab_1.expect(msg).to.eql('Hello John'); }); it('injects optional prototype method args', async () => { ctx = new __1.Context(); ctx.bind(INFO_CONTROLLER).toClass(InfoController); const instance = await ctx.get(INFO_CONTROLLER); // Invoke the `hello` method => Hello Mary const msg = await __1.invokeMethod(instance, 'hello', ctx); testlab_1.expect(msg).to.eql('Hello Mary'); }); it('injects prototype method args with non-injected ones', async () => { const instance = await ctx.get(INFO_CONTROLLER); // Invoke the `hello` method => Hello John const msg = await __1.invokeMethod(instance, 'greet', ctx, ['INFO']); testlab_1.expect(msg).to.eql('[INFO] Hello John'); }); it('injects prototype method args with non-injected ones with default', async () => { const instance = await ctx.get(INFO_CONTROLLER); // Invoke the `hello` method => Hello John const msg = await __1.invokeMethod(instance, 'greetWithDefault', ctx, ['INFO']); testlab_1.expect(msg).to.eql('[INFO] Hello John'); }); it('injects static method args', async () => { // Invoke the `sayHello` method => Hello John const msg = await __1.invokeMethod(InfoController, 'sayHello', ctx); testlab_1.expect(msg).to.eql('Hello John'); }); it('throws error if not all args can be resolved', async () => { const instance = await ctx.get(INFO_CONTROLLER); testlab_1.expect(() => { __1.invokeMethod(instance, 'greet', ctx); }).to.throw(/The argument 'InfoController\.prototype\.greet\[0\]' is not decorated for dependency injection/); testlab_1.expect(() => { __1.invokeMethod(instance, 'greet', ctx); }).to.throw(/but no value was supplied by the caller\. Did you forget to apply @inject\(\) to the argument\?/); }); function createContext() { ctx = new __1.Context(); ctx.bind('user').toDynamicValue(() => Promise.resolve('John')); ctx.bind(INFO_CONTROLLER).toClass(InfoController); } }); //# sourceMappingURL=method-level-bindings.acceptance.js.map
43.824074
119
0.6442
73da5516bb07bed1cc5e18422fd6dd7fffca599a
976
js
JavaScript
frontend/src/App.js
jon-wehner/super-duper-octo-barnacle
48f104bf068d2b63e0b2047616dad1b3bf4aabc0
[ "MIT" ]
null
null
null
frontend/src/App.js
jon-wehner/super-duper-octo-barnacle
48f104bf068d2b63e0b2047616dad1b3bf4aabc0
[ "MIT" ]
null
null
null
frontend/src/App.js
jon-wehner/super-duper-octo-barnacle
48f104bf068d2b63e0b2047616dad1b3bf4aabc0
[ "MIT" ]
null
null
null
import { Route, Routes } from 'react-router-dom'; import { useDispatch } from 'react-redux'; import { useState, useEffect } from 'react'; import * as sessionActions from './store/session'; import Navigation from './components/Navigation'; import BookingArea from './components/BookingArea'; import SearchResults from './components/SearchResults'; import UserProfile from './components/UserProfile'; function App() { const dispatch = useDispatch(); const [isLoaded, setIsLoaded] = useState(false); useEffect(() => { dispatch(sessionActions.restoreUser()).then(() => setIsLoaded(true)); }, [dispatch]); return ( <> <Navigation isLoaded={isLoaded} /> <div className="wrapper"> <Routes> <Route path="/" element={ <BookingArea />} /> <Route path="/search" element={ <SearchResults />} /> <Route path="/profile" element={ <UserProfile />} /> </Routes> </div> </> ); } export default App;
31.483871
73
0.640369
73da73f10575a2f7ee3c3d3f507923cdd7a41a3f
13,181
js
JavaScript
src/components/header.js
bahaisongproject/bsp-website
166549a4ad21eee37f563205367a5c12e8bb9928
[ "MIT" ]
2
2019-02-18T20:46:42.000Z
2020-04-22T16:54:54.000Z
src/components/header.js
bahaisongproject/bahaisongproject.com
6e8d9841a690bf2aeb3540122113d6e58441100f
[ "MIT" ]
24
2020-04-23T12:49:04.000Z
2021-04-03T19:28:30.000Z
src/components/header.js
bahaisongproject/bsp-website
166549a4ad21eee37f563205367a5c12e8bb9928
[ "MIT" ]
1
2020-06-19T10:05:13.000Z
2020-06-19T10:05:13.000Z
/* This example requires Tailwind CSS v2.0+ */ import React, { Fragment } from "react"; import { Link } from "gatsby"; import { Popover, Transition } from "@headlessui/react"; import { BookOpenIcon, CollectionIcon, ExclamationCircleIcon, MenuIcon, MusicNoteIcon, PlusCircleIcon, QuestionMarkCircleIcon, XIcon, } from "@heroicons/react/outline"; import { ChevronDownIcon } from "@heroicons/react/solid"; import SearchBox from "./SearchBox"; import logo from "../images/logo_100x100.png"; const solutions = [ { name: "All Songs", description: "View all songs", href: "/all-songs", icon: MusicNoteIcon, }, { name: "Song Book", description: "Download a PDF with all song sheets", href: "/songbook", icon: BookOpenIcon, }, { name: "Collections", description: "View curated collections", href: "/collections", icon: CollectionIcon, }, ]; const callsToAction = [ { name: "Request", href: "/request-submit", icon: QuestionMarkCircleIcon }, { name: "Submit", href: "/request-submit", icon: PlusCircleIcon }, { name: "Report", href: "/contact", icon: ExclamationCircleIcon }, ]; const recentPosts = [ { id: 1, name: "Your Favorites", href: "/collection/your-favorites" }, { id: 2, name: "For Children", href: "/collection/for-children", }, { id: 3, name: "The Centenary of the Ascension of ‘Abdu’l-Bahá", href: "/collection/centenary-ascension-abdul-baha", }, ]; function classNames(...classes) { return classes.filter(Boolean).join(" "); } export default function Example() { return ( <Popover className="relative z-10"> {({ open }) => ( <> {/* Normal Menu */} <div className="max-w-7xl mx-auto px-4 sm:px-6"> <div className="flex justify-between items-center border-b-2 border-gray-100 py-6 md:justify-start md:space-x-10"> <div className="flex justify-start"> <Link to="/"> <span className="sr-only">bahá&apos;í song project</span> <img className="h-8 w-auto sm:h-10" src={logo} alt="" /> </Link> </div> <div className={`flex ml-6 mr-4 max-w-48 flex-1`}> <SearchBox /> </div> <div className="-mr-2 -my-2 md:hidden"> <Popover.Button className="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500"> <span className="sr-only">Open menu</span> <MenuIcon className="h-6 w-6" aria-hidden="true" /> </Popover.Button> </div> <div className="hidden md:flex items-center justify-end md:flex-1 lg:w-0 space-x-10"> <Popover.Group as="nav" className="hidden md:flex space-x-10"> <Popover className="relative"> {({ open }) => ( <> <Popover.Button className={classNames( open ? "text-gray-900" : "text-gray-500", "group bg-white rounded-md inline-flex items-center text-base font-medium hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500" )} > <span>Discover</span> <ChevronDownIcon className={classNames( open ? "text-gray-600" : "text-gray-400", "ml-2 h-5 w-5 group-hover:text-gray-500" )} aria-hidden="true" /> </Popover.Button> <Transition show={open} as={Fragment} enter="transition ease-out duration-200" enterFrom="opacity-0 translate-y-1" enterTo="opacity-100 translate-y-0" leave="transition ease-in duration-150" leaveFrom="opacity-100 translate-y-0" leaveTo="opacity-0 translate-y-1" > <Popover.Panel static className="absolute z-10 mt-3 transform px-2 w-screen max-w-md sm:px-0 ml-0 left-1/2 -translate-x-1/2" > <div className="rounded-lg shadow-lg ring-1 ring-black ring-opacity-5 overflow-hidden"> <div className="relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8"> {solutions.map((item) => ( <Link key={item.name} to={item.href} className="-m-3 p-3 flex items-start rounded-lg hover:bg-gray-50" > <item.icon className="flex-shrink-0 h-6 w-6 text-primary-600" aria-hidden="true" /> <div className="ml-4"> <p className="text-base font-medium text-gray-900"> {item.name} </p> <p className="mt-1 text-sm text-gray-500"> {item.description} </p> </div> </Link> ))} </div> <div className="px-5 py-5 bg-gray-50 sm:px-8 sm:py-8"> <div> <h3 className="text-sm tracking-wide font-medium text-gray-500 uppercase"> Featured Collections </h3> <ul className="mt-4 space-y-4"> {recentPosts.map((post) => ( <li key={post.id} className="text-base truncate" > <Link to={post.href} className="font-medium text-gray-900 hover:text-gray-700" > {post.name} </Link> </li> ))} </ul> </div> <div className="mt-5 text-sm"> <Link to="/collections" className="font-medium text-primary-600 hover:text-primary-500" > {" "} View all collections{" "} <span aria-hidden="true">&rarr;</span> </Link> </div> </div> <div className="px-5 pt-5 text-center bg-white sm:px-8"> Song missing or wrong? </div> <div className="px-5 py-5 bg-white space-y-6 sm:flex sm:space-y-0 sm:space-x-10 sm:px-8"> {callsToAction.map((item) => ( <div key={item.name} className="flow-root"> <Link to={item.href} className="-m-3 p-3 flex items-center rounded-md text-base font-medium text-gray-900 hover:bg-gray-100" > <item.icon className="flex-shrink-0 h-6 w-6 text-gray-400" aria-hidden="true" /> <span className="ml-3">{item.name}</span> </Link> </div> ))} </div> </div> </Popover.Panel> </Transition> </> )} </Popover> </Popover.Group> <Link to="/contact" className="whitespace-nowrap text-base font-medium text-gray-500 hover:text-gray-900" > Contact </Link> <Link to="/contribute" className="ml-8 whitespace-nowrap inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-base font-medium text-white bg-primary-600 hover:bg-primary-700" > Contribute </Link> </div> </div> </div> {/* Mobile Menu */} <Transition show={open} as={Fragment} enter="duration-200 ease-out" enterFrom="opacity-0 scale-95" enterTo="opacity-100 scale-100" leave="duration-100 ease-in" leaveFrom="opacity-100 scale-100" leaveTo="opacity-0 scale-95" > <Popover.Panel focus static className="absolute top-0 inset-x-0 p-2 transition transform origin-top-right md:hidden" > <div className="rounded-lg shadow-lg ring-1 ring-black ring-opacity-5 bg-white divide-y-2 divide-gray-50"> <div className="pt-5 pb-6 px-5"> <div className="flex items-center justify-between"> <div> <img className="h-8 w-auto" src={logo} alt="bahá'í song project" /> </div> <div className="-mr-2"> <Popover.Button className="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500"> <span className="sr-only">Close menu</span> <XIcon className="h-6 w-6" aria-hidden="true" /> </Popover.Button> </div> </div> <div className="mt-6"> <nav className="grid gap-y-8"> {solutions.map((item) => ( <Link key={item.name} to={item.href} className="-m-3 p-3 flex items-center rounded-md hover:bg-gray-50" > <item.icon className="flex-shrink-0 h-6 w-6 text-primary-600" aria-hidden="true" /> <span className="ml-3 text-base font-medium text-gray-900"> {item.name} </span> </Link> ))} </nav> </div> </div> <div className="py-6 px-5 space-y-6"> <div> <Link to="/contribute" className="w-full flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-base font-medium text-white bg-primary-600 hover:bg-primary-700" > Contribute </Link> <p className="mt-6 text-center text-base font-medium text-gray-500"> <Link to="/contact" className="text-primary-600 hover:text-primary-500" > Contact </Link> </p> </div> </div> </div> </Popover.Panel> </Transition> </> )} </Popover> ); }
44.231544
238
0.401259
73dac2f4c626b792cf857d730fbc7d453a86308d
1,255
js
JavaScript
d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.js
extnet/docs5.ext.net
e99e4d3894640fb1f66882443fe7348fc3181f55
[ "Apache-2.0" ]
null
null
null
d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.js
extnet/docs5.ext.net
e99e4d3894640fb1f66882443fe7348fc3181f55
[ "Apache-2.0" ]
null
null
null
d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.js
extnet/docs5.ext.net
e99e4d3894640fb1f66882443fe7348fc3181f55
[ "Apache-2.0" ]
null
null
null
var class_ext_1_1_net_1_1_spinner_field_base_1_1_builder = [ [ "Builder", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#ad7d88c15e6bc2967cba9fb253bc45de7", null ], [ "KeyNavEnabled", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#aa9b7c3f430f8de78841e50d513d4d918", null ], [ "MouseWheelEnabled", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a73e89af5950c88f947c939e65a9ce227", null ], [ "SetSpinDownEnabled", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a33c86be9e64cd435e60aff23a3ca0d50", null ], [ "SetSpinUpEnabled", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a17a01aea68827671191157dc4a0f45e7", null ], [ "SpinDown", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a6360c6d3a720801f2af00d85bbe4954e", null ], [ "SpinDownEnabled", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a9e8e569def25d0c8d3103408632db320", null ], [ "SpinUp", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a066a92dc63181542fd28040872498514", null ], [ "SpinUpEnabled", "d6/d69/class_ext_1_1_net_1_1_spinner_field_base_1_1_builder.html#a5ce553d85cf731a2a5be31752af1f5c4", null ] ];
104.583333
137
0.836653
73dbbdece8afaf1ad50a093f57749c8c02341bde
798
js
JavaScript
src/components/Star.js
felipesoares6/gitHubRepos
19785e5b09cf50011a6a2bff81573be0d001cd24
[ "MIT" ]
null
null
null
src/components/Star.js
felipesoares6/gitHubRepos
19785e5b09cf50011a6a2bff81573be0d001cd24
[ "MIT" ]
null
null
null
src/components/Star.js
felipesoares6/gitHubRepos
19785e5b09cf50011a6a2bff81573be0d001cd24
[ "MIT" ]
null
null
null
import React from 'react' import { Text, Image } from 'react-native' import styled from 'styled-components/native' import opacityStar from '../images/opacityStar.png' import pinkStar from '../images/pinkStar.png' const StarsCount = styled.Text` font-weight: bold; margin-top: 10px; margin-bottom: 10px; margin-left: 10px; max-width: 90%; color: ${ props => props.theme.secondaryColor }; ` const StarImage = styled.Image` margin-top: 2.2px; margin-left: 5px; height: 16px; width: 16px; ` const handleStarImage = (repository) => repository.stargazers.totalCount ? pinkStar : opacityStar const Star = ({ repository }) => ( <StarsCount> { repository.stargazers.totalCount } <StarImage source={ handleStarImage(repository) } /> </StarsCount> ) export default Star
22.8
97
0.70802
73dcc907038e351b0d6f5ab4926b3d7e26f0e4ee
3,049
js
JavaScript
src/h.js
skatejs/dom-diff
aa84638f84e0580024b17d5bc75c8b40edab5ed8
[ "MIT" ]
101
2015-10-05T17:28:13.000Z
2021-08-04T03:07:58.000Z
src/h.js
skatejs/dom-diff
aa84638f84e0580024b17d5bc75c8b40edab5ed8
[ "MIT" ]
27
2015-09-01T09:13:32.000Z
2019-03-04T16:27:57.000Z
src/h.js
skatejs/dom-diff
aa84638f84e0580024b17d5bc75c8b40edab5ed8
[ "MIT" ]
11
2015-10-28T04:58:23.000Z
2021-09-29T08:08:03.000Z
import createTextNode from './text'; import root from './util/root'; import WeakMap from './util/weak-map'; const { HTMLElement } = root; const localNameMap = new WeakMap(); function ensureNodes (arr) { let out = []; if (!Array.isArray(arr)) { arr = [arr]; } arr.filter(Boolean).forEach(function (item) { if (Array.isArray(item)) { out = out.concat(ensureNodes(item)); } else if (typeof item === 'object') { out.push(translateFromReact(item)); } else { out.push(createTextNode(item)); } }); return out; } function ensureObject (val) { return val && typeof val === 'object' ? val : {}; } function isNode (arg) { return arg && (typeof arg === 'string' || Array.isArray(arg) || typeof arg.nodeType === 'number' || isReactNode(arg)); } function isReactNode (item) { return item && item.type && item.props; } function translateFromReact (item) { if (isReactNode(item)) { const props = item.props; const chren = ensureNodes(props.children); delete props.children; return { attributes: props, childNodes: chren, localName: item.type, nodeType: 1 }; } return item; } let count = 0; export default function (localName, props, ...chren) { const isPropsNode = isNode(props); if (isPropsNode) { chren = ensureNodes([props].concat(chren)); props = { attributes: {}, events: {}, properties: {} }; } else { props = ensureObject(props); chren = ensureNodes(chren); } // If it's a function that isn't an HTMLElement constructor. We test for a // common property since this may be used in a worker / non browser // environment. if (localName.prototype instanceof HTMLElement) { const cache = localNameMap.get(localName); if (cache) { return cache; } // eslint-disable-next-line new-cap const tempLocalName = new localName().localName; localNameMap.set(localName, tempLocalName); localName = tempLocalName; } else if (typeof localName === 'function') { return localName(props, chren); } const node = { __id: ++count, childNodes: chren, localName, nodeType: 1 }; // Special props // // - aria: object that sets aria-* attributes // - attributes: object of attributes to set // - data: object that sets data-* attributes // - events: object of event listeners to set const { aria, attributes, data, events } = props; node.attributes = ensureObject(attributes); node.events = ensureObject(events); node.properties = ensureObject(props); const { attributes: nodeAttributes } = node; // Aria attributes if (typeof aria === 'object') { for (let name in aria) { nodeAttributes[`aria-${name}`] = aria[name]; } } // Data attributes if (typeof data === 'object') { for (let name in data) { nodeAttributes[`data-${name}`] = data[name]; } } // Clean up special props. delete props.aria; delete props.attributes; delete props.data; delete props.events; return node; }
24.007874
120
0.631683
73dd684149147a1571e986a17ac3a1b3ae6fc7bc
212
js
JavaScript
scripts/moths/speckled_runner.js
wolfram74/wolfram74.github.io
4b976fa67f603e827f988d571e509009f5095b44
[ "MIT" ]
null
null
null
scripts/moths/speckled_runner.js
wolfram74/wolfram74.github.io
4b976fa67f603e827f988d571e509009f5095b44
[ "MIT" ]
null
null
null
scripts/moths/speckled_runner.js
wolfram74/wolfram74.github.io
4b976fa67f603e827f988d571e509009f5095b44
[ "MIT" ]
3
2016-09-02T00:53:30.000Z
2018-04-20T05:48:30.000Z
$(document).ready(function() { main(); }); function main(){ var field = new Field(); field.view.setup(); field.populate(); field.changeMoths() field.moveMoths() field.updateStats() // debugger };
16.307692
30
0.632075
73dde32c58772834ad866497246ea0891ecd942e
388
js
JavaScript
playground/src/lit/index.js
sarsamurmu/reboost
0cbebc45bebb94bbac2f176558af43932b1f3210
[ "MIT" ]
62
2020-05-14T12:30:59.000Z
2022-01-08T02:57:16.000Z
playground/src/lit/index.js
sarsamurmu/reboost
0cbebc45bebb94bbac2f176558af43932b1f3210
[ "MIT" ]
50
2020-07-08T15:44:41.000Z
2021-12-01T18:20:38.000Z
playground/src/lit/index.js
sarsamurmu/reboost
0cbebc45bebb94bbac2f176558af43932b1f3210
[ "MIT" ]
3
2020-06-17T03:59:22.000Z
2021-01-13T13:35:10.000Z
import { LitElement, css, html } from 'lit'; import { customElement, queryAsync } from 'lit/decorators.js'; import style from './styles.lit.css'; @customElement('my-element') export class MyElement extends LitElement { @queryAsync('#main') main static get styles() { return [style]; } render() { return html` <span class="main">Lit is here!</span> ` } }
18.47619
62
0.64433
73de19862281fc011c34dd7a4b4f8a894dd23eed
2,385
js
JavaScript
js/sky/src/alert/test/alert.spec.js
Blackbaud-SeanLatif/bb-phone-field
e4ef1d909504eabd904266dd58f6b107f5d74c65
[ "MIT" ]
72
2015-11-03T16:08:11.000Z
2021-05-19T11:39:16.000Z
js/sky/src/alert/test/alert.spec.js
Blackbaud-SeanLatif/bb-phone-field
e4ef1d909504eabd904266dd58f6b107f5d74c65
[ "MIT" ]
1,074
2015-11-02T21:39:41.000Z
2022-03-31T18:09:22.000Z
js/sky/src/alert/test/alert.spec.js
Blackbaud-SeanLatif/bb-phone-field
e4ef1d909504eabd904266dd58f6b107f5d74c65
[ "MIT" ]
118
2015-11-02T19:02:55.000Z
2022-03-29T02:14:19.000Z
/*jshint browser: true, jasmine: true */ /*global inject, module */ describe('Alert directive', function () { 'use strict'; var bbResources, $compile, $rootScope; beforeEach(module('ngMock')); beforeEach(module('sky.alert')); beforeEach(module('sky.templates')); beforeEach(inject(function (_$compile_, _$rootScope_, _bbResources_) { $compile = _$compile_; $rootScope = _$rootScope_; bbResources = _bbResources_; })); it('should hide the close button if it is not cloesable', function () { var el, $scope = $rootScope.$new(); el = $compile('<bb-alert bb-alert-closeable="{{closeable}}"></bb-alert>')($scope); el.appendTo(document.body); $scope.closeable = false; $scope.$digest(); expect(el.find('button.close')).toBeHidden(); $scope.closeable = true; $scope.$digest(); expect(el.find('button.close')).toBeVisible(); expect(el.find('.alert')).toHaveClass('alert-dismissible'); el.remove(); }); it('should be hidden when the close button is clicked', function () { var alertEl, el, $scope = $rootScope.$new(); el = $compile('<bb-alert bb-alert-closeable="true">Test alert</bb-alert>')($scope); el.appendTo(document.body); $scope.$digest(); alertEl = el.find('.alert'); expect(alertEl).toBeVisible(); el.find('button.close').click(); expect(alertEl).toBeHidden(); el.remove(); }); it('should allow the screen reader text for the close button to be localizable', function () { var el, $scope = $rootScope.$new(); bbResources.alert_close = '__test__close'; el = $compile('<bb-alert bb-alert-closeable="true"></bb-alert>')($scope); el.appendTo(document.body); $scope.$digest(); expect(el.find('button.close .sr-only')).toHaveText(bbResources.alert_close); el.remove(); }); it('should add the appropriate styling when an alert type is specified', function () { var el, $scope = $rootScope.$new(); el = $compile('<bb-alert bb-alert-type="danger">Hello</bb-alert>')($scope); $scope.$digest(); expect(el.find('.alert')).toHaveClass('alert-danger'); }); });
26.5
98
0.572327
73de5929c2c815567a0282e770b9f14e98d8043b
89,095
js
JavaScript
www/html/bitrix/modules/calendar/install/js/calendar/cal-core.map.js
Evil1991/bitrixdock
306734e0f6641c9118c0129a49d9a266124cdc9c
[ "MIT" ]
1
2020-10-05T04:28:40.000Z
2020-10-05T04:28:40.000Z
www/html/bitrix/modules/calendar/install/js/calendar/cal-core.map.js
Evil1991/bitrixdock
306734e0f6641c9118c0129a49d9a266124cdc9c
[ "MIT" ]
null
null
null
www/html/bitrix/modules/calendar/install/js/calendar/cal-core.map.js
Evil1991/bitrixdock
306734e0f6641c9118c0129a49d9a266124cdc9c
[ "MIT" ]
null
null
null
{"version":3,"file":"cal-core.min.js","sources":["cal-core.js"],"names":["JCEC","params","this","arConfig","top","BXCRES","dayLength","id","pCalCnt","BX","dragDrop","ECDragDropControl","calendar","arEvents","arAttendees","arSections","sections","type","bSuperpose","bTasks","userId","userName","ownerId","sectionControlsDOMId","PERM","perm","permEx","settings","userSettings","pathToUser","bIntranet","allowMeetings","bSocNet","allowReminders","days","bReadOnly","readOnly","bAnonym","startupEvent","accessColors","initMonth","init_month","initYear","init_year","weekHolidays","week_holidays","yearHolidays","year_holidays","yearWorkdays","year_workdays","new_section_access","bExtranet","Colors","arCalColors","bAMPM","bWideDate","weekStart","week_start","weekDays","week_days","lastSection","requests","DATE_FORMAT","date","convertBitrixFormat","message","DATETIME_FORMAT","substr","length","TIME_FORMAT","util","trim","TIME_FORMAT_SHORT","replace","bCalDAV","arConnections","connections","arSectionsInd","oActiveSections","dayHeight","darkColor","brightColor","arMenuItems","arNames","HandleAccessNames","accessNames","ind","sectId","i","sect","activeSectionsCount","hasOwnProperty","EXPORT","ALLOW","TEXT_COLOR","ID","CAL_DAV_CAL","CAL_DAV_CON","last_result","ACTIVE","IsCurrentViewSect","add","parseInt","bOnunload","actionUrl","page","path","bUser","meetingRooms","allowResMeeting","bUseMR","taskBgColor","taskTextColor","addCustomEvent","delegate","OnTaskChanged","OnTaskKilled","tasks","hiddenSections","typeAccess","access","TYPE_ACCESS","Init","prototype","DaysTitleCont","DaysGridCont","DenyDragEx","maxEventCount","activeDateDays","_bScelTableSixRows","oDate","Date","currentDate","getDate","day","ConvertDayIndex","getDay","month","getMonth","year","getFullYear","activeDate","clone","week","GetWeekByDate","arLoadedMonth","arLoadedEventsId","arLoadedParentId","Event","window","JSECEvent","attendees","HandleEvents","events","_this","selectDaysMode","selectDaysStartObj","selectDaysEndObj","curTimeSelection","curDayTSelection","onbeforeunload","proxy","_OnPopupCloseHandler","BuildSectionBlock","Selector","ECMonthSelector","ColorPicker","ECColorPicker","BuildButtonsCont","className","InitTabControl","setTimeout","bind","OnResize","syncInfo","ECSyncPannel","showNewEventDialog","ShowEditEventPopup","bChooseMR","Tabs","InitTab","tabContId","bodyContId","daysCount","SetTab","tabId","arParams","pTabCont","onclick","needRefresh","setActiveDate","bFirst","P","oTab","activeTabId","prevTabId","tblDis","bLoaded","pBodyCont","EventClick","removeClass","style","display","addClass","ChangeMode","ad","cd","d","w","m","y","xd","BuildDaysTitle","SetMonth","BuildWeekDaysTable","SetWeek","BuildSingleDayTable","bSetDay","SetDay","DisplayEventsMonth","ReBuildEvents","viewed","ShowStartUpEvent","Show","userOptions","save","D1","setFullYear","GetWeekDayByInd","offset","GetWeekDayOffset","dd","weekIndex","Math","floor","SetTabNeedRefresh","bNewDate","Tab","ButtonsCont","addSeparator","pAddBut","appendChild","create","props","title","EC_MESS","AddNewEvent","pIcon","pText","html","Add","pMore","href","push","text","ClosePopupMenu","NewTask","NewTaskTitle","Edit","section_edit","NewSect","NewSectTitle","ShowSectionDialog","NewExtSect","NewExtSectTitle","ShowExternalDialog","PopupMenu","show","onPopupClose","bindElement","offsetLeft","offsetWidth","Settings","click","ShowSetDialog","accessSettingsWrap","accessSettingsLink","CHint","parent","hint","accessSettingsWarn","alert","currentItem","popupWindow","close","SetView","bxInt","LoadEvents","bSetActiveDate","OnChange","BuildDaysGrid","round","childNodes","width","abs","visibility","cleanNode","Reset","activeDateObjDays","arWeeks","oDaysGridTable","cellPadding","cellSpacing","GetWeekStart","BuildPrevMonthDays","BuildDayCell","setDate","BuildNextMonthDays","rowLength","rows","BuildEventHolder","curMonth","curYear","dayOffset","bCurMonth","oDay","cn","_curRow","insertRow","dayInd","bHol","MO","TU","WE","TH","FR","SA","SU","insertCell","dayCont","height","link","GoToDay","RegisterDay","onmousedown","e","PreventDefault","borderRight","onmouseover","oDayOnMouseOver","oDayOnMouseDown","onmouseup","oDayOnMouseUp","pDiv","pDayCont","begining","all","pDay","SelectDays","indexOf","DeSelectDays","CloseAddEventDialog","ShowAddEventDialog","oDayOnDoubleClick","oDayOnContextMenu","RefreshEventsOnWeeks","l","RefreshEventsOnWeek","startDayInd","endDayInd","k","arEv","j","ev","arAll","arHid","slots","step","hidden","sort","a","b","oEvent","DT_FROM_TS","eventloop","deleteFromArray","ShowEventOnLevel","oParts","partInd","x","undefined","ShowMoreEventsSelect","level","cells","offsetTop","pMoreDiv","el","part","arHidden","pMoreDivs","adjust","MoreEvents","Item","event","ShowMoreEventsWin","Events","pSelect","arSelectedDays","bInvertedDaysSelection","start_ind","GetDayIndexByElement","end_ind","_a","GetDayByIndex","DisplayError","str","bReloadPage","reload","oSections","bMove","pSidebar","pSectCont","firstChild","insertBefore","pOwnerSectCont","_sect_over_timeout","clearInterval","onmouseout","pOwnerSectBlock","pSPSectCont","pSpSectBlock","pManageSPBut","ShowSuperposeDialog","BuildSectionElements","pAddSectBut","Personal","bShowOwnerSection","bShowSuperpose","oSect","DOM","CAL_TYPE","OWNER_ID","pEl","BuildSectionMenu","BuildSectionElement","SUPERPOSED","pSPEl","parentNode","removeChild","menuId","Data","destroy","pSPWrap","pSPText","COLOR","CREATED_BY","DESCRIPTION","MyTasks","NAME","SORT","bChecked","isGoogle","isTask","pCont","pSectSubCont","bDark","ColorIsDark","menu","pWrap","pStatus","SyncError","pMenu","hidefocus","ShowCPopup","ShowCalendar","sectionId","isFirstExchange","bExchange","IS_EXCHANGE","DAV_EXCH_CAL","LINK","OpenCalendar","edit_section","EditCalendarTitle","CloseCPopup","CalAdd2SP","CalAdd2SPTitle","SetSuperposed","CalHide","CalHideTitle","OUTLOOK_JS","browser","IsMac","ConnectToOutlook","ConnectToOutlookTitle","jsOutlookUtils","loadScript","eval","Export","ExportTitle","ShowExportDialog","Delete","DelCalendarTitle","DeleteSection","Refresh","bSyncGoogle","ReloadAll","Adjust","CalDavDialogTitle","googleHide","HideCalDavSection","False","color","charAt","substring","r","g","light","AppendCalendarHint","oHint","Destroy","hintContent","SP_PARAMS","GROUP_TITLE","desc_len","max_len","CHintSimple","_pElement","bShow","bDontReload","backgroundColor","txtColor","bShowed","SaveSection","D","oSectDialog","CAL","Name","value","CalenNameErr","bEditCalDialogOver","postData","GetReqData","name","desc","Desc","Color","text_color","TextColor","Access","GetValues","Exch","is_exchange","checked","ExpAllow","exp_set","ExpSet","Request","errorText","CalenSaveErr","handler","oRes","SaveSectionClientSide","arSPSections","SaveLastSection","add2SP","key","exSect","oldColor","oldTextColor","bCol","innerHTML","htmlspecialchars","UpdateSectionColor","confirm","googleHideConfirm","getData","refreshView","result","DeleteSectionClientSide","DelCalendarConfirm","DelCalendarErr","setColor","setTextColor","keys","n","displayColor","displayTextColor","SECT_ID","nodeType","ShowAllCalendars","bSP","arCals","arSPCalendarsShow","CheckCalBarGlobChecker","bCheck","GlCh","pWnd","flag","DeSelectAll","SelectAll","bAdd","arSPIds","trackedUser","AppendSPCalendarErr","res","GetCenterWindowPos","h","S","GetWindowSize","document","scrollTop","innerHeight","left","scrollLeft","innerWidth","resEvent","PARENT_ID","EDIT","RRULE","FormatDate","parseDate","DATE_FROM","View","SaveSettings","oSetDialog","inPersonal","blink","Blink","showDeclined","ShowDeclined","meetSection","SectSelect","showMuted","ShowMuted","denyBusyInvitation","TimezoneSelect","userTimezoneName","user_settings","user_timezone_name","type_access","SetSelected","work_time_start","WorkTimeStart","work_time_end","WorkTimeEnd","WeekHolidays","options","selected","YearHolidays","YearWorkdays","ClearPersonalSettings","clear_all","GetUserHref","GetUserProfileLink","uid","bHtml","User","bOwner","email","toLowerCase","Host","UserProfile","Day","url","bIter","reqId","iter","handleRes","status","erInd","ind1","ind2","onerror","GetRequestRes","ClearRequestRes","DoNothing","xhr","ajax","post","get","action","O","sessid","bitrix_sessid","bx_event_calendar_request","random","CancelRequest","ExtendUserSearchInput","SonetTCJsUtils","EC__GetRealPos","GetRealPos","oSuperposeDialog","oCont","bottom","ParseLocation","bGetMRParams","mrid","mrevid","ar_","split","isNaN","mrind","MR","timeout","_resizeTimeout","clearTimeout","ResizeTabTitle","bJustRedraw","popup","popupContainer","removeCustomEvent","CreateStrut","CheckMouseInCont","pos","wndSize","GetWindowScrollPos","clientX","clientY","right","SaveCalDavConnections","Calback","onError","con","user_name","pass","del","del_calendars","pDelCalendars","IsDavCalendar","Section","s","CanDo","DefaultAction","mod","bDoDefault","taskId","UnDisplay","code","GetAccessName","GetMeetingSection","CheckMeetingRoom","Params","callback","check","AddGroupMembers","arPost","users","onCustomEvent","ItsYou","ItIsYou","GetFreeDialogColor","colorMap","format","getTime","FormatTime","seconds","FormatDateTime","ParseDate","trimSeconds","bUTC","isNotEmptyString","regMonths","expr","RegExp","aDate","match","aFormat","cnt","aDateArgs","aFormatArgs","aResult","array_search","getNumMonth","toUpperCase","setUTCDate","setUTCFullYear","setUTCMonth","setUTCHours","setMonth","setHours","bPM","FormatTimeByNum","toString","ampm","ParseTime","arTime","CheckType","CheckSectionsCount","weekDayOffsetIndex","GetLastSection","bxIntEx","bxSpCh","bxSpChBack","EnterAndNotTextArea","keyCode","targ","target","srcElement","nodeName","bxGetDateFromTS","ts","getObject","ho","getHours","mi","getMinutes","bTime","hour","min","bxFormatDate","Number","zeroInt","MozUserSelect","ondrag","ondragstart","onselectstart","GetCurrentSections","superposed","active","req","usecl","active_sect","hidden_sect","sup_sect","cal_dav_data_sync","LoadEventsErr","loadEventsLastRequestId","sectionsNow","CompareArrays","HandleLoadedEvents","sid","PreHandle","SmartId","HandleAccessibility","accessibility","FilterAccessibility","from","to","EventHolderCont","c","arCellCoords","dayCellHeight","offsetHeight","dayCellWidth","ev_action","o","getAttribute","IsAttendee","IsHost","MEETING_STATUS","SetMeetingStatus","eventId","comment","MoreEventsWin","bRefresh","activeFirst","activeLast","HandleEventMonth","arPrehandle","d_from","d_to","_d_from","_d_to","HandleEventCommon","oWeeks","DT_TO_TS","arInit","real_from","real_to","real_from_t","real_to_t","bInPast","DT_SKIP_TIME","bMuted","DisplayEvent_M","SetColor","arEvParams","partDaysCount","bEventStart","bEventEnd","dayIndex","bEnd","BuildEventDiv","arAtr","div","t","IsTask","isCrm","IsCrm","minWidth","maxWidth","bEnc","IsMeeting","statQ","GetQuestIcon","titleCell","typeIcon","GetLabelStyle","BuildActions","cont","evCont","HighlightEvent_M","ondblclick","setAttribute","RegisterEvent","bUn","f","GetEventWeeks","dind","BuildWeekEventHolder","_bBETimeOut","pEventHolder","querySelector","DisplayWeekEvents","HandleWeekEvent","RefreshEventsInDayT","ArrangeEventsInTL","pTimelineCont","node","arDays","TLine","EventsCount","oDaysT","oTLParts","DisplayEvent_DT","DisplayEventOnTimeline","day_from","day_to","_event","startDay","endDay","oDiv","HighlightEvent_DT","nd_f","nd_t","h_from","m_from","h_to","m_to","DT_LENGTH","_SetTimeEvent","bStart","oEv","bHide","max","dis","ShowMoreEventsSelectWeek","pMoreEvents","p","mode","bStarted","_e","leftDrift","_row","RowSet","Rows","Row","freeRowId","bClosedAllRows","startedEvents","startedEventsCount","dontClose","rl","bFilled","evId","h_f","m_f","BuildEventDiv_TL","lastPart","cell","pTimelineTable","arRS","rs","rsl","rowsCount","rowWidth","rw","pEv","sWidth","m_t","rowInd_f","rowInd_t","cellStart","__ConvertCellIndex","cellEnd","mouseover","HighlightEvent_TL","mouseout","dblclick","_eventViewed","_contentSpan","rf","rt","t1","t2","children","bTimeline","ddResizer","RegisterTimelineEventResizer","RegisterTimelineEvent","originalWidth","originalHeight","_highlightIntKeypWnd","_highlightInt","findChild","w1","w2","h1","h2","setInterval","bWidth","bHeight","arParts","pl","ow","oh","PopupWindowManager","autoHide","closeByEsc","lightShadow","content","pNewDiv","pOldDiv","cloneNode","GetUsableDateTime","timestamp","roundMin","ceil","array1","array2"],"mappings":"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"}
89,095
89,095
0.831371
73de68e6393ece7bcb7fe8a58109d4722436989d
1,420
js
JavaScript
src/App.js
invanalabs/invana-graph-studio
285940b565cf2a091e8b394e3aa90cabd11541d6
[ "Apache-2.0" ]
90
2020-05-27T16:23:42.000Z
2020-12-22T01:58:58.000Z
src/App.js
invanalabs/invana-graph-studio
285940b565cf2a091e8b394e3aa90cabd11541d6
[ "Apache-2.0" ]
49
2020-05-08T01:19:40.000Z
2020-12-15T15:02:29.000Z
src/App.js
invanalabs/invana-graph-studio
285940b565cf2a091e8b394e3aa90cabd11541d6
[ "Apache-2.0" ]
13
2020-05-27T18:21:09.000Z
2020-11-30T13:40:59.000Z
import './App.scss'; import React, {Suspense} from "react"; import {BrowserRouter as Router, Switch, Route} from "react-router-dom"; import Page404View from "./web/views/page-404"; import Explorer from "./web/views/explorer"; import IndexView from "./web/views"; import LabelView from "./web/views/data"; import DataManagementView from "./web/views/data"; import SettingsView from "./web/views/settings"; import ConnectView from "./web/views/connect"; import ConsoleView from "./web/views/console"; export default class App extends React.Component { render() { return ( <Router> <Suspense fallback={<div style={{color: "white"}}>Loading...</div>}> <Switch> <Route exact path="/" component={IndexView}/> <Route exact path="/connect" component={ConnectView}/> <Route exact path="/explorer" component={Explorer}/> <Route exact path="/data" component={DataManagementView}/> <Route exact path="/console" component={ConsoleView}/> <Route exact path="/settings" component={SettingsView}/> <Route exact path="/label" component={LabelView}/> <Route component={Page404View}/> </Switch> </Suspense> </Router> ); } }
40.571429
84
0.569014
73deaecc77a2689205101ee18cc8ebad72a59bfa
523
js
JavaScript
scripts/rollup/externals.js
byte-fe/nuxt.js
159021eabe5769d2559228db664f8272b15bb5e0
[ "MIT" ]
4
2019-03-14T09:49:03.000Z
2019-05-29T21:53:35.000Z
scripts/rollup/externals.js
dotnetCarpenter/nuxt.js
22a53464a7f09d4d17dba3e044dce536d2495b80
[ "MIT" ]
2
2021-05-09T03:32:48.000Z
2021-09-02T14:47:33.000Z
scripts/rollup/externals.js
dotnetCarpenter/nuxt.js
22a53464a7f09d4d17dba3e044dce536d2495b80
[ "MIT" ]
null
null
null
import pkg from '../../package.json' // Dependencies that will be installed alongise with nuxt package const packageDependencies = Object.keys(pkg.dependencies) // Allow built in node modules const nodeBuiltIn = ['path', 'fs', 'module', 'crypto', 'util'] // Optional dependencies that user should install on demand const optionalDependencies = [ // legacy build users need this 'babel-polyfill' ] const externals = [].concat( packageDependencies, nodeBuiltIn, optionalDependencies ) export default externals
23.772727
65
0.74761
73decf32d6a7cab237a3d839f9c6124a8fd658c6
511
js
JavaScript
routes/note.routes.js
giacomooo/CASFEE
3091f8d0354fb5f3b96ed4c20c731dc8480da66b
[ "MIT" ]
null
null
null
routes/note.routes.js
giacomooo/CASFEE
3091f8d0354fb5f3b96ed4c20c731dc8480da66b
[ "MIT" ]
null
null
null
routes/note.routes.js
giacomooo/CASFEE
3091f8d0354fb5f3b96ed4c20c731dc8480da66b
[ "MIT" ]
null
null
null
import express from 'express'; import {notesController} from '../controller/noteController.js'; const router = express.Router(); router.get('/', notesController.loadNotes.bind(notesController)); router.get('/:id', notesController.getNoteById.bind(notesController)); router.post('/', notesController.createNote.bind(notesController)); router.put('/', notesController.updateNote.bind(notesController)); router.delete('/:id', notesController.deleteNote.bind(notesController)); export const noteRoutes = router;
39.307692
72
0.780822
73df438cc7ab47285817e817d85c749874fc1a97
1,963
js
JavaScript
attractor.js
igarizio/sync-multiple-lorenz-attractors
f206e6a7733e5d226903c0ccba702749b304972d
[ "MIT" ]
1
2021-06-18T23:18:01.000Z
2021-06-18T23:18:01.000Z
attractor.js
igarizio/visualizing-chaos
f8e619612ecd3424f04ce679ef2df08d021605fb
[ "MIT" ]
null
null
null
attractor.js
igarizio/visualizing-chaos
f8e619612ecd3424f04ce679ef2df08d021605fb
[ "MIT" ]
null
null
null
let inSyncThreshold = 2; let a = 10; let b = 28; let c = 8.0 / 3.0; class Attractor { constructor(initialX, initialY, initialZ, dt, maxPoints) { this.initialPoint = new p5.Vector(initialX, initialY, initialZ); this.maxPoints = maxPoints; this.points = [this.initialPoint]; this.dt = dt; } primeSystem() { for (let j = 0; j < 200; j++) { this.addNewLorenzPoint(); } this.points.length = 1; } addNewLorenzPoint() { let lastPoint = this.points[0]; let x = lastPoint.x; let y = lastPoint.y; let z = lastPoint.z; let dx = a * (y - x) * dt; let dy = (x * (b - z) - y) * dt; let dz = (x * y - c * z) * dt; x += dx; y += dy; z += dz; this.addNewPoint(x, y, z); } addNewPoint(x, y, z) { let newPoint = new p5.Vector(x, y, z); this.points.unshift(newPoint); this.points.length = Math.min(this.points.length, this.maxPoints); } addNewRandomPoint() { let randX = random(randomRangeX[0], randomRangeX[1]); let randY = random(randomRangeY[0], randomRangeY[1]); let randZ = random(randomRangeZ[0], randomRangeZ[1]); this.addNewPoint(randX, randY, randZ); } drawPoints() { beginShape(); for (let v of this.points) { vertex(v.x, v.z); } endShape(); } draw3DPoints() { beginShape(); for (let v of this.points) { vertex(v.x, v.z, v.y); } endShape(); } checkInSync(otherAttractor) { let nPoints = Math.min(this.points.length, otherAttractor.points.length) - 1; let sumDistance = 0; for (let i = 0; i < nPoints; i++) { let diffX = this.points[i].x - otherAttractor.points[i].x; let diffY = this.points[i].y - otherAttractor.points[i].y; let diffZ = this.points[i].z - otherAttractor.points[i].z; sumDistance += (diffX ** 2 + diffY ** 2 + diffZ ** 2) ** 0.5; } let avgDistance = sumDistance / nPoints; return avgDistance < inSyncThreshold; } }
24.5375
81
0.584819
73e1ab895371ba01dd4e3172a6a18ed342ef4021
1,789
js
JavaScript
oldclient/src/components/Jumbotron/index.js
Delmanat3/The-Cornholio
92266fc0b3ffae530c1e355aac1320fe50d1b679
[ "MIT" ]
null
null
null
oldclient/src/components/Jumbotron/index.js
Delmanat3/The-Cornholio
92266fc0b3ffae530c1e355aac1320fe50d1b679
[ "MIT" ]
null
null
null
oldclient/src/components/Jumbotron/index.js
Delmanat3/The-Cornholio
92266fc0b3ffae530c1e355aac1320fe50d1b679
[ "MIT" ]
null
null
null
import React from "react"; import truck from "../img/truck.jpg"; import cool from "../img/cool.jpg"; import { Work } from "../works/index1"; import LazyLoad from 'react-lazyload'; import { Copyright } from "../Copyright"; // @lazyload({ // height: 200, // once: true, // offset: 100 // }) export const Jumbo = () => { console.log(window.innerWidth) const [isDesktop, setDesktop] = React.useState(window.innerWidth > 500); const updateMedia = () => { setDesktop(window.innerWidth > 500); }; React.useEffect(() => { window.addEventListener("resize", updateMedia); return () => window.removeEventListener("resize", updateMedia); }); console.log(process.env.PUBLIC_URL); return ( <> <LazyLoad> <div id="Bg1" style={{ backgroundImage: `url(${cool})`, }} > {isDesktop ?( <h1> <span>Welcome To</span> <div className="message"> <div className="word1">Nathan</div> <div className="word2">Me</div> <div className="word3">CSS</div> </div> </h1> ):( <> <h1> My Work </h1> </> )} </div> <div style={{ backgroundImage: `url(${truck})`, minHeight: "300px", backgroundAttachment: "fixed", backgroundPosition: "center", backgroundRepeat: "no-repeat", backgroundSize: "cover", opacity: "0.65", }} ></div> <div id="Bg2" style={{ backgroundImage: `url(${cool})` }}> <Work /> </div> <Copyright/> </LazyLoad> </> ); };
23.853333
72
0.47848
73e1b19075dfb37236ed0cd193f73e81b072164a
304
js
JavaScript
test/test.js
corcd/rrweb-recorder
f9395e7404f8288519d80a7254039982a0eed6da
[ "0BSD" ]
1
2021-01-13T07:41:02.000Z
2021-01-13T07:41:02.000Z
test/test.js
corcd/rrweb-recorder
f9395e7404f8288519d80a7254039982a0eed6da
[ "0BSD" ]
null
null
null
test/test.js
corcd/rrweb-recorder
f9395e7404f8288519d80a7254039982a0eed6da
[ "0BSD" ]
null
null
null
/* * @Author: Whzcorcd * @Date: 2020-07-29 17:18:21 * @LastEditors: Wzhcorcd * @LastEditTime: 2020-07-29 17:19:32 * @Description: file content */ 'use strict' const expect = require('chai').expect const Recorder = require('../dist/index') describe('test', () => { it('something', () => {}) })
17.882353
41
0.618421