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
| class Dimension { | |
| constructor(entry) { | |
| Object.assign(this, entry); | |
| } | |
| } | |
| Dim = new Mongo.Collection('dimensions', { | |
| transform: function(entry) { | |
| return new Dimension(entry); | |
| } |
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
| aldeed:simple-schema@1.5.3 | |
| allow-deny@1.0.4 | |
| amplify@1.0.0 | |
| angular@1.3.10 | |
| angular-meteor-data@1.3.10 | |
| angular-templates@1.0.2 | |
| angular:angular@1.5.3_1 | |
| angular:angular-animate@1.5.3_1 | |
| angular:angular-mocks@1.5.3_1 | |
| autoupdate@1.2.9 |
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
| function Json2CSV(objArray) | |
| { | |
| var | |
| getKeys = function(obj){ | |
| var keys = []; | |
| for(var key in obj){ | |
| keys.push(key); | |
| } | |
| return keys.join(); | |
| }, objArray = format_json(objArray) |
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
| var oTable; | |
| $(document).ready(function() { | |
| $('#form').submit( function() { | |
| var sData = $('input', oTable.fnGetNodes()).serialize(); | |
| alert( "The following data would have been submitted to the server: \n\n"+sData ); | |
| return false; | |
| } ); | |
| oTable = $('#example').dataTable(); |
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
| <?php | |
| header('Content-Type: image/gif'); | |
| echo base64_decode('R0lGODlhAQABAJAAAP8AAAAAACH5BAUQAAAALAAAAAABAAEAAAICBAEAOw=='); | |
| ?> |
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
| {# config_dev.yml #} | |
| twig: | |
| debug: 1 | |
| services: | |
| twig.extension.debug: | |
| class: Twig_Extensions_Extension_Debug | |
| tags: | |
| - { name: 'twig.extension' } |
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
| {% block collection_widget %} | |
| {% spaceless %} | |
| <div class="collection"> | |
| {% if prototype is defined %} | |
| {% set attr = attr|merge({'data-prototype': block('collection_item_widget') }) %} | |
| {% endif %} | |
| <div {{ block('widget_container_attributes') }}> | |
| {{ form_errors(form) }} | |
| <ul> | |
| {% for rows in form %} |