gollum 2.3.10 → 2.3.11
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 +1 -1
- data/lib/gollum.rb +1 -1
- data/lib/gollum/frontend/public/gollum/javascript/gollum.js +1 -1
- metadata +1 -1
data/gollum.gemspec
CHANGED
data/lib/gollum.rb
CHANGED
@@ -23,7 +23,7 @@ require File.expand_path('../gollum/web_sequence_diagram', __FILE__)
|
|
23
23
|
require File.expand_path('../gollum/frontend/uri_encode_component', __FILE__)
|
24
24
|
|
25
25
|
module Gollum
|
26
|
-
VERSION = '2.3.
|
26
|
+
VERSION = '2.3.11'
|
27
27
|
|
28
28
|
def self.assets_path
|
29
29
|
::File.expand_path('gollum/frontend/public', ::File.dirname(__FILE__))
|
@@ -225,7 +225,7 @@ $(document).ready(function() {
|
|
225
225
|
$("#gollum-editor-submit").click( function() { window.onbeforeunload = null; } );
|
226
226
|
$("#gollum-editor-body").one('change', function(){
|
227
227
|
window.onbeforeunload = function(){ return "Leaving will not create a new page!" };
|
228
|
-
)
|
228
|
+
});
|
229
229
|
$.GollumEditor({ NewFile: true, MarkupType: '{{default_markup}}' });
|
230
230
|
}
|
231
231
|
});
|