From 40a0907fa695c6bbd7791743ac48109321d5d267 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Tue, 22 Sep 2015 14:19:28 +0200 Subject: [PATCH] PriceSource: js accessor angepasst --- SL/Controller/PriceSource.pm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/SL/Controller/PriceSource.pm b/SL/Controller/PriceSource.pm index 10763ce55..aea9f4645 100644 --- a/SL/Controller/PriceSource.pm +++ b/SL/Controller/PriceSource.pm @@ -5,14 +5,13 @@ use strict; use parent qw(SL::Controller::Base); use List::MoreUtils qw(any uniq apply); -use SL::ClientJS; use SL::Locale::String qw(t8); use SL::PriceSource; use Rose::Object::MakeMethods::Generic ( scalar => [ qw(record_item) ], - 'scalar --get_set_init' => [ qw(js record) ], + 'scalar --get_set_init' => [ qw(record) ], ); __PACKAGE__->run_before('check_auth'); @@ -53,7 +52,7 @@ sub render_price_dialog { # $self->js->show('#dialog_flash_error'); # } - $self->js->render($self); + $self->js->render; } @@ -65,10 +64,6 @@ sub check_auth { $::auth->assert('edit_prices'); } -sub init_js { - SL::ClientJS->new -} - sub init_record { _make_record(); } -- 2.20.1