diff --git a/admin/css/style.css b/admin/css/style.css
index f4a85c93..00e0d961 100644
--- a/admin/css/style.css
+++ b/admin/css/style.css
@@ -1595,6 +1595,8 @@ ul.typecho-list-notable li .loading {
}
.typecho-post-area #auto-save-message {
+ display: block;
+ margin-top: 0.5em;
color: #999;
font-size: .92857em;
}
@@ -2140,6 +2142,8 @@ ul.typecho-list-notable li .loading {
}
#ui-datepicker-div .ui-datepicker-close { float: right; }
+.ui-effects-transfer { border: 2px dotted #ccc; }
+
/*
* Jquery Tokeninput
diff --git a/admin/javascript/jquery-ui.js b/admin/javascript/jquery-ui.js
index bbc37410..270e347d 100644
--- a/admin/javascript/jquery-ui.js
+++ b/admin/javascript/jquery-ui.js
@@ -1,6 +1,6 @@
-/*! jQuery UI - v1.10.3 - 2013-10-14
+/*! jQuery UI - v1.10.3 - 2013-10-15
* http://jqueryui.com
-* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.datepicker.js, jquery.ui.slider.js, jquery.ui.effect.js, jquery.ui.effect-bounce.js, jquery.ui.effect-highlight.js, jquery.ui.effect-shake.js
+* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.button.js, jquery.ui.datepicker.js, jquery.ui.spinner.js, jquery.ui.effect.js, jquery.ui.effect-bounce.js, jquery.ui.effect-highlight.js, jquery.ui.effect-shake.js, jquery.ui.effect-transfer.js
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
(function( $, undefined ) {
@@ -826,160 +826,409 @@ $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
})( jQuery );
(function( $, undefined ) {
-var mouseHandled = false;
-$( document ).mouseup( function() {
- mouseHandled = false;
-});
-
-$.widget("ui.mouse", {
- version: "1.10.3",
- options: {
- cancel: "input,textarea,button,select,option",
- distance: 1,
- delay: 0
+var lastActive, startXPos, startYPos, clickDragged,
+ baseClasses = "ui-button ui-widget ui-state-default ui-corner-all",
+ stateClasses = "ui-state-hover ui-state-active ",
+ typeClasses = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",
+ formResetHandler = function() {
+ var form = $( this );
+ setTimeout(function() {
+ form.find( ":ui-button" ).button( "refresh" );
+ }, 1 );
},
- _mouseInit: function() {
- var that = this;
+ radioGroup = function( radio ) {
+ var name = radio.name,
+ form = radio.form,
+ radios = $( [] );
+ if ( name ) {
+ name = name.replace( /'/g, "\\'" );
+ if ( form ) {
+ radios = $( form ).find( "[name='" + name + "']" );
+ } else {
+ radios = $( "[name='" + name + "']", radio.ownerDocument )
+ .filter(function() {
+ return !this.form;
+ });
+ }
+ }
+ return radios;
+ };
- this.element
- .bind("mousedown."+this.widgetName, function(event) {
- return that._mouseDown(event);
+$.widget( "ui.button", {
+ version: "1.10.3",
+ defaultElement: "
+
+
content($post); ?>
-
-
-
- 1 分钟前保存
diff --git a/var/Widget/Contents/Page/Edit.php b/var/Widget/Contents/Page/Edit.php
index 70f1048a..4f176eef 100644
--- a/var/Widget/Contents/Page/Edit.php
+++ b/var/Widget/Contents/Page/Edit.php
@@ -91,9 +91,9 @@ class Widget_Contents_Page_Edit extends Widget_Contents_Post_Edit implements Wid
if ($this->request->isAjax()) {
$created = new Typecho_Date($this->options->gmtTime);
$this->response->throwJson(array(
- 'success' => 1,
- 'message' => _t('文章保存于 %s', $created->format('H:i A')),
- 'cid' => $this->cid
+ 'success' => 1,
+ 'time' => $created->format('H:i:s A'),
+ 'cid' => $this->cid
));
} else {
/** 设置提示信息 */
diff --git a/var/Widget/Contents/Post/Edit.php b/var/Widget/Contents/Post/Edit.php
index 997f9fcd..7ccb3a82 100644
--- a/var/Widget/Contents/Post/Edit.php
+++ b/var/Widget/Contents/Post/Edit.php
@@ -588,9 +588,9 @@ class Widget_Contents_Post_Edit extends Widget_Abstract_Contents implements Widg
if ($this->request->isAjax()) {
$created = new Typecho_Date($this->options->gmtTime);
$this->response->throwJson(array(
- 'success' => 1,
- 'message' => _t('文章保存于 %s', $created->format('H:i A')),
- 'cid' => $this->cid
+ 'success' => 1,
+ 'time' => $created->format('H:i:s A'),
+ 'cid' => $this->cid
));
} else {
/** 设置提示信息 */