소스 검색

import path correction

version-14
Nabin Hait 11 년 전
부모
커밋
1a94aadf5d
4개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. +1
    -1
      webnotes/core/doctype/communication/communication.js
  2. +1
    -1
      webnotes/public/js/wn/form/assign_to.js
  3. +1
    -1
      webnotes/public/js/wn/views/communication.js
  4. +2
    -2
      webnotes/templates/includes/login.js

+ 1
- 1
webnotes/core/doctype/communication/communication.js 파일 보기

@@ -1,7 +1,7 @@
cur_frm.cscript.onload = function(doc) {
cur_frm.fields_dict.user.get_query = function() {
return {
query: "core.doctype.communication.communication.get_user"
query: "webnotes.core.doctype.communication.communication.get_user"
}
};


+ 1
- 1
webnotes/public/js/wn/form/assign_to.js 파일 보기

@@ -130,7 +130,7 @@ wn.ui.form.AssignTo = Class.extend({
});
}
}
me.dialog.fields_dict.assign_to.get_query = "core.doctype.profile.profile.profile_query";
me.dialog.fields_dict.assign_to.get_query = "webnotes.core.doctype.profile.profile.profile_query";
}
me.dialog.clear();


+ 1
- 1
webnotes/public/js/wn/views/communication.js 파일 보기

@@ -301,7 +301,7 @@ wn.views.CommunicationComposer = Class.extend({
};
return wn.call({
method:"core.doctype.communication.communication.make",
method:"webnotes.core.doctype.communication.communication.make",
args: {
sender: [wn.user_info(user).fullname, wn.boot.profile.email],
recipients: form_values.recipients,


+ 2
- 2
webnotes/templates/includes/login.js 파일 보기

@@ -25,7 +25,7 @@ $(window).on("hashchange", function() {
login.do_login = function(){
var args = {};
if(window.is_sign_up) {
args.cmd = "core.doctype.profile.profile.sign_up";
args.cmd = "webnotes.core.doctype.profile.profile.sign_up";
args.email = ($("#login_id").val() || "").trim();
args.full_name = ($("#full_name").val() || "").trim();

@@ -34,7 +34,7 @@ login.do_login = function(){
return false;
}
} else if(window.is_forgot) {
args.cmd = "core.doctype.profile.profile.reset_password";
args.cmd = "webnotes.core.doctype.profile.profile.reset_password";
args.user = ($("#login_id").val() || "").trim();
if(!args.user) {


불러오는 중...
취소
저장