Removed obsolete $ in source files

This commit is contained in:
Manuel Cillero 2017-08-29 14:13:02 +02:00
parent a39c010e06
commit e5f2b64d98
146 changed files with 836 additions and 1081 deletions

View file

@ -1,7 +1,6 @@
// $Id: calendar_colorpicker.js,v 1.1.4.3 2008/11/21 22:04:56 karens Exp $
/**
* Implementation of hook_elements.
*
*
* Much of the colorpicker code was adapted from the Colorpicker module.
* That module has no stable release yet nor any D6 branch.
*/
@ -9,16 +8,16 @@
* Bind the colorpicker event to the form element
*/
Drupal.behaviors.calendarColorpicker = function (context) {
// do we have multiple calendar_colors?
if ($("div.calendar_colorpicker").size() > 0) {
// loop over each calendar_color type
$("div.calendar_colorpicker").each(function() {
// create the farbtastic colorpicker
var farb = $.farbtastic(this);
// get the id of the current matched colorpicker wrapper div
var id = $(this).attr("id");
@ -26,7 +25,7 @@ Drupal.behaviors.calendarColorpicker = function (context) {
$("input.calendar_colorfield").filter("." + id).each(function () {
// set the background colors of all of the textfields appropriately
farb.linkTo(this);
// when clicked, they get linked to the farbtastic colorpicker that they are associated with
$(this).click(function () {
farb.linkTo(this);
@ -37,4 +36,3 @@ Drupal.behaviors.calendarColorpicker = function (context) {
});
}
};