'use strict'; angular.module('ionic-toast') .run(['$templateCache', function ($templateCache) { var toastTemplate = '
' + '
' + '' + '' + '' + '' + '
' + '
'; $templateCache.put('ionic-toast/templates/ionic-toast.html', toastTemplate); }]);