add new slider

This commit is contained in:
Luke Pulverenti 2015-06-26 23:27:38 -04:00
parent e33e5875cf
commit 09d4af3357
133 changed files with 9418 additions and 256 deletions

View file

@ -2,6 +2,7 @@
function onClosed() {
$(this).remove();
$(document.body).removeClass('bodyWithPopupOpen');
}
function show(options) {
@ -77,7 +78,9 @@
html += '</paper-button>';
}
//html += '</paper-dialog-scrollable>';
if (isScrollable) {
html += '</paper-dialog-scrollable>';
}
if (options.showCancel) {
html += '<div class="buttons">';
@ -85,9 +88,7 @@
html += '</div>';
}
if (isScrollable) {
html += '</paper-dialog>';
}
html += '</paper-dialog>';
$(document.body).append(html);