From: miker Date: Mon, 7 Apr 2008 20:29:41 +0000 (+0000) Subject: proper ordering of onSet args (not important to those uses, but important for reference X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=23d0468b63e5f8829001a1da1b1a032c5a576d5c;p=Evergreen.git proper ordering of onSet args (not important to those uses, but important for reference git-svn-id: svn://svn.open-ils.org/ILS/branches/dojo-admin@9258 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/conify/global/actor/org_unit.html b/Open-ILS/web/conify/global/actor/org_unit.html index ffa50f31a3..cc58248875 100644 --- a/Open-ILS/web/conify/global/actor/org_unit.html +++ b/Open-ILS/web/conify/global/actor/org_unit.html @@ -66,7 +66,7 @@ window._ou_data = aou.toStoreData( window._ou_list ); window.ou_list_store = new dojo.data.ItemFileWriteStore({ data : window._ou_data }); - window.ou_list_store.onSet = function (item, attr, n, o) { + window.ou_list_store.onSet = function (item, attr, o, n) { if (attr == 'ischanged') return; if (n == o) return; this.setValue( item, 'ischanged', 1); diff --git a/Open-ILS/web/conify/global/actor/org_unit_type.html b/Open-ILS/web/conify/global/actor/org_unit_type.html index e8f19a6fc3..e3574ba373 100644 --- a/Open-ILS/web/conify/global/actor/org_unit_type.html +++ b/Open-ILS/web/conify/global/actor/org_unit_type.html @@ -61,7 +61,7 @@ onerror : function (r) { status_update('Problem fetching types') }, oncomplete : function (r) { ou_type_store = new dojo.data.ItemFileWriteStore({ data : aout.toStoreData( r.recv().content() ) }); - ou_type_store.onSet = function (item, attr, n, o) { + ou_type_store.onSet = function (item, attr, o, n) { if (attr == 'ischanged') return; if (n == o) return; this.setValue( item, 'ischanged', 1); diff --git a/Open-ILS/web/conify/global/permission/perm_list.html b/Open-ILS/web/conify/global/permission/perm_list.html index 278dbb77c0..077c2653e0 100644 --- a/Open-ILS/web/conify/global/permission/perm_list.html +++ b/Open-ILS/web/conify/global/permission/perm_list.html @@ -70,7 +70,7 @@ window._perm_data = ppl.toStoreData( window._perm_list, 'code' ); window.perm_store = new dojo.data.ItemFileWriteStore({ data : window._perm_data }); - perm_store.onSet = function (item, attr, n, o) { + perm_store.onSet = function (item, attr, o, n) { if (attr == 'ischanged') return; if (n == o) return; this.setValue( item, 'ischanged', 1);