mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-14 17:07:53 +00:00
Merge branch 'master' of https://github.com/miguelfreitas/twister-html into visual_fixes
This commit is contained in:
commit
30e6aeb576
@ -27,6 +27,8 @@
|
|||||||
initInterfaceFollowing();
|
initInterfaceFollowing();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
<script src="twister_directmsg.js"></script>
|
<script src="twister_directmsg.js"></script>
|
||||||
<script src="interface_common.js"></script>
|
<script src="interface_common.js"></script>
|
||||||
<script src="interface_home.js"></script>
|
<script src="interface_home.js"></script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<script src="jquery.mobile-1.3.2.min.js"></script>
|
<script src="jquery.mobile-1.3.2.min.js"></script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
@ -447,7 +447,7 @@ var retweetSubmit = function(e)
|
|||||||
|
|
||||||
|
|
||||||
function initInterfaceCommon() {
|
function initInterfaceCommon() {
|
||||||
$( "body, .cancel, .modal-blackout" ).on( "click", function() { closeModal($(this)); } );
|
$( "body" ).on( "click", ".cancel" , function() { closeModal($(this)); } );
|
||||||
$( ".post-reply" ).bind( "click", postReplyClick );
|
$( ".post-reply" ).bind( "click", postReplyClick );
|
||||||
$( ".post-propagate" ).bind( "click", reTwistPopup );
|
$( ".post-propagate" ).bind( "click", reTwistPopup );
|
||||||
$( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );
|
$( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );
|
||||||
|
@ -22,6 +22,8 @@
|
|||||||
initInterfaceLogin();
|
initInterfaceLogin();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
initInterfaceNetwork();
|
initInterfaceNetwork();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
initProfileEdit();
|
initProfileEdit();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -40,6 +40,8 @@
|
|||||||
<script src="interface_common.js?vr=9"></script>
|
<script src="interface_common.js?vr=9"></script>
|
||||||
<script src="tmobile.js?vr=9"></script>
|
<script src="tmobile.js?vr=9"></script>
|
||||||
<script src="jpeg_encoder_basic.js"></script>
|
<script src="jpeg_encoder_basic.js"></script>
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="img/twister_mini.png" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
@ -355,6 +355,11 @@ function closeSearchDialog()
|
|||||||
|
|
||||||
function userSearchKeypress(item) {
|
function userSearchKeypress(item) {
|
||||||
var partialName = $(".userMenu-search-field").val().toLowerCase();
|
var partialName = $(".userMenu-search-field").val().toLowerCase();
|
||||||
|
|
||||||
|
if ( partialName.substr( 0, 1 ) == '@' ) {
|
||||||
|
partialName = partialName.substr( 1 );
|
||||||
|
}
|
||||||
|
|
||||||
//var partialName = item.val();
|
//var partialName = item.val();
|
||||||
|
|
||||||
if( !partialName.length ) {
|
if( !partialName.length ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user