gollum 2.4.9 → 2.4.10
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gollum might be problematic. Click here for more details.
data/gollum.gemspec
CHANGED
data/lib/gollum.rb
CHANGED
@@ -28,7 +28,7 @@ require File.expand_path('../gollum/frontend/uri_encode_component', __FILE__)
|
|
28
28
|
$KCODE = 'U' if RUBY_VERSION[0,3] == '1.8'
|
29
29
|
|
30
30
|
module Gollum
|
31
|
-
VERSION = '2.4.
|
31
|
+
VERSION = '2.4.10'
|
32
32
|
|
33
33
|
def self.assets_path
|
34
34
|
::File.expand_path('gollum/frontend/public', ::File.dirname(__FILE__))
|
@@ -38,7 +38,9 @@
|
|
38
38
|
$.GollumEditor.Placeholder.add($('#gollum-editor-edit-summary input'));
|
39
39
|
$('#gollum-editor form[name="gollum-editor"]').submit(function( e ) {
|
40
40
|
e.preventDefault();
|
41
|
-
|
41
|
+
// Do not clear default place holder text
|
42
|
+
// Updated home (markdown)
|
43
|
+
// $.GollumEditor.Placeholder.clearAll();
|
42
44
|
debug('submitting');
|
43
45
|
$(this).unbind('submit');
|
44
46
|
$(this).submit();
|