summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc/tabledrag.js12
-rw-r--r--misc/tableheader.js2
-rw-r--r--modules/color/color.js2
3 files changed, 8 insertions, 8 deletions
diff --git a/misc/tabledrag.js b/misc/tabledrag.js
index 0c7acbc75..d79eda06c 100644
--- a/misc/tabledrag.js
+++ b/misc/tabledrag.js
@@ -293,7 +293,7 @@ Drupal.tableDrag.prototype.makeDraggable = function (item) {
self.rowObject.swap('before', previousRow);
self.rowObject.interval = null;
self.rowObject.indent(0);
- window.scrollBy(0, -parseInt(item.offsetHeight));
+ window.scrollBy(0, -parseInt(item.offsetHeight, 10));
}
handle.get(0).focus(); // Regain focus after the DOM manipulation.
}
@@ -325,7 +325,7 @@ Drupal.tableDrag.prototype.makeDraggable = function (item) {
nextGroupRow = $(nextGroup.group).filter(':last').get(0);
self.rowObject.swap('after', nextGroupRow);
// No need to check for indentation, 0 is the only valid one.
- window.scrollBy(0, parseInt(groupHeight));
+ window.scrollBy(0, parseInt(groupHeight, 10));
}
}
else {
@@ -333,7 +333,7 @@ Drupal.tableDrag.prototype.makeDraggable = function (item) {
self.rowObject.swap('after', nextRow);
self.rowObject.interval = null;
self.rowObject.indent(0);
- window.scrollBy(0, parseInt(item.offsetHeight));
+ window.scrollBy(0, parseInt(item.offsetHeight, 10));
}
handle.get(0).focus(); // Regain focus after the DOM manipulation.
}
@@ -524,11 +524,11 @@ Drupal.tableDrag.prototype.findDropTargetRow = function (x, y) {
// table cells, grab the firstChild of the row and use that instead.
// http://jacob.peargrove.com/blog/2006/technical/table-row-offsettop-bug-in-safari.
if (row.offsetHeight == 0) {
- var rowHeight = parseInt(row.firstChild.offsetHeight) / 2;
+ var rowHeight = parseInt(row.firstChild.offsetHeight, 10) / 2;
}
// Other browsers.
else {
- var rowHeight = parseInt(row.offsetHeight) / 2;
+ var rowHeight = parseInt(row.offsetHeight, 10) / 2;
}
// Because we always insert before, we need to offset the height a bit.
@@ -697,7 +697,7 @@ Drupal.tableDrag.prototype.updateField = function (changedRow, group) {
}
else {
// Assume a numeric input field.
- var weight = parseInt($(targetClass, siblings[0]).val()) || 0;
+ var weight = parseInt($(targetClass, siblings[0]).val(), 10) || 0;
$(targetClass, siblings).each(function () {
this.value = weight;
weight++;
diff --git a/misc/tableheader.js b/misc/tableheader.js
index 1b772af3c..813e4c7ca 100644
--- a/misc/tableheader.js
+++ b/misc/tableheader.js
@@ -10,7 +10,7 @@ Drupal.tableHeaderDoScroll = function () {
Drupal.behaviors.tableHeader = {
attach: function (context, settings) {
// This breaks in anything less than IE 7. Prevent it from running.
- if ($.browser.msie && parseInt($.browser.version) < 7) {
+ if ($.browser.msie && parseInt($.browser.version, 10) < 7) {
return;
}
diff --git a/modules/color/color.js b/modules/color/color.js
index a834f11ed..f6ebc8774 100644
--- a/modules/color/color.js
+++ b/modules/color/color.js
@@ -26,7 +26,7 @@ Drupal.behaviors.color = {
// Build a preview.
$('#preview').once('color').append('<div id="gradient"></div>');
var gradient = $('#preview #gradient');
- var h = parseInt(gradient.css('height')) / 10;
+ var h = parseInt(gradient.css('height'), 10) / 10;
for (i = 0; i < h; ++i) {
gradient.append('<div class="gradient-line"></div>');
}