cache $(document)

This commit is contained in:
Denis Ciccale 2015-08-03 22:26:33 +02:00
parent ca4d08bdda
commit 689466b1f2

View File

@ -177,6 +177,8 @@
});
},
"init": function() {
var $document = $(document);
if ($.fn.ripples && this.options.ripples) {
this.ripples();
}
@ -198,27 +200,27 @@
if (document.arrive && this.options.arrive) {
if ($.fn.ripples && this.options.ripples) {
$(document).arrive(this.options.withRipples, function() {
$document.arrive(this.options.withRipples, function() {
$.material.ripples($(this));
});
}
if (this.options.input) {
$(document).arrive(this.options.inputElements, function() {
$document.arrive(this.options.inputElements, function() {
$.material.input($(this));
});
}
if (this.options.checkbox) {
$(document).arrive(this.options.checkboxElements, function() {
$document.arrive(this.options.checkboxElements, function() {
$.material.checkbox($(this));
});
}
if (this.options.radio) {
$(document).arrive(this.options.radioElements, function() {
$document.arrive(this.options.radioElements, function() {
$.material.radio($(this));
});
}
if (this.options.togglebutton) {
$(document).arrive(this.options.togglebuttonElements, function() {
$document.arrive(this.options.togglebuttonElements, function() {
$.material.togglebutton($(this));
});
}