Resolved a typo in variable name 'version_compatible'

This commit is contained in:
Khushboo Vashi
2016-02-10 12:12:06 +05:30
committed by Ashesh Vashi
parent 2a52462dbf
commit 637a5838a8
3 changed files with 11 additions and 11 deletions

View File

@@ -93,7 +93,7 @@ function($, _, pgAdmin, Backbone, Backform, Alertify, Node) {
*/
var data = cache_node.cache(url, node_info, cache_level);
if (this.field.get('version_compitible') &&
if (this.field.get('version_compatible') &&
(_.isUndefined(data) || _.isNull(data))) {
m.trigger('pgadmin:view:fetching', m, self.field);
$.ajax({
@@ -350,7 +350,7 @@ function($, _, pgAdmin, Backbone, Backform, Alertify, Node) {
*/
var data = cache_node.cache(url, node_info, cache_level);
if (this.column.get('version_compitible') &&
if (this.column.get('version_compatible') &&
(_.isUndefined(data) || _.isNull(data))) {
m.trigger('pgadmin:view:fetching', m, self.column);
$.ajax({