Skip to content

Instantly share code, notes, and snippets.

@mmorton
mmorton / SDataStore.js
Created October 23, 2012 23:50
A Dojo DataStore For SData
/* Copyright (c) 2010, Sage Software, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
var Point = function(x, y) {
if (arguments.length == 1)
{
this.x = (x >> 12) & 0xFFF;
this.y = (x) & 0xFFF;
}
else
{
this.x = x;
this.y = y;
#!/bin/bash
if [ .$1. == .. ]; then
echo "USAGE: $0 [product name]"
exit 1
fi
PRODUCT=argos-$1
echo
@echo off
if .%1. == .. (
echo USAGE: %0 [product name]
goto :EOF
)
set PRODUCT=argos-%1
echo.
@echo off
if .%1. == .. (
echo USAGE: %0 [product name]
goto :EOF
)
set PRODUCT=argos-%1
echo.
if (/android/i.test(navigator.userAgent))
{
/*
* there is an issue with click "bleed through" on absolutely positioned elements on
* android devices which is why we need to go though the trouble of preventing the actual
* click event.
* see: http://code.google.com/p/android/issues/detail?id=6721
*/
var prevent = false;