This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body> | |
| <select id="teste"> | |
| <option>item 1</option> | |
| <option>item 2</option> | |
| <option>item 3</option> | |
| <option>item 4</option> | |
| </select> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript" charset="utf-8"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| $(document).ready(function() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package Xpto; | |
| use Moose; | |
| has built => ( | |
| isa => 'Int', | |
| is => 'rw', | |
| clearer => 'clear_built', | |
| builder => '_build_built', | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package MyModule; | |
| use Moose; | |
| with 'MyModule::RequireAttr'; | |
| has attr => ( | |
| isa => 'Str', | |
| is => 'rw', | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package Main; | |
| use base qw/DBIx::Class::Schema/; | |
| __PACKAGE__->load_namespaces; | |
| 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Testing Gist |
NewerOlder