aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <silvio@socioambiental.org>2015-07-22 19:38:30 -0300
committerSilvio <silvio@socioambiental.org>2015-07-22 19:38:30 -0300
commit27f6d2c1c137e2002f9c38c452224beec95bfb4f (patch)
treed04a9e0e60646d185846b30998554ae907f3d1fc
parent778b89e3ce65a1d329b7a7298416e11c11f944e4 (diff)
downloadgmap_arcgis_js-27f6d2c1c137e2002f9c38c452224beec95bfb4f.tar.gz
gmap_arcgis_js-27f6d2c1c137e2002f9c38c452224beec95bfb4f.tar.bz2
jQuery noconflict compatibility / deprecated jQuery.msie
-rw-r--r--gmap_arcgis.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/gmap_arcgis.js b/gmap_arcgis.js
index b3816ca..34e8f12 100644
--- a/gmap_arcgis.js
+++ b/gmap_arcgis.js
@@ -60,7 +60,7 @@ function gmapArcgis(config) {
if (window.blockUI.length == 0) {
if (this.config.overlaySelector != undefined) {
- $(this.config.overlaySelector).unblock();
+ jQuery(this.config.overlaySelector).unblock();
}
else {
jQuery.unblockUI();
@@ -82,7 +82,7 @@ function gmapArcgis(config) {
window.blockUI[params.name] = true;
if (this.config.overlaySelector != undefined) {
- $(this.config.overlaySelector).block(params);
+ jQuery(this.config.overlaySelector).block(params);
}
else {
jQuery.blockUI(params);
@@ -96,7 +96,7 @@ function gmapArcgis(config) {
return;
}
- if ($.browser.msie === false || $.browser.msie === undefined) {
+ //if (jQuery.browser.msie === false || jQuery.browser.msie === undefined) {
message = this.config.overlayMessage;
if (this.config.overlayCss != undefined) {
@@ -117,7 +117,7 @@ function gmapArcgis(config) {
}
this.blockUI(params);
- }
+ //}
},
// Show overlay dependending on element configuration
@@ -555,7 +555,7 @@ function gmapArcgis(config) {
var step = (self.config.sliders[slider].step != undefined) ? self.config.sliders[slider].step : 1;
if (type == 'selectToUISlider') {
- $(element).selectToUISlider({
+ jQuery(element).selectToUISlider({
sliderOptions: {
slide: function(event, ui) {
self.sliderUpdate.apply(self, [ ui.value - 1, slider ]);
@@ -565,7 +565,7 @@ function gmapArcgis(config) {
}
else {
// Max is the number of layers in the service
- $(element).slider({
+ jQuery(element).slider({
value: value,
min: min,
max: max,
@@ -614,8 +614,8 @@ function gmapArcgis(config) {
var FIT_PAD = 40;
for (var zoom = MAX_ZOOM; zoom >= MIN_ZOOM; --zoom) {
- if (worldCoordWidth * (1 << zoom) + 2 * FIT_PAD < $(map.getDiv()).width() &&
- worldCoordHeight * (1 << zoom) + 2 * FIT_PAD < $(map.getDiv()).height()) {
+ if (worldCoordWidth * (1 << zoom) + 2 * FIT_PAD < jQuery(map.getDiv()).width() &&
+ worldCoordHeight * (1 << zoom) + 2 * FIT_PAD < jQuery(map.getDiv()).height()) {
return zoom;
}
}
@@ -716,7 +716,7 @@ function gmapArcgis(config) {
// A closure here keeps the right layer to the async response
(function(layer, args) {
- $.ajax({
+ jQuery.ajax({
type: 'get',
url: url,
dataType: 'jsonp',