Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

sammy.tmpl-latest.min.js 776B

12345
  1. // -- Sammy.js -- /plugins/sammy.tmpl.js
  2. // http://sammyjs.org
  3. // Version: 0.7.6
  4. // Built: 2014-08-26 10:45:34 +0300
  5. (function(factory){if(typeof define==="function"&&define.amd){define(["jquery","sammy","jquery.tmpl"],factory)}else{(window.Sammy=window.Sammy||{}).Tmpl=factory(window.jQuery,window.Sammy)}})(function($,Sammy){Sammy.Tmpl=function(app,method_alias){var template=function(template,data,partials){var name=template;if(!$.template[name]){$.template(name,template)}data=$.extend({},this,data);partials=$.extend({},data.partials,partials);for(partial in partials){if(!$.template[partial]){$.template(partial,partials[partial])}}return $.tmpl(name,$.extend({},this,data))};if(!method_alias){method_alias="tmpl"}app.helper(method_alias,template)};return Sammy.Tmpl});