Template updates done

This commit is contained in:
Fergal Moran
2013-09-24 00:31:34 +01:00
parent 255ad892f3
commit c6dbbb8632
413 changed files with 125857 additions and 2876 deletions

View File

@@ -1,8 +1,6 @@
// Generated by CoffeeScript 1.6.2
(function() {
define(['jquery', 'bootstrap', 'toastr'], function($, bootstrap, toastr) {
var _this = this;
return {
modal: function(url) {
if (url) {
@@ -42,6 +40,9 @@
return toastr.warning(message, title);
},
showAlert: function(title, message) {
return this.showMessage(title, message);
},
showMessage: function(title, message) {
return toastr.success(message, title);
},
generateGuid: function() {
@@ -65,6 +66,9 @@
}
iframe.src = url;
return true;
},
isMe: function(id) {
return id === com.podnoms.settings.currentUser;
}
};
});