Commit 8b1bfcb1 authored by Nick Poulden's avatar Nick Poulden
Browse files

Allow forcing of inline examples, and update Gem

parent 17287d65
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@ Gem::Specification.new do |s|
  s.required_rubygems_version = ">= 1.3.5"

  s.name = 'jsduck'
  s.version = '3.3.0'
  s.date = '2012-01-04'
  s.version = '3.3.1'
  s.date = '2012-01-18'
  s.summary = "Simple JavaScript Duckumentation generator"
  s.description = "Documentation generator for Sencha JS frameworks"
  s.homepage = "https://github.com/senchalabs/jsduck"
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ module JsDuck
      ]
      @meta_tag_paths = []

      @version = "3.3.0"
      @version = "3.3.1"

      # Customizing output
      @title = "Sencha Docs - Ext JS"
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ Ext.define("Docs.Syntax", {
            code = Ext.get(code);
            var pre = code.parent();
            // Disable inline examples in IE (too slow)
            if (Ext.isIE && pre.hasCls("inline-example")) {
            if (!Docs.forceInlineExamples && Ext.isIE && pre.hasCls("inline-example")) {
                pre.removeCls("inline-example");
            }
            // Don't prettify inline examples, these are highlighted anyway