25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- // CommonJs
- if (typeof exports === 'object' && typeof module !== 'undefined') {
- module.exports = template;
- // RequireJS && SeaJS
- } else if (typeof define === 'function') {
- define(function() {
- return template;
- });
- } else {
- this.template = template;
- }
-
- })();
|