Browse Source

Fix broken music player, links in API

master
Jack Lukic 9 years ago
parent
commit
66fbe2efb2
  1. 2
      server/documents/behaviors/api.html.eco
  2. 2
      server/files/javascript/docs.js

2
server/documents/behaviors/api.html.eco

@ -42,7 +42,7 @@ type : 'UI Behavior'
})
;
</div>
<p>Centrally manage your entire API making sure you aren't caught modifying urls across your codebase. Define your endpoints using an <a href="#working-with-named-urls">intuitive templating system</a> that <a href="#url-variables">automatically passes data</a> found in your UI.</p>
<p>Centrally manage your entire API making sure you aren't caught modifying urls across your codebase. Define your endpoints using an <a href="#api-actions">intuitive templating system</a> that <a href="#passing-data">automatically passes data</a> found in your UI.</p>
<div class="ignored code" data-type="javascript">
var api = {
'get followers' : '/followers/{id}?results={count}',

2
server/files/javascript/docs.js

@ -629,7 +629,7 @@ semantic.ready = function() {
openMusic: function() {
var
url = 'http://www.stratus.sc/player?links=https://soundcloud.com/into-the-light/sets/sui-2&popup=true',
url = 'http://stratus.soundcloud.com/player?links=https://soundcloud.com/into-the-light/sets/sui-2&popup=true',
newWindow = window.open(url,'name','height=196,width=733')
;
if(window.focus) {

Loading…
Cancel
Save