Changeset 1039507
- Timestamp:
- 12/06/2014 06:17:58 PM (11 years ago)
- Location:
- collaborate-notes/trunk
- Files:
-
- 2 added
- 5 edited
-
LICENSE (added)
-
README.md (added)
-
admin/css/bootstrap.css (modified) (3 diffs)
-
admin/js/collaborate-notes-admin.js (modified) (5 diffs)
-
collaborate-notes.php (modified) (3 diffs)
-
includes/class-collaborate-notes.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collaborate-notes/trunk/admin/css/bootstrap.css
r962774 r1039507 678 678 } 679 679 } 680 table { 681 background-color: transparent; 682 } 683 th { 684 text-align: left; 685 } 686 .table { 687 width: 100%; 688 max-width: 100%; 689 margin-bottom: 20px; 690 } 691 .table > thead > tr > th, 692 .table > tbody > tr > th, 693 .table > tfoot > tr > th, 694 .table > thead > tr > td, 695 .table > tbody > tr > td, 696 .table > tfoot > tr > td { 697 padding: 8px; 698 line-height: 1.42857143; 699 vertical-align: top; 700 border-top: 1px solid #dddddd; 701 } 702 .table > thead > tr > th { 703 vertical-align: bottom; 704 border-bottom: 2px solid #dddddd; 705 } 706 .table > caption + thead > tr:first-child > th, 707 .table > colgroup + thead > tr:first-child > th, 708 .table > thead:first-child > tr:first-child > th, 709 .table > caption + thead > tr:first-child > td, 710 .table > colgroup + thead > tr:first-child > td, 711 .table > thead:first-child > tr:first-child > td { 712 border-top: 0; 713 } 714 .table > tbody + tbody { 715 border-top: 2px solid #dddddd; 716 } 717 .table .table { 718 background-color: #ffffff; 719 } 720 .table-condensed > thead > tr > th, 721 .table-condensed > tbody > tr > th, 722 .table-condensed > tfoot > tr > th, 723 .table-condensed > thead > tr > td, 724 .table-condensed > tbody > tr > td, 725 .table-condensed > tfoot > tr > td { 726 padding: 5px; 727 } 728 .table-bordered { 729 border: 1px solid #dddddd; 730 } 731 .table-bordered > thead > tr > th, 732 .table-bordered > tbody > tr > th, 733 .table-bordered > tfoot > tr > th, 734 .table-bordered > thead > tr > td, 735 .table-bordered > tbody > tr > td, 736 .table-bordered > tfoot > tr > td { 737 border: 1px solid #dddddd; 738 } 739 .table-bordered > thead > tr > th, 740 .table-bordered > thead > tr > td { 741 border-bottom-width: 2px; 742 } 743 .table-striped > tbody > tr:nth-child(odd) > td, 744 .table-striped > tbody > tr:nth-child(odd) > th { 745 background-color: #f9f9f9; 746 } 747 .table-hover > tbody > tr:hover > td, 748 .table-hover > tbody > tr:hover > th { 749 background-color: #f5f5f5; 750 } 751 table col[class*="col-"] { 752 position: static; 753 float: none; 754 display: table-column; 755 } 756 table td[class*="col-"], 757 table th[class*="col-"] { 758 position: static; 759 float: none; 760 display: table-cell; 761 } 762 .table > thead > tr > td.active, 763 .table > tbody > tr > td.active, 764 .table > tfoot > tr > td.active, 765 .table > thead > tr > th.active, 766 .table > tbody > tr > th.active, 767 .table > tfoot > tr > th.active, 768 .table > thead > tr.active > td, 769 .table > tbody > tr.active > td, 770 .table > tfoot > tr.active > td, 771 .table > thead > tr.active > th, 772 .table > tbody > tr.active > th, 773 .table > tfoot > tr.active > th { 774 background-color: #f5f5f5; 775 } 776 .table-hover > tbody > tr > td.active:hover, 777 .table-hover > tbody > tr > th.active:hover, 778 .table-hover > tbody > tr.active:hover > td, 779 .table-hover > tbody > tr:hover > .active, 780 .table-hover > tbody > tr.active:hover > th { 781 background-color: #e8e8e8; 782 } 783 .table > thead > tr > td.success, 784 .table > tbody > tr > td.success, 785 .table > tfoot > tr > td.success, 786 .table > thead > tr > th.success, 787 .table > tbody > tr > th.success, 788 .table > tfoot > tr > th.success, 789 .table > thead > tr.success > td, 790 .table > tbody > tr.success > td, 791 .table > tfoot > tr.success > td, 792 .table > thead > tr.success > th, 793 .table > tbody > tr.success > th, 794 .table > tfoot > tr.success > th { 795 background-color: #dff0d8; 796 } 797 .table-hover > tbody > tr > td.success:hover, 798 .table-hover > tbody > tr > th.success:hover, 799 .table-hover > tbody > tr.success:hover > td, 800 .table-hover > tbody > tr:hover > .success, 801 .table-hover > tbody > tr.success:hover > th { 802 background-color: #d0e9c6; 803 } 804 .table > thead > tr > td.info, 805 .table > tbody > tr > td.info, 806 .table > tfoot > tr > td.info, 807 .table > thead > tr > th.info, 808 .table > tbody > tr > th.info, 809 .table > tfoot > tr > th.info, 810 .table > thead > tr.info > td, 811 .table > tbody > tr.info > td, 812 .table > tfoot > tr.info > td, 813 .table > thead > tr.info > th, 814 .table > tbody > tr.info > th, 815 .table > tfoot > tr.info > th { 816 background-color: #d9edf7; 817 } 818 .table-hover > tbody > tr > td.info:hover, 819 .table-hover > tbody > tr > th.info:hover, 820 .table-hover > tbody > tr.info:hover > td, 821 .table-hover > tbody > tr:hover > .info, 822 .table-hover > tbody > tr.info:hover > th { 823 background-color: #c4e3f3; 824 } 825 .table > thead > tr > td.warning, 826 .table > tbody > tr > td.warning, 827 .table > tfoot > tr > td.warning, 828 .table > thead > tr > th.warning, 829 .table > tbody > tr > th.warning, 830 .table > tfoot > tr > th.warning, 831 .table > thead > tr.warning > td, 832 .table > tbody > tr.warning > td, 833 .table > tfoot > tr.warning > td, 834 .table > thead > tr.warning > th, 835 .table > tbody > tr.warning > th, 836 .table > tfoot > tr.warning > th { 837 background-color: #fcf8e3; 838 } 839 .table-hover > tbody > tr > td.warning:hover, 840 .table-hover > tbody > tr > th.warning:hover, 841 .table-hover > tbody > tr.warning:hover > td, 842 .table-hover > tbody > tr:hover > .warning, 843 .table-hover > tbody > tr.warning:hover > th { 844 background-color: #faf2cc; 845 } 846 .table > thead > tr > td.danger, 847 .table > tbody > tr > td.danger, 848 .table > tfoot > tr > td.danger, 849 .table > thead > tr > th.danger, 850 .table > tbody > tr > th.danger, 851 .table > tfoot > tr > th.danger, 852 .table > thead > tr.danger > td, 853 .table > tbody > tr.danger > td, 854 .table > tfoot > tr.danger > td, 855 .table > thead > tr.danger > th, 856 .table > tbody > tr.danger > th, 857 .table > tfoot > tr.danger > th { 858 background-color: #f2dede; 859 } 860 .table-hover > tbody > tr > td.danger:hover, 861 .table-hover > tbody > tr > th.danger:hover, 862 .table-hover > tbody > tr.danger:hover > td, 863 .table-hover > tbody > tr:hover > .danger, 864 .table-hover > tbody > tr.danger:hover > th { 865 background-color: #ebcccc; 866 } 867 @media screen and (max-width: 767px) { 868 .table-responsive { 869 width: 100%; 870 margin-bottom: 15px; 871 overflow-y: hidden; 872 overflow-x: auto; 873 -ms-overflow-style: -ms-autohiding-scrollbar; 874 border: 1px solid #dddddd; 875 -webkit-overflow-scrolling: touch; 876 } 877 .table-responsive > .table { 878 margin-bottom: 0; 879 } 880 .table-responsive > .table > thead > tr > th, 881 .table-responsive > .table > tbody > tr > th, 882 .table-responsive > .table > tfoot > tr > th, 883 .table-responsive > .table > thead > tr > td, 884 .table-responsive > .table > tbody > tr > td, 885 .table-responsive > .table > tfoot > tr > td { 886 white-space: nowrap; 887 } 888 .table-responsive > .table-bordered { 889 border: 0; 890 } 891 .table-responsive > .table-bordered > thead > tr > th:first-child, 892 .table-responsive > .table-bordered > tbody > tr > th:first-child, 893 .table-responsive > .table-bordered > tfoot > tr > th:first-child, 894 .table-responsive > .table-bordered > thead > tr > td:first-child, 895 .table-responsive > .table-bordered > tbody > tr > td:first-child, 896 .table-responsive > .table-bordered > tfoot > tr > td:first-child { 897 border-left: 0; 898 } 899 .table-responsive > .table-bordered > thead > tr > th:last-child, 900 .table-responsive > .table-bordered > tbody > tr > th:last-child, 901 .table-responsive > .table-bordered > tfoot > tr > th:last-child, 902 .table-responsive > .table-bordered > thead > tr > td:last-child, 903 .table-responsive > .table-bordered > tbody > tr > td:last-child, 904 .table-responsive > .table-bordered > tfoot > tr > td:last-child { 905 border-right: 0; 906 } 907 .table-responsive > .table-bordered > tbody > tr:last-child > th, 908 .table-responsive > .table-bordered > tfoot > tr:last-child > th, 909 .table-responsive > .table-bordered > tbody > tr:last-child > td, 910 .table-responsive > .table-bordered > tfoot > tr:last-child > td { 911 border-bottom: 0; 912 } 913 } 914 fieldset { 915 padding: 0; 916 margin: 0; 917 border: 0; 918 min-width: 0; 919 } 920 legend { 921 display: block; 922 width: 100%; 923 padding: 0; 924 margin-bottom: 20px; 925 font-size: 21px; 926 line-height: inherit; 927 color: #333333; 928 border: 0; 929 border-bottom: 1px solid #e5e5e5; 930 } 931 label { 932 display: inline-block; 933 max-width: 100%; 934 margin-bottom: 5px; 935 font-weight: bold; 936 } 937 input[type="search"] { 938 -webkit-box-sizing: border-box; 939 -moz-box-sizing: border-box; 940 box-sizing: border-box; 941 } 942 input[type="radio"], 943 input[type="checkbox"] { 944 margin: 4px 0 0; 945 margin-top: 1px \9; 946 line-height: normal; 947 } 948 input[type="file"] { 949 display: block; 950 } 951 input[type="range"] { 952 display: block; 953 width: 100%; 954 } 955 select[multiple], 956 select[size] { 957 height: auto; 958 } 959 input[type="file"]:focus, 960 input[type="radio"]:focus, 961 input[type="checkbox"]:focus { 962 outline: thin dotted; 963 outline: 5px auto -webkit-focus-ring-color; 964 outline-offset: -2px; 965 } 966 output { 967 display: block; 968 padding-top: 7px; 969 font-size: 14px; 970 line-height: 1.42857143; 971 color: #555555; 972 } 973 .form-control { 974 display: block; 975 width: 100%; 976 height: 34px; 977 padding: 6px 12px; 978 font-size: 14px; 979 line-height: 1.42857143; 980 color: #555555; 981 background-color: #ffffff; 982 background-image: none; 983 border: 1px solid #cccccc; 984 border-radius: 4px; 985 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 986 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 987 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 988 -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 989 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 990 } 991 .form-control:focus { 992 border-color: #66afe9; 993 outline: 0; 994 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); 995 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); 996 } 997 .form-control::-moz-placeholder { 998 color: #777777; 999 opacity: 1; 1000 } 1001 .form-control:-ms-input-placeholder { 1002 color: #777777; 1003 } 1004 .form-control::-webkit-input-placeholder { 1005 color: #777777; 1006 } 1007 .form-control[disabled], 1008 .form-control[readonly], 1009 fieldset[disabled] .form-control { 1010 cursor: not-allowed; 1011 background-color: #eeeeee; 1012 opacity: 1; 1013 } 1014 textarea.form-control { 1015 height: auto; 1016 } 1017 input[type="search"] { 1018 -webkit-appearance: none; 1019 } 1020 input[type="date"], 1021 input[type="time"], 1022 input[type="datetime-local"], 1023 input[type="month"] { 1024 line-height: 34px; 1025 line-height: 1.42857143 \0; 1026 } 1027 input[type="date"].input-sm, 1028 input[type="time"].input-sm, 1029 input[type="datetime-local"].input-sm, 1030 input[type="month"].input-sm { 1031 line-height: 30px; 1032 } 1033 input[type="date"].input-lg, 1034 input[type="time"].input-lg, 1035 input[type="datetime-local"].input-lg, 1036 input[type="month"].input-lg { 1037 line-height: 46px; 1038 } 1039 .form-group { 1040 margin-bottom: 15px; 1041 } 1042 .radio, 1043 .checkbox { 1044 position: relative; 1045 display: block; 1046 min-height: 20px; 1047 margin-top: 10px; 1048 margin-bottom: 10px; 1049 } 1050 .radio label, 1051 .checkbox label { 1052 padding-left: 20px; 1053 margin-bottom: 0; 1054 font-weight: normal; 1055 cursor: pointer; 1056 } 1057 .radio input[type="radio"], 1058 .radio-inline input[type="radio"], 1059 .checkbox input[type="checkbox"], 1060 .checkbox-inline input[type="checkbox"] { 1061 position: absolute; 1062 margin-left: -20px; 1063 margin-top: 4px \9; 1064 } 1065 .radio + .radio, 1066 .checkbox + .checkbox { 1067 margin-top: -5px; 1068 } 1069 .radio-inline, 1070 .checkbox-inline { 1071 display: inline-block; 1072 padding-left: 20px; 1073 margin-bottom: 0; 1074 vertical-align: middle; 1075 font-weight: normal; 1076 cursor: pointer; 1077 } 1078 .radio-inline + .radio-inline, 1079 .checkbox-inline + .checkbox-inline { 1080 margin-top: 0; 1081 margin-left: 10px; 1082 } 1083 input[type="radio"][disabled], 1084 input[type="checkbox"][disabled], 1085 input[type="radio"].disabled, 1086 input[type="checkbox"].disabled, 1087 fieldset[disabled] input[type="radio"], 1088 fieldset[disabled] input[type="checkbox"] { 1089 cursor: not-allowed; 1090 } 1091 .radio-inline.disabled, 1092 .checkbox-inline.disabled, 1093 fieldset[disabled] .radio-inline, 1094 fieldset[disabled] .checkbox-inline { 1095 cursor: not-allowed; 1096 } 1097 .radio.disabled label, 1098 .checkbox.disabled label, 1099 fieldset[disabled] .radio label, 1100 fieldset[disabled] .checkbox label { 1101 cursor: not-allowed; 1102 } 1103 .form-control-static { 1104 padding-top: 7px; 1105 padding-bottom: 7px; 1106 margin-bottom: 0; 1107 } 1108 .form-control-static.input-lg, 1109 .form-control-static.input-sm { 1110 padding-left: 0; 1111 padding-right: 0; 1112 } 1113 .input-sm, 1114 .form-horizontal .form-group-sm .form-control { 1115 height: 30px; 1116 padding: 5px 10px; 1117 font-size: 12px; 1118 line-height: 1.5; 1119 border-radius: 3px; 1120 } 1121 select.input-sm { 1122 height: 30px; 1123 line-height: 30px; 1124 } 1125 textarea.input-sm, 1126 select[multiple].input-sm { 1127 height: auto; 1128 } 1129 .input-lg, 1130 .form-horizontal .form-group-lg .form-control { 1131 height: 46px; 1132 padding: 10px 16px; 1133 font-size: 18px; 1134 line-height: 1.33; 1135 border-radius: 6px; 1136 } 1137 select.input-lg { 1138 height: 46px; 1139 line-height: 46px; 1140 } 1141 textarea.input-lg, 1142 select[multiple].input-lg { 1143 height: auto; 1144 } 1145 .has-feedback { 1146 position: relative; 1147 } 1148 .has-feedback .form-control { 1149 padding-right: 42.5px; 1150 } 1151 .form-control-feedback { 1152 position: absolute; 1153 top: 25px; 1154 right: 0; 1155 z-index: 2; 1156 display: block; 1157 width: 34px; 1158 height: 34px; 1159 line-height: 34px; 1160 text-align: center; 1161 } 1162 .input-lg + .form-control-feedback { 1163 width: 46px; 1164 height: 46px; 1165 line-height: 46px; 1166 } 1167 .input-sm + .form-control-feedback { 1168 width: 30px; 1169 height: 30px; 1170 line-height: 30px; 1171 } 1172 .has-success .help-block, 1173 .has-success .control-label, 1174 .has-success .radio, 1175 .has-success .checkbox, 1176 .has-success .radio-inline, 1177 .has-success .checkbox-inline { 1178 color: #3c763d; 1179 } 1180 .has-success .form-control { 1181 border-color: #3c763d; 1182 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1183 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1184 } 1185 .has-success .form-control:focus { 1186 border-color: #2b542c; 1187 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; 1188 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; 1189 } 1190 .has-success .input-group-addon { 1191 color: #3c763d; 1192 border-color: #3c763d; 1193 background-color: #dff0d8; 1194 } 1195 .has-success .form-control-feedback { 1196 color: #3c763d; 1197 } 1198 .has-warning .help-block, 1199 .has-warning .control-label, 1200 .has-warning .radio, 1201 .has-warning .checkbox, 1202 .has-warning .radio-inline, 1203 .has-warning .checkbox-inline { 1204 color: #8a6d3b; 1205 } 1206 .has-warning .form-control { 1207 border-color: #8a6d3b; 1208 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1209 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1210 } 1211 .has-warning .form-control:focus { 1212 border-color: #66512c; 1213 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; 1214 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; 1215 } 1216 .has-warning .input-group-addon { 1217 color: #8a6d3b; 1218 border-color: #8a6d3b; 1219 background-color: #fcf8e3; 1220 } 1221 .has-warning .form-control-feedback { 1222 color: #8a6d3b; 1223 } 1224 .has-error .help-block, 1225 .has-error .control-label, 1226 .has-error .radio, 1227 .has-error .checkbox, 1228 .has-error .radio-inline, 1229 .has-error .checkbox-inline { 1230 color: #a94442; 1231 } 1232 .has-error .form-control { 1233 border-color: #a94442; 1234 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1235 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 1236 } 1237 .has-error .form-control:focus { 1238 border-color: #843534; 1239 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; 1240 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; 1241 } 1242 .has-error .input-group-addon { 1243 color: #a94442; 1244 border-color: #a94442; 1245 background-color: #f2dede; 1246 } 1247 .has-error .form-control-feedback { 1248 color: #a94442; 1249 } 1250 .has-feedback label.sr-only ~ .form-control-feedback { 1251 top: 0; 1252 } 1253 .help-block { 1254 display: block; 1255 margin-top: 5px; 1256 margin-bottom: 10px; 1257 color: #737373; 1258 } 1259 @media (min-width: 768px) { 1260 .form-inline .form-group { 1261 display: inline-block; 1262 margin-bottom: 0; 1263 vertical-align: middle; 1264 } 1265 .form-inline .form-control { 1266 display: inline-block; 1267 width: auto; 1268 vertical-align: middle; 1269 } 1270 .form-inline .input-group { 1271 display: inline-table; 1272 vertical-align: middle; 1273 } 1274 .form-inline .input-group .input-group-addon, 1275 .form-inline .input-group .input-group-btn, 1276 .form-inline .input-group .form-control { 1277 width: auto; 1278 } 1279 .form-inline .input-group > .form-control { 1280 width: 100%; 1281 } 1282 .form-inline .control-label { 1283 margin-bottom: 0; 1284 vertical-align: middle; 1285 } 1286 .form-inline .radio, 1287 .form-inline .checkbox { 1288 display: inline-block; 1289 margin-top: 0; 1290 margin-bottom: 0; 1291 vertical-align: middle; 1292 } 1293 .form-inline .radio label, 1294 .form-inline .checkbox label { 1295 padding-left: 0; 1296 } 1297 .form-inline .radio input[type="radio"], 1298 .form-inline .checkbox input[type="checkbox"] { 1299 position: relative; 1300 margin-left: 0; 1301 } 1302 .form-inline .has-feedback .form-control-feedback { 1303 top: 0; 1304 } 1305 } 1306 .form-horizontal .radio, 1307 .form-horizontal .checkbox, 1308 .form-horizontal .radio-inline, 1309 .form-horizontal .checkbox-inline { 1310 margin-top: 0; 1311 margin-bottom: 0; 1312 padding-top: 7px; 1313 } 1314 .form-horizontal .radio, 1315 .form-horizontal .checkbox { 1316 min-height: 27px; 1317 } 1318 .form-horizontal .form-group { 1319 margin-left: -15px; 1320 margin-right: -15px; 1321 } 1322 @media (min-width: 768px) { 1323 .form-horizontal .control-label { 1324 text-align: right; 1325 margin-bottom: 0; 1326 padding-top: 7px; 1327 } 1328 } 1329 .form-horizontal .has-feedback .form-control-feedback { 1330 top: 0; 1331 right: 15px; 1332 } 1333 @media (min-width: 768px) { 1334 .form-horizontal .form-group-lg .control-label { 1335 padding-top: 14.3px; 1336 } 1337 } 1338 @media (min-width: 768px) { 1339 .form-horizontal .form-group-sm .control-label { 1340 padding-top: 6px; 1341 } 1342 } 680 1343 681 .btn { 1344 682 display: inline-block; … … 1723 1061 top: -1px; 1724 1062 } 1063 1725 1064 .label-default { 1726 1065 background-color: #777777; … … 2197 1536 border: 0; 2198 1537 } 2199 .hidden { 2200 display: none !important;2201 visibility: hidden !important;2202 } 1538 /*.hidden {*/ 1539 /*display: none !important;*/ 1540 /*visibility: hidden !important;*/ 1541 /*}*/ 2203 1542 .affix { 2204 1543 position: fixed; -
collaborate-notes/trunk/admin/js/collaborate-notes-admin.js
r1031264 r1039507 119 119 //that.$el.find('.reminder-notify').show(); 120 120 }); 121 121 122 122 this.$el.find('#new-note-wrapper .timepicker').timepicker({ 123 123 'timeFormat': 'H:i' … … 242 242 CollaborateNotes.isRendered = false; 243 243 this.$el.find('#notes-list').html(''); 244 244 245 245 this.render(); 246 246 }, … … 393 393 // } 394 394 395 if ( ! this.mouseIsInside && !container.is(event.target) && container.has(event.target).length === 0 395 if ( ! this.mouseIsInside && !container.is(event.target) && container.has(event.target).length === 0 396 396 && !container2.is(event.target) && container2.has(event.target).length === 0) { 397 397 … … 676 676 'note_id': noteId 677 677 }; 678 678 679 679 var that = this; 680 680 … … 770 770 var noteDescription = this.$el.find('.note').html(); 771 771 772 if ( ! noteDescription.length > 0 ) return; 772 if ( ! noteDescription.length > 0 ) return; 773 773 774 774 var notAllowedKeys = [9,16,18,20,27,91,93,37,38,39,40]; -
collaborate-notes/trunk/collaborate-notes.php
r1002203 r1039507 4 4 * Plugin URI: http://wordpress.org/plugins/collaborate-notes 5 5 * Description: Easy create and share important notes and tasks. Automatic notifying assigned users through email. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: Glenn Sjöström 8 8 * Author URI: http://glennsjostrom.com … … 76 76 function collaborate_notes_uninstall() { 77 77 global $wpdb; 78 78 79 79 $table_name = $wpdb->prefix . 'collaborate_notes'; 80 80 $table_name2 = $wpdb->prefix . 'collaborate_notes_reminders'; … … 134 134 135 135 add_action( 'send_reminder_event', 'send_reminders', 1 , 2 ); 136 137 -
collaborate-notes/trunk/includes/class-collaborate-notes.php
r1002203 r1039507 10 10 11 11 $this->plugin_slug = 'collaborate-notes-slug'; 12 $this->version = '1.0. 3';12 $this->version = '1.0.4'; 13 13 14 14 $this->load_dependencies(); -
collaborate-notes/trunk/readme.txt
r1031264 r1039507 6 6 Requires at least: 3.6 7 7 Tested up to: 4.0 8 Stable tag: 1.0. 38 Stable tag: 1.0.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 66 = 1.0.4 = 67 * Close application with Escape-button 68 * Fix "Screen options" bug. 69 66 70 = 1.0.3 = 67 * Close application with Escape-button68 71 * Fixed is_empty typo/bug 69 72
Note: See TracChangeset
for help on using the changeset viewer.