kivitendo/SL/Template/Plugin/JavaScript.pm @ 7b2d21f4
518ed6b5 | Moritz Bunkus | package SL::Template::Plugin::JavaScript;
|
|
use base qw( Template::Plugin );
|
|||
use Template::Plugin;
|
|||
sub new {
|
|||
my $class = shift;
|
|||
my $context = shift;
|
|||
bless { }, $class;
|
|||
}
|
|||
sub escape {
|
|||
my $self = shift;
|
|||
my $text = shift;
|
|||
$text =~ s|\"|\\\"|g;
|
|||
return $text;
|
|||
}
|
|||
1;
|
|||