Commit ae9bd238 authored by Nick Poulden's avatar Nick Poulden
Browse files

Redesign tweaks

parent 233973ce
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -46,9 +46,9 @@ Ext.define('Docs.Application', {
            Docs.initEventTracking();
        }

        setInterval(function(){
            Ext.DomQuery.select('link')[4].href = "resources/css/viewport.css?" + Math.ceil(Math.random() * 100000000);
        }, 1000);
        // setInterval(function(){
        //     Ext.DomQuery.select('link')[4].href = "resources/css/viewport.css?" + Math.ceil(Math.random() * 100000000)
        // }, 1000)
    }

});
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ Ext.define('Docs.view.cls.Index', {
    alias : 'widget.classindex',
    cls: 'class-list iScroll',
    margin: '15 10',
    autoScroll : true,

    initComponent: function() {
        this.tpl = new Ext.XTemplate(
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Ext.define('Docs.view.examples.Index', {

    initComponent: function() {
        this.items = [
            { xtype: 'container', html: '<h1 class="eg">Examples</h1>' },
            { xtype: 'container', html: '<h1 class="eg">Ext JS Examples</h1>' },
            Ext.create('Docs.view.ThumbList', {
                itemTpl: [
                    '<dd ext:url="{url}"><img src="extjs/examples/shared/screens/{icon}"/>',
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Ext.define('Docs.view.guides.Index', {

    initComponent: function() {
        this.items = [
            { xtype: 'container', html: '<h1 class="eg">Guides</h1>' },
            { xtype: 'container', html: '<h1 class="eg">Ext JS Guides</h1>' },
            Ext.create('Docs.view.ThumbList', {
                itemTpl: [
                    '<dd ext:url="guide/{name}"><img src="guides/{name}/icon-lg.png"/>',
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Ext.define('Docs.view.videos.Index', {

    initComponent: function() {
        this.items = [
            { xtype: 'container', html: '<h1 class="eg">Videos</h1>' },
            { xtype: 'container', html: '<h1 class="eg">Ext JS Videos</h1>' },
            Ext.create('Docs.view.ThumbList', {
                urlField: 'id',
                itemTpl: [
Loading