Last active
December 10, 2016 08:39
-
-
Save asuh/f941dcd444f294ed5a220d70df8f70c2 to your computer and use it in GitHub Desktop.
Revisions
-
asuh renamed this gist
Dec 10, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
asuh renamed this gist
Dec 10, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
asuh created this gist
Dec 10, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ 'use strict'; /* * Javascript templating system */ $(document).ready(function() { function loadTemplate(element, path, callback, done) { $.ajax(path).then(function(html) { element.append(html); if (typeof callback === 'function' ) { callback(); } if (typeof done === 'function' ) { done(element); } }); } function loadComponent() { var el = $(this); var callback = $(el).data('component'); var templateName = $(el).data('template'); var template = 'components/' + templateName + '.html'; loadTemplate($(el), template, window[callback], function(element) { // Initialize functions using data-component attributes inside markup $(element).find('[data-component]').each(loadComponent); }); } // Load components $('[data-component]').each(loadComponent); });