浏览代码

Fix error message classes

tags/v1.4.1
Isaac Bythewood 8 年前
父节点
当前提交
5cda896eed
共有 3 个文件被更改,包括 5 次插入5 次删除
  1. +2
    -2
      pinry/static/js/lightbox.js
  2. +2
    -2
      pinry/static/js/pin-form.js
  3. +1
    -1
      pinry/static/js/pinry.js

+ 2
- 2
pinry/static/js/lightbox.js 查看文件

@@ -83,7 +83,7 @@ $(window).load(function() {
createBox(pin);
});
promise.error(function() {
message('Problem problem fetching pin data.', 'alert alert-error');
message('Problem problem fetching pin data.', 'alert alert-danger');
});
}
return links.each(function() {
@@ -95,7 +95,7 @@ $(window).load(function() {
createBox(pin);
});
promise.error(function() {
message('Problem problem fetching pin data.', 'alert alert-error');
message('Problem problem fetching pin data.', 'alert alert-danger');
});
});
});


+ 2
- 2
pinry/static/js/pin-form.js 查看文件

@@ -124,7 +124,7 @@ $(window).load(function() {
editedPin = null;
});
promise.error(function() {
message('Problem updating image.', 'alert alert-error');
message('Problem updating image.', 'alert alert-danger');
});
} else {
var data = {
@@ -144,7 +144,7 @@ $(window).load(function() {
dismissModal(modal);
});
promise.error(function() {
message('Problem saving image.', 'alert alert-error');
message('Problem saving image.', 'alert alert-danger');
});
}
});


+ 1
- 1
pinry/static/js/pinry.js 查看文件

@@ -70,7 +70,7 @@ $(window).load(function() {
tileLayout();
});
promise.error(function() {
message('Problem deleting image.', 'alert alert-error');
message('Problem deleting image.', 'alert alert-danger');
});
});
});


正在加载...
取消
保存