Skip to content

Commit

Permalink
fixed up some deprecated YUI
Browse files Browse the repository at this point in the history
  • Loading branch information
illiphilli committed Jul 26, 2011
1 parent d796a6c commit c82e1cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions framework/modules/ecommerce/views/order/create_new_order.tpl
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
{literal}

// the text box for the title
var tagInput = Y.get('#search_internal');
var theAddressesId = Y.get('#addresses_id');
var existingRadio = Y.get('#customer_type2');
var tagInput = Y.one('#search_internal');
var theAddressesId = Y.one('#addresses_id');
var existingRadio = Y.one('#customer_type2');

var onRequestData = function( oSelf , sQuery , oRequest) {
existingRadio.set('checked',true);
Expand Down Expand Up @@ -77,9 +77,9 @@
{literal}

// the text box for the title
var tagInput = Y.get('#related_items2');
var theAddressesId = Y.get('#addresses_id');
var existingRadio = Y.get('#customer_type3');
var tagInput = Y.one('#related_items2');
var theAddressesId = Y.one('#addresses_id');
var existingRadio = Y.one('#customer_type3');

var onRequestData = function( oSelf , sQuery , oRequest) {
existingRadio.set('checked',true);
Expand Down

0 comments on commit c82e1cd

Please sign in to comment.