This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jslint nomen: true, indent: 2, maxerr: 3 */ | |
/*global self, buffer */ | |
(function (worker_instance) { | |
"use strict"; | |
//JavaScript Audio Resampler (c) 2011 - Grant Galitz | |
var INCORRECT_BUFFER_LENGTH = "Buffer was of incorrect sample length."; | |
var INCORRECT_SETTINGS = "Invalid settings specified for the resampler."; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*global window, rJS, console, RSVP, Dygraph */ | |
/*jslint indent: 2, maxerr: 3 */ | |
(function (rJS) { | |
"use strict"; | |
var ARRAY_VALUE_LENGTH = 8, | |
OPTION_DICT = { | |
start_date: 0, | |
time_factor: 1000, | |
resolution: 1, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, user-scalable=no" /> | |
<title>PyData Graph</title> | |
<!-- renderjs --> | |
<script src="rsvp.js" type="text/javascript"></script> | |
<script src="renderjs.js" type="text/javascript"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*global window, rJS, RSVP, URI */ | |
/*jslint nomen: true, indent: 2, maxerr: 3 */ | |
(function (window, rJS, RSVP, URI) { | |
"use strict"; | |
rJS(window) | |
// Init local properties | |
.ready(function (g) { | |
g.props = {}; | |
}) | |
// Assign the element to a variable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, user-scalable=no" /> | |
<title>PyData Graph</title> | |
<script src="rsvp.js" type="text/javascript"></script> | |
<script src="renderjs.js" type="text/javascript"></script> | |
<script src="gadget_global.js" type="text/javascript"></script> | |
<script src="gadget_erp5_page_pydata.js" type="text/javascript"></script> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- field-search with tags and filter button --> | |
<script id="field-search-template" type="text/x-handlebars-template"> | |
<div class="field_container"> | |
<div class="ui-field-contain"> | |
<div class="css-compatability-helper"> | |
<div class="ui-input-text ui-body-{{theme}} ui-input-has-icon ui-corner-all ui-shadow-inset ui-input-has-clear {{status_class}} {{css_class}}"> | |
<form class="save_form document_form"> | |
<input type="text" data-enhanced="true" value="{{value}}" name="search" {{status_attribute}} /> | |
<div class="ui-btn ui-input-clear ui-input-btn ui-corner-all ui-icon-search ui-btn-icon-notext" data-i18n="[node]{{search_i18n}}"> | |
{{search_i18n}}<input tabindex="-1" data-role="button" data-enhanced="true" type="submit" data-i18n="[value]{{search_i18n}}" value=" " {{status_attribute}} /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title></title> | |
<!-- | |
<script type="text/javascript" src="sockjs-client.js"></script> | |
<script type="text/javascript" src="webtcp_client.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* --------------------------- gadget_core.css -------------------------- */ | |
/* | |
========================================================================= | |
================================ fonts ================================= | |
========================================================================= | |
*/ | |
/* global reference font-size (.9em = 14.4px) */ | |
html.ui-mobile body div p, | |
html.ui-mobile body div a, | |
html.ui-mobile body div button, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jslint indent: 2, maxlen: 80, nomen: true */ | |
/*global console, window, document, rJS, RSVP, $ */ | |
(function (window, document, rJS) { | |
"use strict"; | |
rJS(window) | |
/** | |
* Override navigation of jQuery Mobile and allow deeplinking. Missing | |
* pages will now be loaded and added to the DOM as new gadgets - and |
NewerOlder